HomeSort by: relevance | last modified time | path
    Searched refs:MEMBER (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_params.h 85 #define MEMBER(T, member, ...) T member;
87 I915_PARAMS_FOR_EACH(MEMBER);
89 #undef MEMBER
i915_params.c 43 #define MEMBER(T, member, value) .member = (value),
44 I915_PARAMS_FOR_EACH(MEMBER)
45 #undef MEMBER
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_openbsd.h 364 #define CHECK_SIZE_AND_OFFSET(CLASS, MEMBER) \
365 COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *)NULL)->MEMBER) == \
366 sizeof(((CLASS *)NULL)->MEMBER)); \
367 COMPILER_CHECK(offsetof(__sanitizer_##CLASS, MEMBER) == \
368 offsetof(CLASS, MEMBER))
372 #define CHECK_STRUCT_SIZE_AND_OFFSET(CLASS, MEMBER) \
373 COMPILER_CHECK(sizeof(((struct __sanitizer_##CLASS *)NULL)->MEMBER) == \
374 sizeof(((struct CLASS *)NULL)->MEMBER)); \
375 COMPILER_CHECK(offsetof(struct __sanitizer_##CLASS, MEMBER) == \
376 offsetof(struct CLASS, MEMBER))
    [all...]
sanitizer_platform_limits_solaris.h 480 #define CHECK_SIZE_AND_OFFSET(CLASS, MEMBER) \
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) \
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))
    [all...]
sanitizer_platform_limits_freebsd.h 638 #define CHECK_SIZE_AND_OFFSET(CLASS, MEMBER) \
639 COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *) NULL)->MEMBER) == \
640 sizeof(((CLASS *) NULL)->MEMBER)); \
641 COMPILER_CHECK(offsetof(__sanitizer_##CLASS, MEMBER) == \
642 offsetof(CLASS, MEMBER))
646 #define CHECK_STRUCT_SIZE_AND_OFFSET(CLASS, MEMBER) \
647 COMPILER_CHECK(sizeof(((struct __sanitizer_##CLASS *) NULL)->MEMBER) == \
648 sizeof(((struct CLASS *) NULL)->MEMBER)); \
649 COMPILER_CHECK(offsetof(struct __sanitizer_##CLASS, MEMBER) == \
650 offsetof(struct CLASS, MEMBER))
    [all...]
sanitizer_platform_limits_posix.h 1437 #define CHECK_SIZE_AND_OFFSET(CLASS, MEMBER) \
1438 COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *) NULL)->MEMBER) == \
1439 sizeof(((CLASS *) NULL)->MEMBER)); \
1440 COMPILER_CHECK(offsetof(__sanitizer_##CLASS, MEMBER) == \
1441 offsetof(CLASS, MEMBER))
1445 #define CHECK_STRUCT_SIZE_AND_OFFSET(CLASS, MEMBER) \
1446 COMPILER_CHECK(sizeof(((struct __sanitizer_##CLASS *) NULL)->MEMBER) == \
1447 sizeof(((struct CLASS *) NULL)->MEMBER)); \
1448 COMPILER_CHECK(offsetof(struct __sanitizer_##CLASS, MEMBER) == \
1449 offsetof(struct CLASS, MEMBER))
    [all...]
sanitizer_platform_limits_netbsd.h 2371 #define CHECK_SIZE_AND_OFFSET(CLASS, MEMBER) \
2372 COMPILER_CHECK(sizeof(((__sanitizer_##CLASS *)NULL)->MEMBER) == \
2373 sizeof(((CLASS *)NULL)->MEMBER)); \
2374 COMPILER_CHECK(offsetof(__sanitizer_##CLASS, MEMBER) == \
2375 offsetof(CLASS, MEMBER))
2379 #define CHECK_STRUCT_SIZE_AND_OFFSET(CLASS, MEMBER) \
2380 COMPILER_CHECK(sizeof(((struct __sanitizer_##CLASS *)NULL)->MEMBER) == \
2381 sizeof(((struct CLASS *)NULL)->MEMBER)); \
2382 COMPILER_CHECK(offsetof(struct __sanitizer_##CLASS, MEMBER) == \
2383 offsetof(struct CLASS, MEMBER))
    [all...]
  /src/usr.sbin/bootp/common/
readfile.c 710 /* Parse one INET address stored directly in MEMBER. */
711 #define PARSE_IA1(MEMBER) do \
715 hp->flags.MEMBER = FALSE; \
719 hp->MEMBER.s_addr = value; \
720 hp->flags.MEMBER = TRUE; \
724 /* Parse a list of INET addresses pointed to by MEMBER */
725 #define PARSE_IAL(MEMBER) do \
729 if (hp->flags.MEMBER) { \
730 hp->flags.MEMBER = FALSE; \
731 assert(hp->MEMBER); \
    [all...]
  /src/usr.bin/make/unit-tests/
varfind.mk 24 @echo $@: long ${.MEMBER:Q}
var-scope-local-legacy.mk 30 # The variable '.MEMBER' is undefined, therefore '%D' and '%F' are
varmisc.mk 160 GL_MEMBER:= ${.MEMBER}
  /src/common/dist/zlib/os400/
make.sh 184 do MEMBER="${LIBIFSNAME}/DOCS.FILE/`db2_name \"${TEXT}\"`.MBR"
186 if action_needed "${MEMBER}" "${TEXT}"
187 then CMD="CPY OBJ('${TEXT}') TOOBJ('${MEMBER}') TOCCSID(${TGTCCSID})"
  /src/sys/external/bsd/drm2/dist/drm/radeon/
mkregtable.c 25 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
27 * container_of - cast a member of a structure out to the containing structure
28 * @ptr: the pointer to the member.
30 * @member: the name of the member within the struct.
33 #define container_of(ptr, type, member) ({ \
34 const typeof(((type *)0)->member)*__mptr = (ptr); \
35 (type *)((char *)__mptr - offsetof(type, member)); })
95 * @member: the name of the list_head within the struct
    [all...]
  /src/usr.bin/make/
make.h 350 /* Target is a member of an archive */
358 * The node is an archive member, its name has the form
359 * "archive(member)".
573 #define ARCHIVE "!" /* Archive in "archive(member)" syntax */
574 #define MEMBER "%" /* Member in "archive(member)" syntax */
1155 GNode_VarMember(GNode *gn) { return GNode_ValueDirect(gn, MEMBER); }
make.c 1273 Var_Set(gn, MEMBER, eoa + 1);
suff.c 1354 * Node was an 'archive(member)' target, so
1497 * Member has a known suffix, so look for a transformation rule from
1501 * suffixes to which the member's suffix may be transformed.
1535 char *eoname; /* End of member portion */
1536 GNode *mem; /* Node for member */
1538 const char *name; /* Start of member's name */
1541 * The node is an 'archive(member)' pair, so we must find a
1548 * Caller guarantees the format `libname(member)', via
1560 * To simplify things, call Suff_FindDeps recursively on the member
1561 * now, so we can simply compare the member's .PREFIX and .TARGE
    [all...]
var.c 452 if (Substring_Equals(name, ".MEMBER"))
453 return Substring_InitStr(MEMBER);
4159 Substring_Equals(varname, ".MEMBER");
4182 return "$(.MEMBER)";

Completed in 48 milliseconds