HomeSort by relevance Sort by last modified time
    Searched refs:offsetof (Results 126 - 150 of 1126) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/vboot_reference/utility/
tlcl_generator.c 105 int nv_index = nv_data_public + offsetof(TPM_NV_DATA_PUBLIC, nvIndex);
107 offsetof(TPM_NV_DATA_PUBLIC, pcrInfoRead);
116 offsetof(TPM_PCR_INFO_SHORT, localityAtRelease) + PCR_SELECTION_FIX;
118 offsetof(TPM_NV_DATA_PUBLIC, pcrInfoWrite) + PCR_SELECTION_FIX;
120 offsetof(TPM_PCR_INFO_SHORT, localityAtRelease) + PCR_SELECTION_FIX;
122 offsetof(TPM_NV_DATA_PUBLIC, permission) + 2 * PCR_SELECTION_FIX;
124 nv_permission + offsetof(TPM_NV_ATTRIBUTES, tag);
126 nv_permission + offsetof(TPM_NV_ATTRIBUTES, attributes);
128 offsetof(TPM_NV_DATA_PUBLIC, dataSize) + 2 * PCR_SELECTION_FIX;
545 (int) (offsetof(TPM_NV_DATA_PUBLIC, permission)
    [all...]
  /external/elfutils/backends/
ppc_corenote.c 125 .offset = offsetof (struct EBLHOOK(prstatus), pr_reg[32]), \
130 .offset = offsetof (struct EBLHOOK(prstatus), pr_reg[34]), \
  /external/elfutils/libelf/
gelf_getehdr.c 59 if (offsetof (struct Elf, state.elf32.ehdr)
60 != offsetof (struct Elf, state.elf64.ehdr))
  /external/ltp/utils/ffsb-6.0-rc2/
list.h 29 #define offsetof(type, member) ((int) &((type *)0)->member) macro
33 (type *)((char *)__mptr - offsetof(type, member)); })
  /external/mmc-utils/
mmc.h 23 #ifndef offsetof
24 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
  /external/nanopb-c/
pb.h 245 #define PB_BYTES_ARRAY_T_ALLOCSIZE(n) ((size_t)n + offsetof(pb_bytes_array_t, bytes))
367 #define pb_delta(st, m1, m2) ((int)offsetof(st, m1) - (int)offsetof(st, m2))
373 #define PB_DATAOFFSET_FIRST(st, m1, m2) (offsetof(st, m1))
375 #define PB_DATAOFFSET_OTHER(st, m1, m2) (offsetof(st, m1) - offsetof(st, m2) - pb_membersize(st, m2))
377 #define PB_DATAOFFSET_CHOOSE(st, m1, m2) (int)(offsetof(st, m1) == offsetof(st, m2) \
  /external/strace/
fetch_struct_flock.c 45 && offsetof(struct_kernel_flock64, member) == offsetof(type, member))
  /external/strace/tests/
prctl-seccomp-filter-v.c 78 BPF_STMT(BPF_LD|BPF_W|BPF_ABS, offsetof(struct seccomp_data, nr)),
109 (unsigned) offsetof(struct seccomp_data, nr));
  /external/strace/tests-m32/
prctl-seccomp-filter-v.c 78 BPF_STMT(BPF_LD|BPF_W|BPF_ABS, offsetof(struct seccomp_data, nr)),
109 (unsigned) offsetof(struct seccomp_data, nr));
  /external/strace/tests-mx32/
prctl-seccomp-filter-v.c 78 BPF_STMT(BPF_LD|BPF_W|BPF_ABS, offsetof(struct seccomp_data, nr)),
109 (unsigned) offsetof(struct seccomp_data, nr));
  /libcore/ojluni/src/main/native/
EPoll.c 48 return offsetof(struct epoll_event, events);
54 return offsetof(struct epoll_event, data);
  /external/skia/src/gpu/ccpr/
