HomeSort by relevance Sort by last modified time
    Searched refs:uint64_t (Results 1 - 25 of 4665) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/profile/
InstrProfiling.c 14 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)129
    [all...]
InstrProfilingBuffer.c 14 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 DataSize = DataEnd - DataBegin
    [all...]
InstrProfiling.h 20 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);
  /hardware/intel/img/libdrm/libdrm/nouveau/
nouveau_device.h 28 uint64_t vm_vram_base;
29 uint64_t vm_vram_size;
30 uint64_t vm_gart_size;
  /external/clang/test/Headers/
int64-type.c 5 typedef unsigned long long uint64_t; typedef
  /external/webrtc/src/system_wrappers/source/
cpu_features_android.c 13 uint64_t WebRtc_GetCPUFeaturesARM(void) {
  /external/clang/test/CodeGen/
uint128_t.c 3 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)
2008-01-04-WideBitfield.c 3 typedef unsigned long long uint64_t; typedef
6 uint64_t a : 64;
9 uint64_t f(void)
  /external/libunwind/include/tdep-ia64/
rse.h 15 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 slots = (bsp - bspstore) >> 3
    [all...]
  /external/nanopb-c/examples/using_double_on_avr/
double_conversion.h 7 * 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/chromium_org/third_party/WebKit/Source/platform/graphics/
CompositingReasons.h 13 const uint64_t CompositingReasonNone = 0;
14 const uint64_t CompositingReasonAll = ~static_cast<uint64_t>(0);
17 const uint64_t CompositingReason3DTransform = UINT64_C(1) << 0;
18 const uint64_t CompositingReasonVideo = UINT64_C(1) << 1;
19 const uint64_t CompositingReasonCanvas = UINT64_C(1) << 2;
20 const uint64_t CompositingReasonPlugin = UINT64_C(1) << 3;
21 const uint64_t CompositingReasonIFrame = UINT64_C(1) << 4;
22 const uint64_t CompositingReasonBackfaceVisibilityHidden = UINT64_C(1) << 5;
23 const uint64_t CompositingReasonActiveAnimation = UINT64_C(1) << 6
    [all...]
  /frameworks/av/media/libstagefright/webm/
EbmlUtil.h 36 uint64_t encodeUnsigned(uint64_t u);
40 uint64_t encodeUnsigned(uint64_t u, int width);
43 int serializeCodedUnsigned(uint64_t u, uint8_t* bary);
46 int sizeOf(uint64_t u);
  /external/fio/lib/
lfsr.h 15 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 size
    [all...]
  /external/fio/
fio_time.h 4 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/llvm/include/llvm/Support/
StringRefMemoryObject.h 27 uint64_t Base;
29 StringRefMemoryObject(StringRef Bytes, uint64_t Base = 0)
32 uint64_t getBase() const override { return Base; }
33 uint64_t getExtent() const override { return Bytes.size(); }
35 int readByte(uint64_t Addr, uint8_t *Byte) const override;
36 int readBytes(uint64_t Addr, uint64_t Size, uint8_t *Buf) const override;
MemoryObject.h 30 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/jemalloc/include/jemalloc/internal/
stats.h 19 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 ndalloc
    [all...]
  /development/ndk/sources/android/libportable/common/include/
statfs_portable.h 26 uint64_t f_blocks;
27 uint64_t f_bfree;
28 uint64_t f_bavail;
29 uint64_t f_files;
30 uint64_t f_ffree;
45 uint64_t f_blocks;
46 uint64_t f_bfree;
47 uint64_t f_files;
48 uint64_t f_ffree;
49 uint64_t f_bavail
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkBitmapHasher.h 29 static bool ComputeDigest(const SkBitmap& bitmap, uint64_t *result);
32 static bool ComputeDigestInternal(const SkBitmap& bitmap, uint64_t *result);
  /external/clang/test/CodeGenCXX/
int64_uint64.cpp 9 // 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/
c-counter-overflows.c 7 typedef unsigned long long uint64_t; typedef
16 for (uint64_t I = 0; I < 0xffffffff0; ++I) {
  /external/libmtp/examples/
pathutils.h 25 int progress (const uint64_t, const uint64_t, void const * const);
  /external/skia/src/utils/
SkBitmapHasher.h 29 static bool ComputeDigest(const SkBitmap& bitmap, uint64_t *result);
32 static bool ComputeDigestInternal(const SkBitmap& bitmap, uint64_t *result);
  /external/valgrind/main/none/tests/s390x/
clgrj.c 28 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 value2
    [all...]
  /frameworks/av/media/mtp/
MtpStorage.h 33 uint64_t mMaxCapacity;
34 uint64_t mMaxFileSize;
36 uint64_t mReserveSpace;
41 const char* description, uint64_t reserveSpace,
42 bool removable, uint64_t maxFileSize);
49 uint64_t getMaxCapacity();
50 uint64_t getFreeSpace();
54 inline uint64_t getMaxFileSize() const { return mMaxFileSize; }

Completed in 624 milliseconds

1 2 3 4 5 6 7 8 91011>>