Home
last modified time | relevance | path

Searched refs:sec64 (Results 1 – 3 of 3) sorted by relevance

/external/google-breakpad/src/common/mac/
Dmacho_id.cc306 struct section_64 sec64; in WalkerCB() local
308 if (!walker->ReadBytes(&sec64, sizeof(sec64), offset)) in WalkerCB()
312 breakpad_swap_section_64(&sec64, 1); in WalkerCB()
316 if ((sec64.flags & SECTION_TYPE) != S_ZEROFILL && sec64.offset != 0) in WalkerCB()
318 header_offset + sec64.offset, in WalkerCB()
319 (size_t)sec64.size); in WalkerCB()
/external/mesa3d/src/util/
Dtimespec.h201 uint64_t sec64 = a->tv_sec; in timespec_to_proto() local
203 *tv_sec_hi = sec64 >> 32; in timespec_to_proto()
204 *tv_sec_lo = sec64 & 0xffffffff; in timespec_to_proto()
/external/toybox/toys/pending/
Dfdisk.c164 uint64_t sec64 = 0; in read_size() local
166 if (ioctl(dev_fd, BLKGETSIZE64, &sec64) == 0) { in read_size()
167 sec64 = sec64 >> 9; //convert to 512 block size. in read_size()
168 if (sec64 != (uint32_t) sec64) { in read_size()
170 sec64 = (uint32_t) - 1L; in read_size()
172 return sec64; in read_size()