HomeSort by relevance Sort by last modified time
    Searched refs:offsetof (Results 76 - 100 of 643) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/elfutils/libelf/
elf_newdata.c 56 || (offsetof (struct Elf, state.elf32.ehdr)
57 == offsetof (struct Elf, state.elf64.ehdr))
elf_nextscn.c 55 || (offsetof (Elf, state.elf32.scns)
56 == offsetof (Elf, state.elf64.scns)))
elf_getshdrstrndx.c 63 assert (offsetof (struct Elf, state.elf.ehdr)
64 == offsetof (struct Elf, state.elf32.ehdr));
67 assert (offsetof (struct Elf, state.elf.ehdr)
68 == offsetof (struct Elf, state.elf64.ehdr));
  /external/fio/
libfio.c 308 compiletime_assert((offsetof(struct thread_stat, percentile_list) % 8) == 0, "stat percentile_list");
309 compiletime_assert((offsetof(struct thread_stat, total_run_time) % 8) == 0, "total_run_time");
310 compiletime_assert((offsetof(struct thread_stat, total_err_count) % 8) == 0, "total_err_count");
311 compiletime_assert((offsetof(struct thread_stat, latency_percentile) % 8) == 0, "stat latency_percentile");
312 compiletime_assert((offsetof(struct thread_options_pack, zipf_theta) % 8) == 0, "zipf_theta");
313 compiletime_assert((offsetof(struct thread_options_pack, pareto_h) % 8) == 0, "pareto_h");
314 compiletime_assert((offsetof(struct thread_options_pack, percentile_list) % 8) == 0, "percentile_list");
315 compiletime_assert((offsetof(struct thread_options_pack, latency_percentile) % 8) == 0, "latency_percentile");
flist.h 6 #undef offsetof macro
8 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER) macro
10 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
15 (type *)( (char *)__mptr - offsetof(type,member) );})
  /external/jemalloc/include/jemalloc/internal/
jemalloc_internal_decls.h 35 #ifndef offsetof
36 # define offsetof(type, member) ((size_t)&(((type *)NULL)->member)) macro
  /external/libunwind/src/aarch64/
gen-offsets.c 7 printf ("#define LINUX_UC_" N "_OFF\t0x%X\n", offsetof (ucontext_t, X))
10 printf ("#define LINUX_SC_" N "_OFF\t0x%X\n", offsetof (struct sigcontext, X))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
imessage.h 35 #define CbNewSPropAttrArray(_cattr) (offsetof(SPropAttrArray,aPropAttr) + (_cattr)*sizeof(ULONG))
36 #define CbSPropAttrArray(_lparray) (offsetof(SPropAttrArray,aPropAttr) + (UINT)((_lparray)->cValues)*sizeof(ULONG))
wabnot.h 26 #define CbNewNOTIFKEY(_cb) (offsetof(NOTIFKEY,ab) + (_cb))
27 #define CbNOTIFKEY(_lpkey) (offsetof(NOTIFKEY,ab) + (_lpkey)->cb)
  /bionic/libc/malloc_debug/
