Searched defs:u64 (Results 1 - 25 of 97) sorted by relevance

1234

/external/fio/os/
H A Dkcompat.h6 #define u64 uint64_t macro
/external/autotest/client/profilers/powertop/src/
H A Dethernet.c38 #define u64 __u64 macro
43 #undef u64 macro
H A Dwireless.c38 #define u64 __u64 macro
43 #undef u64 macro
/external/compiler-rt/test/tsan/
H A Dcond_version.c16 typedef unsigned long long u64; typedef
22 u64 sleep;
40 sleep = (u64)ts2.tv_sec * 1000000000 + ts2.tv_nsec -
41 ((u64)ts0.tv_sec * 1000000000 + ts0.tv_nsec);
/external/google-breakpad/src/processor/
H A Dbinarystream.cc79 binarystream &binarystream::operator>>(uint64_t &u64) { argument
83 u64 = static_cast<uint64_t>(lower) | (static_cast<uint64_t>(upper) << 32);
116 binarystream &binarystream::operator<<(uint64_t u64) { argument
118 uint32_t lower = static_cast<uint32_t>(u64 & 0xFFFFFFFF);
119 uint32_t upper = static_cast<uint32_t>(u64 >> 32);
H A Dbinarystream_unittest.cc95 uint64_t u64 = 0; local
97 stream >> u64; local
99 EXPECT_EQ(0U, u64);
104 stream >> u64; local
105 EXPECT_EQ(1U, u64);
269 uint64_t u64 = 0; local
272 stream >> u8 >> u16 >> u32 >> u64 >> s;
277 EXPECT_EQ(e64, u64);
368 uint64_t u64 = 0; local
370 stream >> u64; local
[all...]
/external/libyuv/files/unit_test/
H A Dbasictypes_test.cc34 uint64 u64 = 1u; local
42 EXPECT_EQ(8u, sizeof(u64));
50 EXPECT_LT(0u, u64);
/external/openssh/regress/unittests/sshbuf/
H A Dtest_sshbuf_getput_fuzz.c44 u_int64_t u64; local
52 sshbuf_get_u64(p1, &u64);
90 /* u64 */
/external/strace/
H A Dnlattr.h52 DECL_NLA(u64); variable
/external/valgrind/memcheck/tests/vbit-test/
H A Dvbits.h44 uint64_t u64; member in union:__anon25241::__anon25242
58 uint64_t u64; member in union:__anon25243
/external/linux-kselftest/tools/testing/selftests/powerpc/include/
H A Dutils.h17 typedef unsigned long long u64; typedef
/external/syslinux/gpxe/src/include/
H A Dstdint.h25 typedef uint64_t u64; typedef
/external/elfutils/libelf/
H A Dgelf_xlate.c76 uint64_t u64; member in union:unaligned
/external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
H A Dint_typedefs.h13 typedef uint64_t u64; typedef
/external/ltp/testcases/kernel/syscalls/epoll2/include/
H A Depoll.h78 uint64_t u64; member in union:epoll_data
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dquery9.c199 UINT64 u64; member in union:nine_query_result
257 nresult.dw = presult.u64;
260 nresult.u64 = presult.u64;
274 nresult.u64 = 1000000000;
/external/valgrind/none/tests/amd64/
H A Davx-1.c16 typedef struct { YMM a1; YMM a2; YMM a3; YMM a4; ULong u64; } Block; member in struct:__anon25261
35 printf(" %016llx\n", block->u64);
H A Davx2-1.c22 typedef struct { YMM a1; YMM a2; YMM a3; YMM a4; ULong u64; } Block; member in struct:__anon25263
41 printf(" %016llx\n", block->u64);
/external/clang/test/Sema/
H A Dcompare.c245 unsigned long long u64 : 64; member in struct:foo
256 } else if (x->u64 == i32) { // expected-warning {{comparison of integers of different signs}}
/external/deqp/framework/common/
H A DtcuFloat.hpp160 deUint64 u64; local
161 memcpy(&u64, &value, sizeof(deUint64));
162 *this = convert(Float64(u64));
178 deUint64 u64 = Float64::convert(*this).bits(); local
179 memcpy(&v, &u64, sizeof(deUint64));
/external/e2fsprogs/lib/ext2fs/
H A Djfs_compat.h38 typedef __u64 u64; typedef
/external/iproute2/include/linux/netfilter/
H A Dx_tables.h96 __u64 u64; member in struct:_xt_align
/external/iptables/include/linux/netfilter/
H A Dx_tables.h96 __u64 u64; member in struct:_xt_align
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dx_tables.h96 __u64 u64; member in struct:_xt_align
/external/libunwind/include/
H A Ddwarf_i.h40 uint64_t u64; member in union:__anon11586
128 *val = mvp->u64;
129 *addr += sizeof (mvp->u64);
267 uint64_t u64; local
280 ret = dwarf_readu64 (as, a, addr, &u64, arg);
283 *val = u64;

Completed in 2601 milliseconds

1234