HomeSort by relevance Sort by last modified time
    Searched refs:offsetof (Results 26 - 50 of 281) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/auxprogs/
aix5_VKI_info.c 19 #undef offsetof macro
22 #if !defined(offsetof)
23 # define offsetof(type,memb) ((int)&((type*)0)->memb) macro
85 offsetof(struct stat, st_size),
89 offsetof(struct stat, st_mode),
93 offsetof(struct stat, st_uid),
97 offsetof(struct stat, st_gid),
101 offsetof(struct stat, st_dev),
105 offsetof(struct stat, st_ino),
120 offsetof(struct iovec, iov_base)
    [all...]
  /external/elfutils/libelf/
elf_getident.c 47 || (offsetof (struct Elf, state.elf32.ehdr)
48 == offsetof (struct Elf, state.elf64.ehdr))
elf_end.c 105 || (offsetof (struct Elf, state.elf32.scns)
106 == offsetof (struct Elf, state.elf64.scns))
156 || (offsetof (struct Elf, state.elf32.scns)
157 == offsetof (struct Elf, state.elf64.scns))
168 || (offsetof (struct Elf, state.elf32.shdr)
169 == offsetof (struct Elf, state.elf64.shdr))
176 || (offsetof (struct Elf, state.elf32.phdr)
177 == offsetof (struct Elf, state.elf64.phdr))
elf_getshnum.c 52 || (offsetof (Elf, state.elf32.scns)
53 == offsetof (Elf, state.elf64.scns))
elf_newscn.c 43 assert (offsetof (Elf, state.elf.scns_last)
44 == offsetof (Elf, state.elf32.scns_last));
45 assert (offsetof (Elf, state.elf.scns_last)
46 == offsetof (Elf, state.elf64.scns_last));
47 assert (offsetof (Elf, state.elf32.scns)
48 == offsetof (Elf, state.elf64.scns));
60 || (offsetof (Elf, state.elf32.scns)
61 == offsetof (Elf, state.elf64.scns))
elf_clone.c 56 assert (offsetof (struct Elf, state.elf32.scns)
57 == offsetof (struct Elf, state.elf64.scns));
elf_getscn.c 49 || (offsetof (struct Elf, state.elf32.scns)
50 == offsetof (struct Elf, state.elf64.scns))
elf_newdata.c 44 || (offsetof (struct Elf, state.elf32.ehdr)
45 == offsetof (struct Elf, state.elf64.ehdr))
elf_nextscn.c 45 || (offsetof (Elf, state.elf32.scns)
46 == offsetof (Elf, state.elf64.scns)))
  /external/ipsec-tools/src/racoon/
schedule.h 53 #ifndef offsetof
55 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
57 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
64 (type *)( (char *)__mptr - offsetof(type,member) );})
  /frameworks/compile/linkloader/utils/
traits.h 32 enum { align = offsetof(AlignmentTest, element) };
  /external/elfutils/libdw/
libdw_alloc.c 30 2 * minsize + offsetof (struct libdw_memblock, mem));
35 newp->size = newp->remaining = size - offsetof (struct libdw_memblock, mem);
  /system/extras/tests/bionic/libstdc++/
test_cstddef.cpp 76 #ifndef offsetof
77 #error "offsetof is not a macro"
80 // offsetof is only in the top namespace
81 volatile size_t offset = offsetof(struct Foo, field2);
  /external/blktrace/
rbtree.h 113 #undef offsetof macro
115 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
117 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
122 (type *)( (char *)__mptr - offsetof(type,member) );})
  /external/clang/lib/Headers/
stddef.h 52 #define offsetof(t, d) __builtin_offsetof(t, d) macro
  /prebuilt/sdk/11/renderscript/clang-include/
stddef.h 56 #define offsetof(t, d) __builtin_offsetof(t, d) macro
  /prebuilt/sdk/12/renderscript/clang-include/
stddef.h 49 #define offsetof(t, d) __builtin_offsetof(t, d) macro
  /prebuilt/sdk/13/renderscript/clang-include/
stddef.h 49 #define offsetof(t, d) __builtin_offsetof(t, d) macro
  /prebuilt/sdk/14/renderscript/clang-include/
stddef.h 52 #define offsetof(t, d) __builtin_offsetof(t, d) macro
  /external/clang/test/Sema/
