HomeSort by relevance Sort by last modified time
    Searched full:uint64_t (Results 26 - 50 of 6681) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
integer-overflow.cpp 2 typedef unsigned long long uint64_t; typedef
5 uint64_t f0(uint64_t);
6 uint64_t f1(uint64_t, uint32_t);
7 uint64_t f2(uint64_t, ...);
9 static const uint64_t overflow = 1 * 4608 * 1024 * 1024; // expected-warning {{overflow in expression; result is 536870912 with type 'int'}}
11 uint64_t check_integer_overflows(int i) { //expected-note {{declared here}}
13 uint64_t overflow = 4608 * 1024 * 1024
    [all...]
  /external/v8/src/
diy-fp.cc 17 const uint64_t kM32 = 0xFFFFFFFFu;
18 uint64_t a = f_ >> 32;
19 uint64_t b = f_ & kM32;
20 uint64_t c = other.f_ >> 32;
21 uint64_t d = other.f_ & kM32;
22 uint64_t ac = a * c;
23 uint64_t bc = b * c;
24 uint64_t ad = a * d;
25 uint64_t bd = b * d;
26 uint64_t tmp = (bd >> 32) + (ad & kM32) + (bc & kM32)
    [all...]
  /frameworks/av/media/libstagefright/webm/
WebmElement.h 30 const uint64_t mId, mSize;
32 WebmElement(uint64_t id, uint64_t size);
37 uint64_t totalSize();
38 uint64_t serializeInto(uint8_t *buf);
39 uint8_t *serialize(uint64_t& size);
40 int write(int fd, uint64_t& size);
50 static sp<WebmElement> SegmentInfo(uint64_t scale = 1000000, double dur = 0);
57 uint64_t uid = 0,
63 uint64_t width
    [all...]
  /external/clang/test/Sema/
integer-overflow.c 2 typedef unsigned long long uint64_t; typedef
5 uint64_t f0(uint64_t);
6 uint64_t f1(uint64_t, uint32_t);
7 uint64_t f2(uint64_t, ...);
9 static const uint64_t overflow = 1 * 4608 * 1024 * 1024; // expected-warning {{overflow in expression; result is 536870912 with type 'int'}}
11 uint64_t check_integer_overflows(int i) {
13 uint64_t overflow = 4608 * 1024 * 1024
    [all...]
  /external/vboot_reference/host/include/
cgpt_params.h 18 uint64_t drive_size;
20 uint64_t padding;
25 uint64_t drive_size;
27 uint64_t begin;
28 uint64_t size;
48 uint64_t drive_size;
60 uint64_t drive_size;
66 uint64_t drive_size;
74 uint64_t drive_size;
86 uint64_t drive_size
    [all...]
  /external/compiler-rt/test/builtins/timing/
floatundidf.c 12 double __floatundidf(uint64_t x);
16 uint64_t input[INPUT_SIZE];
23 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
29 uint64_t startTime = mach_absolute_time();
32 uint64_t endTime = mach_absolute_time();
timing.h 5 double intervalInCycles( uint64_t startTime, uint64_t endTime )
7 uint64_t rawTime = endTime - startTime;
17 uint64_t freq = 0;
  /external/jemalloc/include/jemalloc/internal/
prng.h 38 uint64_t prng_lg_range(uint64_t *state, unsigned lg_range);
39 uint64_t prng_range(uint64_t *state, uint64_t range);
43 JEMALLOC_ALWAYS_INLINE uint64_t
44 prng_lg_range(uint64_t *state, unsigned lg_range)
46 uint64_t ret;
58 JEMALLOC_ALWAYS_INLINE uint64_t
59 prng_range(uint64_t *state, uint64_t range
    [all...]
stats.h 20 uint64_t nrequests;
30 uint64_t nmalloc;
31 uint64_t ndalloc;
38 uint64_t nrequests;
47 uint64_t nfills;
50 uint64_t nflushes;
53 uint64_t nruns;
59 uint64_t reruns;
72 uint64_t nmalloc;
73 uint64_t ndalloc
    [all...]
  /external/fio/lib/
hweight.h 8 unsigned int hweight64(uint64_t w);
  /frameworks/base/media/mca/filterfw/native/core/
time_util.h 28 uint64_t getTimeUs();
32 static const uint64_t kDefaultLoggingPeriodInFrames;
39 void SetLoggingPeriodInFrames(uint64_t numFrames) {
44 uint64_t NumCalls() const { return mNumCalls; }
45 uint64_t TotalUSec() const { return mTotalUSec; }
49 uint64_t mLoggingPeriodInFrames;
50 uint64_t mStartUSec;
51 uint64_t mNumCalls;
52 uint64_t mTotalUSec;
  /frameworks/base/media/mca/filterpacks/native/base/
time_util.h 28 uint64_t getTimeUs();
32 static const uint64_t kDefaultLoggingPeriodInFrames;
39 void SetLoggingPeriodInFrames(uint64_t numFrames) {
44 uint64_t NumCalls() const { return mNumCalls; }
45 uint64_t TotalUSec() const { return mTotalUSec; }
49 uint64_t mLoggingPeriodInFrames;
50 uint64_t mStartUSec;
51 uint64_t mNumCalls;
52 uint64_t mTotalUSec;
  /external/tcpdump/
extract.h 103 static inline uint64_t
106 return ((uint64_t)(((uint64_t)ntohl(((const unaligned_uint32_t *)(p) + 0)->val)) << 32 | \
107 ((uint64_t)ntohl(((const unaligned_uint32_t *)(p) + 1)->val)) << 0));
127 ((uint64_t)(((uint64_t)(*((const uint8_t *)(p) + 0)) << 56) | \
128 ((uint64_t)(*((const uint8_t *)(p) + 1)) << 48) | \
129 ((uint64_t)(*((const uint8_t *)(p) + 2)) << 40) | \
130 ((uint64_t)(*((const uint8_t *)(p) + 3)) << 32) | \
131 ((uint64_t)(*((const uint8_t *)(p) + 4)) << 24) |
    [all...]
  /libcore/luni/src/main/native/
cbigint.h 54 uint64_t u64val;
60 #define DOUBLE_TO_LONGBITS(dbl) (*(reinterpret_cast<uint64_t*>(&dbl)))
88 void multiplyHighPrecision(uint64_t* arg1, int32_t length1, uint64_t* arg2, int32_t length2,
89 uint64_t* result, int32_t length);
90 uint32_t simpleAppendDecimalDigitHighPrecision(uint64_t* arg1, int32_t length, uint64_t digit);
91 jdouble toDoubleHighPrecision(uint64_t* arg, int32_t length);
92 uint64_t doubleMantissa(jdouble z);
93 int32_t compareHighPrecision(uint64_t* arg1, int32_t length1, uint64_t* arg2, int32_t length2)
    [all...]
  /system/extras/libfec/include/fec/
ecc.h 39 inline uint64_t fec_div_round_up(uint64_t x, uint64_t y)
45 inline uint64_t fec_round_up(uint64_t x, uint64_t y)
51 inline uint64_t fec_ecc_interleave(uint64_t offset, int rsn, uint64_t rounds)
57 inline uint64_t fec_ecc_get_size(uint64_t file_size, int roots
    [all...]
  /external/kernel-headers/original/uapi/linux/
rds.h 107 uint64_t value;
117 uint64_t next_tx_seq;
118 uint64_t next_rx_seq;
129 uint64_t seq;
145 uint64_t inum;
153 uint64_t hdr_rem;
154 uint64_t data_rem;
212 typedef uint64_t rds_rdma_cookie_t;
215 uint64_t addr;
216 uint64_t bytes
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
rds.h 97 uint64_t value;
107 uint64_t next_tx_seq;
108 uint64_t next_rx_seq;
119 uint64_t seq;
135 uint64_t inum;
143 uint64_t hdr_rem;
144 uint64_t data_rem;
202 typedef uint64_t rds_rdma_cookie_t;
205 uint64_t addr;
206 uint64_t bytes
    [all...]
  /external/llvm/lib/Support/
StreamingMemoryObject.cpp 25 uint64_t getExtent() const override {
28 uint64_t readBytes(uint8_t *Buf, uint64_t Size,
29 uint64_t Address) const override;
30 const uint8_t *getPointer(uint64_t address, uint64_t size) const override;
31 bool isValidAddress(uint64_t address) const override {
41 bool validAddress(uint64_t address) const {
49 uint64_t RawMemoryObject::readBytes(uint8_t *Buf, uint64_t Size
    [all...]
  /development/ndk/platforms/android-21/include/sys/
vfs.h 43 uint64_t f_type; \
44 uint64_t f_bsize; \
45 uint64_t f_blocks; \
46 uint64_t f_bfree; \
47 uint64_t f_bavail; \
48 uint64_t f_files; \
49 uint64_t f_ffree; \
51 uint64_t f_namelen; \
52 uint64_t f_frsize; \
53 uint64_t f_flags;
    [all...]
  /device/google/contexthub/firmware/inc/algos/
time_sync.h 32 uint64_t time1[NUM_TIME_SYNC_DATAPOINTS];
33 uint64_t time2[NUM_TIME_SYNC_DATAPOINTS];
37 uint64_t time1_base;
38 uint64_t time2_base;
50 bool time_sync_add(time_sync_t *sync, uint64_t time1, uint64_t time2);
51 bool time_sync_estimate_time1(time_sync_t *sync, uint64_t time2, uint64_t *time1);
  /external/libchrome/base/trace_event/
process_memory_maps.h 31 uint64_t start_address;
32 uint64_t size_in_bytes;
38 uint64_t byte_stats_private_dirty_resident;
39 uint64_t byte_stats_private_clean_resident;
40 uint64_t byte_stats_shared_dirty_resident;
41 uint64_t byte_stats_shared_clean_resident;
43 uint64_t byte_stats_swapped;
46 uint64_t byte_stats_proportional_resident;
process_memory_totals.h 32 uint64_t resident_set_bytes() const { return resident_set_bytes_; }
33 void set_resident_set_bytes(uint64_t value) { resident_set_bytes_ = value; }
35 uint64_t peak_resident_set_bytes() const { return peak_resident_set_bytes_; }
36 void set_peak_resident_set_bytes(uint64_t value) {
47 void SetExtraFieldInBytes(const char* name, uint64_t value);
50 uint64_t resident_set_bytes_;
51 uint64_t peak_resident_set_bytes_;
55 std::map<const char*, uint64_t> extra_fields_;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.h 26 void resolveRelocation(const SectionEntry &Section, uint64_t Offset,
27 uint64_t Value, uint32_t Type, int64_t Addend,
28 uint64_t SymOffset = 0, SID SectionID = 0);
30 void resolveX86_64Relocation(const SectionEntry &Section, uint64_t Offset,
31 uint64_t Value, uint32_t Type, int64_t Addend,
32 uint64_t SymOffset);
34 void resolveX86Relocation(const SectionEntry &Section, uint64_t Offset,
37 void resolveAArch64Relocation(const SectionEntry &Section, uint64_t Offset,
38 uint64_t Value, uint32_t Type, int64_t Addend);
40 void resolveARMRelocation(const SectionEntry &Section, uint64_t Offset
    [all...]
  /external/valgrind/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...]
  /external/vboot_reference/host/lib/include/
host_common.h 34 uint64_t firmware_version,
48 uint64_t kernel_version,
49 uint64_t body_load_address,
50 uint64_t bootloader_address,
51 uint64_t bootloader_size,
53 uint64_t vmlinuz_header_address,
54 uint64_t vmlinuz_header_size,
56 uint64_t desired_size,

Completed in 1799 milliseconds

12 3 4 5 6 7 8 91011>>