GrCCPRPathProcessor.cpp 62 SkASSERT(offsetof(Instance, fDevBounds) ==
64 SkASSERT(offsetof(Instance, fDevBounds45) ==
66 SkASSERT(offsetof(Instance, fViewMatrix) ==
68 SkASSERT(offsetof(Instance, fViewTranslate) ==
70 SkASSERT(offsetof(Instance, fAtlasOffset) ==
72 SkASSERT(offsetof(Instance, fColor) ==
  /system/libhidl/base/include/hidl/
MQDescriptor.h 38 static_assert(offsetof(GrantorDescriptor, flags) == 0, "wrong offset");
39 static_assert(offsetof(GrantorDescriptor, fdIndex) == 4, "wrong offset");
40 static_assert(offsetof(GrantorDescriptor, offset) == 8, "wrong offset");
41 static_assert(offsetof(GrantorDescriptor, extent) == 16, "wrong offset");
146 const size_t MQDescriptor<T, flavor>::kOffsetOfGrantors = offsetof(MQDescriptor, mGrantors);
149 const size_t MQDescriptor<T, flavor>::kOffsetOfHandle = offsetof(MQDescriptor, mHandle);
  /toolchain/binutils/binutils-2.25/bfd/
cpu-arm.c 234 if (buffer_size < offsetof (arm_Note, name))
240 descsz = bfd_get_32 (abfd, buffer + offsetof (arm_Note, descsz));
241 type = bfd_get_32 (abfd, buffer + offsetof (arm_Note, type));
242 descr = (char *) buffer + offsetof (arm_Note, name);
245 if (namesz + descsz + offsetof (arm_Note, name) > buffer_size)
325 strcpy ((char *) buffer + (offsetof (arm_Note, name)
  /external/google-breakpad/src/google_breakpad/common/
minidump_format.h 355 static const size_t MDString_minsize = offsetof(MDString, buffer[0]);
374 static const size_t MDRawThreadList_minsize = offsetof(MDRawThreadList,
434 static const size_t MDCVInfoPDB20_minsize = offsetof(MDCVInfoPDB20,
447 static const size_t MDCVInfoPDB70_minsize = offsetof(MDCVInfoPDB70,
491 static const size_t MDImageDebugMisc_minsize = offsetof(MDImageDebugMisc,
500 static const size_t MDRawModuleList_minsize = offsetof(MDRawModuleList,
509 static const size_t MDRawMemoryList_minsize = offsetof(MDRawMemoryList,
    [all...]
  /external/valgrind/VEX/priv/
guest_mips_helpers.c 48 { offsetof(VexGuestMIPS32State, field), \
52 { offsetof(VexGuestMIPS64State, field), \
304 Int sp_min = offsetof(VexGuestMIPS32State, guest_r29);
306 Int pc_min = offsetof(VexGuestMIPS32State, guest_PC);
325 Int fp_min = offsetof(VexGuestMIPS32State, guest_r30);
341 Int sp_min = offsetof(VexGuestMIPS64State, guest_r29);
343 Int pc_min = offsetof(VexGuestMIPS64State, guest_PC);
360 Int fp_min = offsetof(VexGuestMIPS64State, guest_r30);
376 .offset_SP = offsetof(VexGuestMIPS32State, guest_r29),
379 .offset_FP = offsetof(VexGuestMIPS32State, guest_r30)
    [all...]
  /external/fio/profiles/
act.c 96 .off1 = offsetof(struct act_options, device_names),
105 .off1 = offsetof(struct act_options, load),
115 .off1 = offsetof(struct act_options, test_duration),
125 .off1 = offsetof(struct act_options, threads_per_queue),
135 .off1 = offsetof(struct act_options, num_read_blocks),
145 .off1 = offsetof(struct act_options, write_size),
155 .off1 = offsetof(struct act_options, prep),
  /frameworks/base/core/jni/
android_net_NetUtils.cpp 47 static const uint32_t kEtherTypeOffset = offsetof(ether_header, ether_type);
49 static const uint32_t kIPv4Protocol = kEtherHeaderLen + offsetof(iphdr, protocol);
50 static const uint32_t kIPv4FlagsOffset = kEtherHeaderLen + offsetof(iphdr, frag_off);
51 static const uint32_t kIPv6NextHeader = kEtherHeaderLen + offsetof(ip6_hdr, ip6_nxt);
53 static const uint32_t kICMPv6TypeOffset = kIPv6PayloadStart + offsetof(icmp6_hdr, icmp6_type);
54 static const uint32_t kUDPSrcPortIndirectOffset = kEtherHeaderLen + offsetof(udphdr, source);
55 static const uint32_t kUDPDstPortIndirectOffset = kEtherHeaderLen + offsetof(udphdr, dest);
  /external/valgrind/coregrind/
m_translate.c     [all...]
  /device/google/contexthub/firmware/os/platform/stm32/
pwr.c 100 offsetof(struct StmRcc, AHB1##_type), \
101 offsetof(struct StmRcc, AHB2##_type), \
102 offsetof(struct StmRcc, AHB3##_type), \
103 offsetof(struct StmRcc, APB1##_type), \
104 offsetof(struct StmRcc, APB2##_type) \
  /external/openssh/
sandbox-seccomp-filter.c 57 #include <stddef.h> /* for offsetof */
97 offsetof(struct seccomp_data, args[(_arg_nr)]) + ARG_LO_OFFSET), \
102 offsetof(struct seccomp_data, args[(_arg_nr)]) + ARG_HI_OFFSET), \
108 offsetof(struct seccomp_data, nr))
114 offsetof(struct seccomp_data, arch)),
119 offsetof(struct seccomp_data, nr)),
  /external/valgrind/coregrind/m_syswrap/
syswrap-x86-solaris.c 245 offsetof(VexGuestX86State, guest_CC_DEP1),
249 offsetof(VexGuestX86State, guest_CC_DEP2),
280 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestX86State,
282 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestX86State,
308 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestX86State,
311 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestX86State,
314 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestX86State,
317 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestX86State,
320 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestX86State,
323 VG_TRACK(copy_reg_to_mem, part, tid, offsetof(VexGuestX86State
    [all...]
  /external/blktrace/btt/
list.h 6 #ifndef offsetof
10 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) macro
23 (type *)( (char *)__mptr - offsetof(type,member) );})
  /external/e2fsprogs/lib/ext2fs/
tst_super_size.c 24 #ifndef offsetof
25 #define offsetof(type, member) __builtin_offsetof (type, member) macro
29 offsetof(struct sb_struct, x), \
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_state.c 59 offsetof(struct brw_vs_unit_state, thread0),
165 offsetof(struct brw_vs_unit_state, vs5),
176 offsetof(struct brw_vs_unit_state, thread2),

Completed in 1147 milliseconds

1 2 3 4 56 7 8 91011>>