| /src/libexec/bootpd/ |
| H A D | readfile.c | 696 #define PARSE_IA1(MEMBER) do \ argument 700 hp->flags.MEMBER = FALSE; \ 704 hp->MEMBER.s_addr = value; \ 705 hp->flags.MEMBER = TRUE; \ 710 #define PARSE_IAL(MEMBER) do \ argument 714 if (hp->flags.MEMBER) { \ 715 hp->flags.MEMBER = FALSE; \ 716 assert(hp->MEMBER); \ 717 del_iplist(hp->MEMBER); \ 718 hp->MEMBER = NULL; \ [all …]
|
| /src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_platform_limits_solaris.h | 480 #define CHECK_SIZE_AND_OFFSET(CLASS, MEMBER) \ argument 481 COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *) NULL)->MEMBER) == \ 482 sizeof(((CLASS *) NULL)->MEMBER)); \ 483 COMPILER_CHECK(offsetof(__sanitizer_##CLASS, MEMBER) == \ 484 offsetof(CLASS, MEMBER)) 488 #define CHECK_STRUCT_SIZE_AND_OFFSET(CLASS, MEMBER) \ argument 489 COMPILER_CHECK(sizeof(((struct __sanitizer_##CLASS *) NULL)->MEMBER) == \ 490 sizeof(((struct CLASS *) NULL)->MEMBER)); \ 491 COMPILER_CHECK(offsetof(struct __sanitizer_##CLASS, MEMBER) == \ 492 offsetof(struct CLASS, MEMBER))
|
| H A D | sanitizer_platform_limits_freebsd.h | 754 # define CHECK_SIZE_AND_OFFSET(CLASS, MEMBER) \ argument 755 COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *)NULL)->MEMBER) == \ 756 sizeof(((CLASS *)NULL)->MEMBER)); \ 757 COMPILER_CHECK(offsetof(__sanitizer_##CLASS, MEMBER) == \ 758 offsetof(CLASS, MEMBER)) 762 # define CHECK_STRUCT_SIZE_AND_OFFSET(CLASS, MEMBER) \ argument 763 COMPILER_CHECK(sizeof(((struct __sanitizer_##CLASS *)NULL)->MEMBER) == \ 764 sizeof(((struct CLASS *)NULL)->MEMBER)); \ 765 COMPILER_CHECK(offsetof(struct __sanitizer_##CLASS, MEMBER) == \ 766 offsetof(struct CLASS, MEMBER))
|
| H A D | sanitizer_platform_limits_posix.h | 1488 #define CHECK_SIZE_AND_OFFSET(CLASS, MEMBER) \ argument 1489 COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *)NULL)->MEMBER) == \ 1490 sizeof(((CLASS *)NULL)->MEMBER)); \ 1491 COMPILER_CHECK(offsetof(__sanitizer_##CLASS, MEMBER) == \ 1492 offsetof(CLASS, MEMBER)) 1496 #define CHECK_STRUCT_SIZE_AND_OFFSET(CLASS, MEMBER) \ argument 1497 COMPILER_CHECK(sizeof(((struct __sanitizer_##CLASS *)NULL)->MEMBER) == \ 1498 sizeof(((struct CLASS *)NULL)->MEMBER)); \ 1499 COMPILER_CHECK(offsetof(struct __sanitizer_##CLASS, MEMBER) == \ 1500 offsetof(struct CLASS, MEMBER))
|
| H A D | sanitizer_platform_limits_netbsd.h | 2398 #define CHECK_SIZE_AND_OFFSET(CLASS, MEMBER) \ argument 2399 COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *)NULL)->MEMBER) == \ 2400 sizeof(((CLASS *)NULL)->MEMBER)); \ 2401 COMPILER_CHECK(offsetof(__sanitizer_##CLASS, MEMBER) == \ 2402 offsetof(CLASS, MEMBER)) 2406 #define CHECK_STRUCT_SIZE_AND_OFFSET(CLASS, MEMBER) \ argument 2407 COMPILER_CHECK(sizeof(((struct __sanitizer_##CLASS *)NULL)->MEMBER) == \ 2408 sizeof(((struct CLASS *)NULL)->MEMBER)); \ 2409 COMPILER_CHECK(offsetof(struct __sanitizer_##CLASS, MEMBER) == \ 2410 offsetof(struct CLASS, MEMBER))
|
| /src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | allocator_config_wrapper.h | 47 #define OPTIONAL_TEMPLATE(TYPE, NAME, DEFAULT, MEMBER) \ 53 Config, typename assertSameType<decltype(Config::MEMBER), TYPE>::type> { \ 55 return Config::MEMBER; \ 59 #define OPTIONAL_TYPE_TEMPLATE(NAME, DEFAULT, MEMBER) \ 66 typename voidAdaptor<typename Config::MEMBER>::type> { \ 68 using NAME = typename Config::MEMBER; \
|
| /src/sys/sys/ |
| H A D | _offsetof.h | 16 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) argument
|
| /src/contrib/ofed/opensm/include/complib/ |
| H A D | cl_types.h | 113 #define offsetof(TYPE, MEMBER) ((uintptr_t) &((TYPE *)0)->MEMBER) argument
|
| /src/contrib/bmake/unit-tests/ |
| H A D | varfind.mk | 24 @echo $@: long ${.MEMBER:Q}
|
| H A D | varmisc.mk | 160 GL_MEMBER:= ${.MEMBER}
|
| /src/sys/compat/linuxkpi/common/include/linux/ |
| H A D | overflow.h | 461 #define DEFINE_FLEX(TYPE, NAME, MEMBER, COUNTER, COUNT) \ argument 462 _DEFINE_FLEX(TYPE, NAME, MEMBER, COUNT, = { .COUNTER = COUNT, })
|
| /src/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | AMDHSAKernelDescriptor.h | 30 #define offsetof(TYPE, MEMBER) ((size_t)&((TYPE*)0)->MEMBER) argument
|
| /src/sys/contrib/dpdk_rte_lpm/ |
| H A D | rte_common.h | 714 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) argument
|
| /src/contrib/ntp/sntp/libevent/build-aux/ |
| H A D | ar-lib | 105 Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]
|
| /src/sys/dev/smartpqi/ |
| H A D | smartpqi_defines.h | 86 #define offsetofend(TYPE, MEMBER) \ argument 87 (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
|
| /src/tools/tools/drm/radeon/mkregtable/ |
| H A D | mkregtable.c | 19 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) argument
|
| /src/contrib/bmake/ |
| H A D | make.h | 597 #define MEMBER "%" /* Member in "archive(member)" syntax */ macro 1182 GNode_VarMember(GNode *gn) { return GNode_ValueDirect(gn, MEMBER); } in GNode_VarMember()
|
| H A D | make.c | 1273 Var_Set(gn, MEMBER, eoa + 1); in Make_ExpandUse()
|
| H A D | suff.c | 1586 Var_Set(gn, MEMBER, name); in FindDepsArchive()
|
| H A D | var.c | 468 return Substring_InitStr(MEMBER); in CanonicalVarname()
|
| /src/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | OpenMPOpt.cpp | 210 #define KERNEL_ENVIRONMENT_IDX(MEMBER, IDX) \ argument 211 constexpr const unsigned MEMBER##Idx = IDX; 218 #define KERNEL_ENVIRONMENT_CONFIGURATION_IDX(MEMBER, IDX) \ argument 219 constexpr const unsigned MEMBER##Idx = IDX; 231 #define KERNEL_ENVIRONMENT_GETTER(MEMBER, RETURNTYPE) \ argument 232 RETURNTYPE *get##MEMBER##FromKernelEnvironment(ConstantStruct *KernelEnvC) { \ 233 return cast<RETURNTYPE>(KernelEnvC->getAggregateElement(MEMBER##Idx)); \ 241 #define KERNEL_ENVIRONMENT_CONFIGURATION_GETTER(MEMBER) \ in KERNEL_ENVIRONMENT_GETTER() argument 242 ConstantInt *get##MEMBER##FromKernelEnvironment( \ in KERNEL_ENVIRONMENT_GETTER() 246 return dyn_cast<ConstantInt>(ConfigC->getAggregateElement(MEMBER##Idx)); \ in KERNEL_ENVIRONMENT_GETTER() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | InstrProfData.inc | 536 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
| /src/contrib/llvm-project/compiler-rt/include/profile/ |
| H A D | InstrProfData.inc | 536 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
| /src/sys/dev/pms/freebsd/driver/ini/src/ |
| H A D | agtiapi.c | 106 #define PMCoffsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) argument
|
| /src/crypto/heimdal/lib/wind/ |
| H A D | DerivedNormalizationProps.txt | 814 220C ; NFD_QC; N # Sm DOES NOT CONTAIN AS MEMBER 1253 220C ; NFKD_QC; N # Sm DOES NOT CONTAIN AS MEMBER 2037 220C ; Expands_On_NFD # Sm DOES NOT CONTAIN AS MEMBER 2333 220C ; Expands_On_NFKD # Sm DOES NOT CONTAIN AS MEMBER
|