MapData.cpp 87 if (!get_val<ElfW(Half)>(entry, addr + offsetof(ElfW(Ehdr), e_phnum), &ehdr.e_phnum)) {
90 if (!get_val<ElfW(Off)>(entry, addr + offsetof(ElfW(Ehdr), e_phoff), &ehdr.e_phoff)) {
96 if (!get_val<ElfW(Word)>(entry, addr + offsetof(ElfW(Phdr), p_type), &phdr.p_type)) {
99 if (!get_val<ElfW(Off)>(entry, addr + offsetof(ElfW(Phdr), p_offset), &phdr.p_offset)) {
103 if (!get_val<ElfW(Addr)>(entry, addr + offsetof(ElfW(Phdr), p_vaddr), &phdr.p_vaddr)) {
  /external/minijail/
bpf.h 57 #define syscall_nr (offsetof(struct seccomp_data, nr))
58 #define arch_nr (offsetof(struct seccomp_data, arch))
73 #define LO_ARG(idx) offsetof(struct seccomp_data, args[(idx)])
89 #define LO_ARG(idx) offsetof(struct seccomp_data, args[(idx)])
90 #define HI_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) + sizeof(__u32)
  /external/v8/test/cctest/
test-assembler-arm.cc 181 __ ldr(r0, MemOperand(r4, offsetof(T, i)));
183 __ str(r2, MemOperand(r4, offsetof(T, i)));
184 __ ldrsb(r2, MemOperand(r4, offsetof(T, c)));
187 __ strb(r2, MemOperand(r4, offsetof(T, c)));
188 __ ldrsh(r2, MemOperand(r4, offsetof(T, s)));
191 __ strh(r2, MemOperand(r4, offsetof(T, s)));
256 __ vldr(d6, r4, offsetof(T, a));
257 __ vldr(d7, r4, offsetof(T, b));
259 __ vstr(d5, r4, offsetof(T, c));
266 __ vstr(d4, r4, offsetof(T, b))
    [all...]
  /external/valgrind/VEX/priv/
main_main.c 604 offB_CMSTART = offsetof(VexGuestX86State,guest_CMSTART);
605 offB_CMLEN = offsetof(VexGuestX86State,guest_CMLEN);
606 offB_GUEST_IP = offsetof(VexGuestX86State,guest_EIP);
608 offB_HOST_EvC_COUNTER = offsetof(VexGuestX86State,host_EvC_COUNTER);
609 offB_HOST_EvC_FAILADDR = offsetof(VexGuestX86State,host_EvC_FAILADDR);
625 offB_CMSTART = offsetof(VexGuestAMD64State,guest_CMSTART);
626 offB_CMLEN = offsetof(VexGuestAMD64State,guest_CMLEN);
627 offB_GUEST_IP = offsetof(VexGuestAMD64State,guest_RIP);
629 offB_HOST_EvC_COUNTER = offsetof(VexGuestAMD64State,host_EvC_COUNTER);
630 offB_HOST_EvC_FAILADDR = offsetof(VexGuestAMD64State,host_EvC_FAILADDR)
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
simple-object-coff.c 275 flags = fetch_16 (hdrbuf + offsetof (struct external_filehdr, f_flags));
286 ocr->nscns = fetch_16 (hdrbuf + offsetof (struct external_filehdr, f_nscns));
288 + offsetof (struct external_filehdr, f_symptr));
289 ocr->nsyms = fetch_32 (hdrbuf + offsetof (struct external_filehdr, f_nsyms));
292 + fetch_16 (hdrbuf + offsetof (struct external_filehdr,
379 scnname = scnhdr + offsetof (struct external_scnhdr, s_name);
417 scnptr = fetch_32 (scnhdr + offsetof (struct external_scnhdr, s_scnptr));
418 size = fetch_32 (scnhdr + offsetof (struct external_scnhdr, s_size));
527 set_16 (hdr + offsetof (struct external_filehdr, f_magic), attrs->magic);
528 set_16 (hdr + offsetof (struct external_filehdr, f_nscns), nscns)
    [all...]
  /external/f2fs-tools/include/
list.h 6 #if !defined(offsetof)
7 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
11 (type *)( (char *)__mptr - offsetof(type,member) );})
  /external/wpa_supplicant_8/src/utils/
list.h 63 #ifndef offsetof
64 #define offsetof(type, member) ((long) &((type *) 0)->member) macro
68 ((type *) ((char *) item - offsetof(type, member)))
  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/include/linux/kernel/
kernel.h 26 #ifndef offsetof
27 #define offsetof(TYPE,MEMBER) ((size_t) & ((TYPE *) 0)->MEMBER) macro
31 #define container_of(ptr,type,member) ({ const typeof(((type *) 0)->member) * __mptr = (ptr); (type *) ((char *) __mptr - offsetof(type, member)); })
  /external/valgrind/coregrind/m_syswrap/
syswrap-amd64-solaris.c 221 offsetof(VexGuestAMD64State, guest_CC_DEP1),
225 offsetof(VexGuestAMD64State, guest_CC_DEP2),
278 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestAMD64State,
280 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestAMD64State,
285 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestAMD64State,
287 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestAMD64State,
289 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestAMD64State,
291 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestAMD64State,
293 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestAMD64State,
295 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestAMD64State
    [all...]
  /device/moto/shamu/camera/QCamera/stack/common/
cam_list.h 40 (type *)((char *)__mptr - offsetof(type,member));})
  /external/compiler-rt/test/asan/TestCases/Linux/
read_binary_name_regtest.c 21 #define syscall_nr (offsetof(struct seccomp_data, nr))
  /external/nanopb-c/extra/
pb_syshdr.h 35 #define offsetof(st, m) ((size_t)(&((st *)0)->m)) macro
  /external/skia/src/sfnt/
SkOTTable_gasp.h 70 static_assert(offsetof(SkOTTableGridAndScanProcedure, numRanges) == 2, "SkOTTableGridAndScanProcedure_numRanges_not_at_2");
SkOTTable_hhea.h 53 static_assert(offsetof(SkOTTableHorizontalHeader, numberOfHMetrics) == 34, "SkOTTableHorizontalHeader_numberOfHMetrics_not_at_34");
SkOTTable_maxp_TT.h 47 static_assert(offsetof(SkOTTableMaximumProfile_TT, maxComponentDepth) == 30, "SkOTTableMaximumProfile_TT_maxComponentDepth_not_at_30");
SkOTTable_post.h 49 static_assert(offsetof(SkOTTablePostScript, maxMemType1) == 28, "SkOTTablePostScript_maxMemType1_not_at_28");

Completed in 480 milliseconds

1 2 34 5 6 7 8 91011>>