/external/stlport/src/ |
num_get_float.cpp | 104 typedef unsigned __int64 uint64; typedef 110 typedef uint64_t uint64; typedef 119 static void _Stl_mult64(const uint64 u, const uint64 v, 120 uint64& high, uint64& low) { 121 const uint64 low_mask = ULL(0xffffffff); 122 const uint64 u0 = u & low_mask; 123 const uint64 u1 = u >> 32; 124 const uint64 v0 = v & low_mask [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
num_get_float.cpp | 104 typedef unsigned __int64 uint64; typedef 110 typedef uint64_t uint64; typedef 119 static void _Stl_mult64(const uint64 u, const uint64 v, 120 uint64& high, uint64& low) { 121 const uint64 low_mask = ULL(0xffffffff); 122 const uint64 u0 = u & low_mask; 123 const uint64 u1 = u >> 32; 124 const uint64 v0 = v & low_mask [all...] |
/external/stressapptest/src/ |
finelock_queue.cc | 38 uint64 queuesize, int64 pagesize) { 48 for (uint64 i = 0; i < q_size_; i++) { 150 uint64 i; 163 uint64 buckets[32]; 176 for (uint64 i = 0; i < q_size_; i++) { 203 bool err_log_callback(uint64 paddr, string *buf) { 223 bool FineLockPEQueue::ErrorLogCallback(uint64 paddr, string *message) { 236 uint64 addr_diff = paddr - pe.paddr; 242 uint64 new_paddr = os->VirtualToPhysical(vaddr + addr_diff); 270 bool FineLockPEQueue::GetPageFromPhysical(uint64 paddr [all...] |
/external/chromium/base/ |
rand_util_posix.cc | 45 uint64 RandUint64() { 46 uint64 number;
|
/external/chromium/chrome/common/ |
guid_unittest.cc | 13 uint64 bytes[] = { 0, 0 }; 19 uint64 bytes[] = { 0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL };
|
/external/chromium/net/spdy/ |
spdy_io_buffer.h | 49 uint64 position_; 51 static uint64 order_; // Maintains a FIFO order for equal priorities.
|
/external/chromium_org/base/ |
guid_unittest.cc | 13 uint64 bytes[] = { 0, 0 }; 19 uint64 bytes[] = { 0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL };
|
rand_util_posix.cc | 45 uint64 RandUint64() { 46 uint64 number;
|
/external/chromium_org/chromeos/dbus/ |
audio_node.cc | 21 uint64 id, 26 uint64 plugged_time)
|
/external/chromium_org/content/browser/download/ |
rate_estimator.h | 36 uint64 GetCountPerSecond() const; 37 uint64 GetCountPerSecond(base::TimeTicks now) const;
|
/external/chromium_org/content/browser/loader/ |
doomed_resource_handler.cc | 21 uint64 position, 22 uint64 size) {
|
doomed_resource_handler.h | 27 uint64 position, 28 uint64 size) OVERRIDE;
|
layered_resource_handler.h | 23 virtual bool OnUploadProgress(int request_id, uint64 position, 24 uint64 size) OVERRIDE;
|
sync_resource_handler.h | 37 uint64 position, 38 uint64 size) OVERRIDE;
|
/external/chromium_org/content/common/gpu/ |
gpu_memory_manager_unittest.cc | 17 uint64 operator()(content::GpuMemoryManagerClient* ptr) const { 18 return hash<uint64>()(reinterpret_cast<uint64>(ptr)); 74 uint64 total_gpu_memory_; 119 virtual bool GetTotalGpuMemory(uint64* bytes) OVERRIDE { 126 void SetTotalGpuMemory(uint64 bytes) { total_gpu_memory_ = bytes; } 147 uint64 BytesWhenVisible() const { 151 uint64 BytesWhenNotVisible() const { 158 static const uint64 kFrontbufferLimitForTest = 3; 214 uint64 CalcAvailableFromGpuTotal(uint64 bytes) [all...] |
/external/chromium_org/gpu/command_buffer/service/ |
async_pixel_transfer_manager_idle.h | 30 Task(uint64 transfer_id, const base::Closure& task); 34 uint64 transfer_id;
|
/external/chromium_org/media/base/ |
pipeline_status.h | 54 uint32 audio_bytes_decoded; // Should be uint64? 55 uint32 video_bytes_decoded; // Should be uint64?
|
/external/chromium_org/net/quic/crypto/ |
common_cert_set.h | 33 virtual base::StringPiece GetCert(uint64 hash, uint32 index) const = 0; 41 uint64* out_hash,
|
/external/chromium_org/net/ssl/ |
server_bound_cert_service.h | 121 uint64 requests() const { return requests_; } 122 uint64 cert_store_hits() const { return cert_store_hits_; } 123 uint64 inflight_joins() const { return inflight_joins_; } 124 uint64 workers_created() const { return workers_created_; } 154 uint64 requests_; 155 uint64 cert_store_hits_; 156 uint64 inflight_joins_; 157 uint64 workers_created_;
|
/external/chromium_org/net/tools/quic/ |
quic_epoll_clock_test.cc | 50 EXPECT_LE(static_cast<uint64>(start.ToTimeT()), now.ToUNIXSeconds()); 51 EXPECT_LE(now.ToUNIXSeconds(), static_cast<uint64>(end.ToTimeT()));
|
/external/chromium_org/third_party/re2/patches/ |
remove-valgrind-code.patch | 27 @@ -119,8 +121,6 @@ static inline uint64 Hash64StringWithSeed(const char* s, int len, uint32 seed) { 28 return ((uint64)x << 32) | y;
|
/external/lzma/C/Util/Lzma/ |
LzmaUtil.c | 56 UInt64 unpackSize)
58 int thereIsSize = (unpackSize != (UInt64)(Int64)-1);
110 UInt64 unpackSize;
125 unpackSize += (UInt64)header[LZMA_PROPS_SIZE + i] << (i * 8);
134 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, char *rs)
201 size_t t8 = sizeof(UInt64);
203 return PrintError(rs, "Incorrect UInt32 or UInt64");
220 UInt64 fileSize;
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zDecode.h | 52 UInt64 startPos,
53 const UInt64 *packSizes,
|
7zExtract.cpp | 25 UInt64 UnpackSize;
52 UInt64 importantTotalUnpacked = 0;
119 UInt64 unpackSize = folderInfo.GetUnpackSize();
131 // UInt64 unpackSize = _db.Files[startIndex + index].UnpackSize;
151 UInt64 totalPacked = 0;
152 UInt64 totalUnpacked = 0;
153 UInt64 curPacked, curUnpacked;
208 UInt64 folderStartPackPos = db.GetFolderStreamPos(folderIndex, 0);
|
/external/lzma/CPP/7zip/Common/ |
InBuffer.h | 23 UInt64 _processedSize;
77 UInt64 GetProcessedSize() const { return _processedSize + (_buffer - _bufferBase); }
|