Home
last modified time | relevance | path

Searched refs:typ (Results 1 – 5 of 5) sorted by relevance

/xnu-12377.41.6/bsd/netinet/
H A Dip6.h360 #define IP6_EXTHDR_GET(val, typ, m, off, len) \ argument
361 M_STRUCT_GET(val, typ, m, off, len)
363 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \ argument
364 M_STRUCT_GET0(val, typ, m, off, len)
/xnu-12377.41.6/tests/unit/tools/
H A Dgenerate_ut_proj.py221 typ = self.file.type_str()
222 assert typ is not None, "unknown file type " + self.file.name
223 if typ == TYPE_STATIC_LIB or typ == TYPE_EXE:
224 self.padd("explicitFileType", typ)
229 self.padd("lastKnownFileType", typ)
435 typ = f.type_str()
436 if typ == TYPE_HEADER:
438 elif typ in [TYPE_SOURCE_C, TYPE_SOURCE_CPP, TYPE_SOURCE_ASM]:
/xnu-12377.41.6/bsd/sys/
H A Dmbuf.h1028 #define M_STRUCT_GET(val, typ, m, off, len) \ argument
1034 (val) = (typ)(mtod((m), caddr_t) + (off)); \
1040 (val) = (typ)(mtod(t, caddr_t) + tmp); \
1042 (val) = (typ)NULL; \
1048 #define M_STRUCT_GET0(val, typ, m, off, len) \ argument
1053 (val) = (typ)(void *)mtod(m, caddr_t); \
1059 (val) = (typ)(void *)mtod(t, caddr_t); \
1061 (val) = (typ)NULL; \
/xnu-12377.41.6/osfmk/arm/
H A Dmodel_dep.c513 const char *typ = last_hwaccess_type ? "write" : "read"; in do_print_all_panic_info() local
514 …paniclog_append_noflush("AppleHWAccess last access: %s of size %u at address 0x%llx\n", typ, last_… in do_print_all_panic_info()
/xnu-12377.41.6/tools/lldbmacros/
H A Dkcdata.py1297 typ = GetTypeForName(name)
1298 KNOWN_TYPES_COLLECTION[typ] = KCTypeDescription(GetTypeForName(typ), *args)