/prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/ |
stddef.h | 26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) 28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
/prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/ |
stddef.h | 26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) 28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/ |
stddef.h | 26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) 28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/ |
stddef.h | 26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) 28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/ |
stddef.h | 26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) 28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/ |
stddef.h | 26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) 28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ |
stddef.h | 26 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) 28 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
/external/iptables/libiptc/ |
linux_stddef.h | 12 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) 16 * container_of - cast a member of a structure out to the containing structure 18 * @ptr: the pointer to the member. 20 * @member: the name of the member within the struct. 23 #define container_of(ptr, type, member) ({ \ 24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \ 25 (type *)( (char *)__mptr - offsetof(type,member) );})
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_memory.h | 91 #define Offset(TYPE, MEMBER) ((uintptr_t)&(((TYPE *)NULL)->MEMBER))
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_memory.h | 91 #define Offset(TYPE, MEMBER) ((uintptr_t)&(((TYPE *)NULL)->MEMBER))
|
/external/blktrace/ |
rbtree.h | 115 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) 117 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) 120 #define container_of(ptr, type, member) ({ \ 121 const typeof( ((type *)0)->member ) *__mptr = (ptr); \ 122 (type *)( (char *)__mptr - offsetof(type,member) );}) 141 #define rb_entry(ptr, type, member) container_of(ptr, type, member)
|
/external/clang/test/Sema/ |
offsetof.c | 3 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) 20 x = __builtin_offsetof(struct external_sun3_core, X[42].f2); // expected-error {{no member named 'f2'}} 25 int c[__builtin_offsetof(struct external_sun3_core, X[42].f2) == 344 ? 1 : -1]; // expected-error {{no member named 'f2'}}
|
/external/chromium_org/third_party/openssl/openssl/crypto/rand/ |
rand_egd.c | 133 # define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
/external/openssl/crypto/rand/ |
rand_egd.c | 133 # define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/ |
ss_context.c | 94 #define SWOffset(MEMBER) (((char *)&(SWZ->MEMBER)) - ((char *)SWZ)) 96 #define EMIT_ATTR( ATTR, STYLE, MEMBER ) \ 100 map[e].offset = SWOffset(MEMBER); \
|
/external/javassist/src/main/javassist/compiler/ |
TokenId.java | 116 int MEMBER = '#'; // static member access
|
/external/mesa3d/src/mesa/swrast_setup/ |
ss_context.c | 94 #define SWOffset(MEMBER) (((char *)&(SWZ->MEMBER)) - ((char *)SWZ)) 96 #define EMIT_ATTR( ATTR, STYLE, MEMBER ) \ 100 map[e].offset = SWOffset(MEMBER); \
|
/external/blktrace/btt/ |
list.h | 8 * Get offset of a member 10 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) 15 * Casts a member of a structure out to the containing structure 16 * @param ptr the pointer to the member. 18 * @param member the name of the member within the struct. 21 #define container_of(ptr, type, member) ({ \ 22 const typeof( ((type *)0)->member ) *__mptr = (ptr); \ 23 (type *)( (char *)__mptr - offsetof(type,member) );}) [all...] |
/external/linux-tools-perf/util/include/linux/ |
kernel.h | 22 #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)); })
|
/external/qemu/ |
osdep.h | 30 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *) 0)->MEMBER) 33 #define container_of(ptr, type, member) ({ \ 34 const typeof(((type *) 0)->member) *__mptr = (ptr); \ 35 (type *) ((char *) __mptr - offsetof(type, member));})
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/ |
stddef.h | 412 /* Offset of member MEMBER in a struct of type TYPE. */ 413 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/ |
stddef.h | 413 /* Offset of member MEMBER in a struct of type TYPE. */ 414 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/ |
stddef.h | 412 /* Offset of member MEMBER in a struct of type TYPE. */ 413 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/lib/gcc/arm-linux-androideabi/4.7/include/ |
stddef.h | 413 /* Offset of member MEMBER in a struct of type TYPE. */ 414 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
|
/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/ |
stddef.h | 413 /* Offset of member MEMBER in a struct of type TYPE. */ 414 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
|