Searched refs:uint64_t (Results 1 - 25 of 2974) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/profile/
H A DInstrProfiling.c14 uint64_t __llvm_profile_get_magic(void) {
24 unsigned char R = sizeof(void *) == sizeof(uint64_t) ? 'r' : 'R';
26 (uint64_t)255 << 56 |
27 (uint64_t)'l' << 48 |
28 (uint64_t)'p' << 40 |
29 (uint64_t)'r' << 32 |
30 (uint64_t)'o' << 24 |
31 (uint64_t)'f' << 16 |
32 (uint64_t) R << 8 |
33 (uint64_t)12
[all...]
H A DInstrProfilingBuffer.c14 uint64_t __llvm_profile_get_size_for_buffer(void) {
16 const uint64_t NamesSize = PROFILE_RANGE_SIZE(names) * sizeof(char);
17 const uint64_t Padding = sizeof(uint64_t) - NamesSize % sizeof(uint64_t);
18 return sizeof(uint64_t) * PROFILE_HEADER_SIZE +
20 PROFILE_RANGE_SIZE(counters) * sizeof(uint64_t) +
31 const uint64_t *CountersBegin = __llvm_profile_counters_begin();
32 const uint64_t *CountersEnd = __llvm_profile_counters_end();
37 const uint64_t DataSiz
[all...]
H A DInstrProfiling.h20 typedef unsigned long long uint64_t; typedef
35 const uint64_t FuncHash;
37 uint64_t *const Counters;
43 uint64_t __llvm_profile_get_size_for_buffer(void);
57 uint64_t *__llvm_profile_counters_begin(void);
58 uint64_t *__llvm_profile_counters_end(void);
90 uint64_t __llvm_profile_get_magic(void);
93 uint64_t __llvm_profile_get_version(void);
/external/clang/test/Headers/
H A Dint64-type.c5 typedef unsigned long long uint64_t; typedef
/external/webrtc/src/system_wrappers/source/
H A Dcpu_features_android.c13 uint64_t WebRtc_GetCPUFeaturesARM(void) {
/external/clang/test/CodeGen/
H A Duint128_t.c3 typedef unsigned long long uint64_t; typedef
4 extern uint64_t numer;
5 extern uint64_t denom;
7 uint64_t
8 f(uint64_t val)
H A D2008-01-04-WideBitfield.c3 typedef unsigned long long uint64_t; typedef
6 uint64_t a : 64;
9 uint64_t f(void)
H A Darm64_vcreate.c7 float32x2_t test_vcreate_f32(uint64_t a1) {
17 float64x1_t test_vcreate_f64(uint64_t a1) {
/external/libunwind/include/tdep-ia64/
H A Drse.h15 static inline uint64_t
16 rse_slot_num (uint64_t addr)
24 static inline uint64_t
25 rse_is_rnat_slot (uint64_t addr)
34 static inline uint64_t
35 rse_rnat_addr (uint64_t slot_addr)
45 static inline uint64_t
46 rse_num_regs (uint64_t bspstore, uint64_t bsp)
48 uint64_t slot
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DCompositingReasons.h14 const uint64_t CompositingReasonNone = 0;
15 const uint64_t CompositingReasonAll = ~static_cast<uint64_t>(0);
18 const uint64_t CompositingReason3DTransform = UINT64_C(1) << 0;
19 const uint64_t CompositingReasonVideo = UINT64_C(1) << 1;
20 const uint64_t CompositingReasonCanvas = UINT64_C(1) << 2;
21 const uint64_t CompositingReasonPlugin = UINT64_C(1) << 3;
22 const uint64_t CompositingReasonIFrame = UINT64_C(1) << 4;
23 const uint64_t CompositingReasonBackfaceVisibilityHidden = UINT64_C(1) << 5;
24 const uint64_t CompositingReasonActiveAnimatio
[all...]
/external/nanopb-c/examples/using_double_on_avr/
H A Ddouble_conversion.h7 * and then store them in uint64_t datatype.
16 extern uint64_t float_to_double(float value);
22 extern float double_to_float(uint64_t value);
/external/fio/lib/
H A Dlfsr.h15 uint64_t xormask;
16 uint64_t last_val;
17 uint64_t cached_bit;
18 uint64_t max_val;
19 uint64_t num_vals;
20 uint64_t cycle_length;
21 uint64_t cached_cycle_length;
25 int lfsr_next(struct fio_lfsr *fl, uint64_t *off, uint64_t);
26 int lfsr_init(struct fio_lfsr *fl, uint64_t siz
[all...]
/external/fio/
H A Dfio_time.h4 extern uint64_t utime_since(struct timeval *, struct timeval *);
5 extern uint64_t utime_since_now(struct timeval *);
6 extern uint64_t mtime_since(struct timeval *, struct timeval *);
7 extern uint64_t mtime_since_now(struct timeval *);
8 extern uint64_t time_since_now(struct timeval *);
9 extern uint64_t mtime_since_genesis(void);
10 extern uint64_t utime_since_genesis(void);
/external/jemalloc/include/jemalloc/internal/
H A Dstats.h19 uint64_t nrequests;
35 uint64_t nmalloc;
36 uint64_t ndalloc;
43 uint64_t nrequests;
46 uint64_t nfills;
49 uint64_t nflushes;
52 uint64_t nruns;
58 uint64_t reruns;
71 uint64_t nmalloc;
72 uint64_t ndallo
[all...]
/external/llvm/include/llvm/Support/
H A DMemoryObject.h30 virtual uint64_t getBase() const = 0;
37 virtual uint64_t getExtent() const = 0;
45 virtual int readByte(uint64_t address, uint8_t *ptr) const = 0;
59 virtual int readBytes(uint64_t address, uint64_t size, uint8_t *buf) const;
/external/clang/test/CodeGenCXX/
H A Dint64_uint64.cpp9 // Test if int64_t and uint64_t can be correctly mangled.
17 void f2(uint64_t a) {}
23 void f4(uint64_t *ptr) {}
/external/clang/test/Profile/
H A Dc-counter-overflows.c7 typedef unsigned long long uint64_t; typedef
16 for (uint64_t I = 0; I < 0xffffffff0; ++I) {
/external/libmtp/examples/
H A Dpathutils.h25 int progress (const uint64_t, const uint64_t, void const * const);
/external/valgrind/main/none/tests/s390x/
H A Dclgrj.c28 void compare_never(uint64_t value1, uint64_t value2)
30 register uint64_t val1 asm("r7") = value1;
31 register uint64_t val2 asm("r8") = value2;
44 void compare_always(uint64_t value1, uint64_t value2)
46 register uint64_t val1 asm("r7") = value1;
47 register uint64_t val2 asm("r8") = value2;
60 void compare_le(uint64_t value1, uint64_t value
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddiy-fp.cc42 const uint64_t kM32 = 0xFFFFFFFFU;
43 uint64_t a = f_ >> 32;
44 uint64_t b = f_ & kM32;
45 uint64_t c = other.f_ >> 32;
46 uint64_t d = other.f_ & kM32;
47 uint64_t ac = a * c;
48 uint64_t bc = b * c;
49 uint64_t ad = a * d;
50 uint64_t bd = b * d;
51 uint64_t tm
[all...]
/external/chromium_org/v8/src/
H A Ddiy-fp.cc18 const uint64_t kM32 = 0xFFFFFFFFu;
19 uint64_t a = f_ >> 32;
20 uint64_t b = f_ & kM32;
21 uint64_t c = other.f_ >> 32;
22 uint64_t d = other.f_ & kM32;
23 uint64_t ac = a * c;
24 uint64_t bc = b * c;
25 uint64_t ad = a * d;
26 uint64_t bd = b * d;
27 uint64_t tm
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dcpu_features_android.c13 uint64_t WebRtc_GetCPUFeaturesARM(void) {
/external/fio/os/
H A Dkcompat.h6 #define u64 uint64_t
/external/llvm/lib/Support/
H A DMemoryObject.cpp16 int MemoryObject::readBytes(uint64_t address,
17 uint64_t size,
19 uint64_t current = address;
20 uint64_t limit = getBase() + getExtent();
/external/ltrace/
H A Dbits.h27 unsigned bitcount(uint64_t u);

Completed in 482 milliseconds

1234567891011>>