offsetof.c 3 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) macro
17 x = offsetof(struct external_sun3_core, c_regs);
21 x = __builtin_offsetof(int, X[42].f2); // expected-error {{offsetof requires struct}}
31 int v1 = offsetof (struct s1, a) == 0 ? 0 : f();
54 int test1[__builtin_offsetof(struct incomplete, foo)]; // expected-error {{offsetof of incomplete type 'struct incomplete'}}
  /external/qemu/hw/
smbios.c 118 smbios_add_field(0, offsetof(struct smbios_type_0, vendor_str),
121 smbios_add_field(0, offsetof(struct smbios_type_0, bios_version_str),
124 smbios_add_field(0, offsetof(struct smbios_type_0,
130 smbios_add_field(0, offsetof(struct smbios_type_0,
132 smbios_add_field(0, offsetof(struct smbios_type_0,
142 smbios_add_field(1, offsetof(struct smbios_type_1, manufacturer_str),
145 smbios_add_field(1, offsetof(struct smbios_type_1, product_name_str),
148 smbios_add_field(1, offsetof(struct smbios_type_1, version_str),
151 smbios_add_field(1, offsetof(struct smbios_type_1, serial_number_str),
160 smbios_add_field(1, offsetof(struct smbios_type_1, sku_number_str)
    [all...]
  /system/core/libcutils/
socket_local_client.c 74 - offsetof(struct sockaddr_un, sun_path) - 1) {
87 - offsetof(struct sockaddr_un, sun_path) - 1) {
99 - offsetof(struct sockaddr_un, sun_path) - 1) {
111 *alen = namelen + offsetof(struct sockaddr_un, sun_path) + 1;
  /external/qemu/target-i386/
translate.c 278 tcg_gen_st8_tl(t0, cpu_env, offsetof(CPUState, regs[reg]) + REG_B_OFFSET);
280 tcg_gen_st8_tl(t0, cpu_env, offsetof(CPUState, regs[reg - 4]) + REG_H_OFFSET);
284 tcg_gen_st16_tl(t0, cpu_env, offsetof(CPUState, regs[reg]) + REG_W_OFFSET);
288 tcg_gen_st32_tl(t0, cpu_env, offsetof(CPUState, regs[reg]) + REG_L_OFFSET);
291 tcg_gen_st32_tl(cpu_tmp0, cpu_env, offsetof(CPUState, regs[reg]) + REG_LH_OFFSET);
295 tcg_gen_st_tl(t0, cpu_env, offsetof(CPUState, regs[reg]));
300 tcg_gen_st32_tl(t0, cpu_env, offsetof(CPUState, regs[reg]) + REG_L_OFFSET);
320 tcg_gen_st16_tl(cpu_A0, cpu_env, offsetof(CPUState, regs[reg]) + REG_W_OFFSET);
324 tcg_gen_st32_tl(cpu_A0, cpu_env, offsetof(CPUState, regs[reg]) + REG_L_OFFSET);
327 tcg_gen_st32_tl(cpu_tmp0, cpu_env, offsetof(CPUState, regs[reg]) + REG_LH_OFFSET)
    [all...]
  /external/chromium/net/base/
x509_cert_types_mac.cc 55 { SEC_ASN1_CHOICE, offsetof(KeyValuePair, value_type), },
57 offsetof(KeyValuePair, value), 0, KeyValuePair::kTypePrintableString },
59 offsetof(KeyValuePair, value), 0, KeyValuePair::kTypeIA5String },
61 offsetof(KeyValuePair, value), 0, KeyValuePair::kTypeT61String },
63 offsetof(KeyValuePair, value), 0, KeyValuePair::kTypeUTF8String },
65 offsetof(KeyValuePair, value), 0, KeyValuePair::kTypeBMPString },
67 offsetof(KeyValuePair, value), 0, KeyValuePair::kTypeUniversalString },
73 { SEC_ASN1_OBJECT_ID, offsetof(KeyValuePair, key), },
83 { SEC_ASN1_SET_OF, offsetof(KeyValuePairs, pairs),
92 { SEC_ASN1_SEQUENCE_OF, offsetof(X509Name, pairs_list)
    [all...]
  /external/openssl/crypto/rand/
rand_egd.c 132 #ifndef offsetof
133 # define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
150 len = offsetof(struct sockaddr_un, sun_path) + strlen(path);

Completed in 1125 milliseconds

12 3 4 5 6 7 8 91011>>