HomeSort by relevance Sort by last modified time
    Searched full:uint64 (Results 101 - 125 of 1490) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/lzma/CPP/7zip/Common/
ProgressUtils.cpp 21 STDMETHODIMP CLocalProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
23 UInt64 inSizeNew = InSize, outSizeNew = OutSize;
FileStreams.h 29 UInt64 VirtPos;
30 UInt64 PhyPos;
31 UInt64 BufferStartPos;
61 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
63 STDMETHOD(GetSize)(UInt64 *size);
115 UInt64 ProcessedSize;
129 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
130 STDMETHOD(SetSize)(UInt64 newSize);
LimitedStreams.cpp 11 UInt32 sizeToRead = (UInt32)MyMin((_size - _pos), (UInt64)size);
31 UInt64 rem = _size - _virtPos;
34 UInt64 newPos = _startOffset + _virtPos;
48 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
75 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock;
84 UInt64 rem = Size - _virtPos;
99 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
101 UInt64 newVirtPos = offset;
118 HRESULT CreateLimitedInStream(IInStream *inStream, UInt64 pos, UInt64 size, ISequentialInStream **resStream)
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
IFileExtractCallback.h 26 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize,
27 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
29 STDMETHOD(PrepareOperation)(const wchar_t *name, bool isFolder, Int32 askExtractMode, const UInt64 *position) PURE;
  /external/chromium_org/webkit/browser/blob/
blob_storage_controller.h 48 uint64 offset,
49 uint64 length);
51 const base::FilePath& file_path, uint64 offset,
52 uint64 length,
56 const GURL& url, uint64 offset, uint64 length,
  /external/chromium/base/
rand_util_win.cc 24 uint64 RandUint64() {
27 return (static_cast<uint64>(first_half) << 32) + second_half;
  /external/chromium_org/base/
rand_util_win.cc 25 uint64 RandUint64() {
28 return (static_cast<uint64>(first_half) << 32) + second_half;
sys_byteorder.h 60 inline uint64 ByteSwap(uint64 x) {
88 inline uint64 ByteSwapToLE64(uint64 x) {
112 inline uint64 NetToHost64(uint64 x) {
136 inline uint64 HostToNet64(uint64 x) {
  /external/chromium_org/content/common/gpu/
gpu_memory_manager_client.h 42 virtual bool GetTotalGpuMemory(uint64* bytes) = 0;
90 uint64 bytes_nicetohave_limit_low_;
91 uint64 bytes_nicetohave_limit_high_;
95 uint64 bytes_allocation_when_visible_;
96 uint64 bytes_allocation_when_nonvisible_;
100 uint64 bytes_allocation_ideal_nicetohave_;
101 uint64 bytes_allocation_ideal_required_;
102 uint64 bytes_allocation_ideal_minimum_;
  /external/chromium_org/net/base/
int128.cc 10 static_cast<uint64>(GG_LONGLONG(0xFFFFFFFFFFFFFFFF)),
11 static_cast<uint64>(GG_LONGLONG(0xFFFFFFFFFFFFFFFF))
  /external/lzma/CPP/7zip/Archive/Common/
OutStreamWithCRC.h 17 UInt64 _size;
32 UInt64 GetSize() const { return _size; }
  /external/lzma/CPP/7zip/Compress/
Lzma2Encoder.h 26 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
LzmaEncoder.h 26 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
  /external/chromium_org/chrome/common/metrics/proto/
perf_data.proto 35 optional uint64 config = 3;
40 optional uint64 sample_period = 4;
45 optional uint64 sample_freq = 5;
49 optional uint64 sample_type = 6;
53 optional uint64 read_format = 7;
126 optional uint64 bp_addr = 31;
129 optional uint64 config1 = 32;
132 optional uint64 bp_len = 33;
135 optional uint64 config2 = 34;
138 optional uint64 branch_sample_type = 35
    [all...]
  /external/chromium_org/chrome/browser/devtools/adb/
android_rsa.cc 39 void ExtendedEuclid(uint64 a, uint64 b, uint64 *x, uint64 *y, uint64 *d) {
40 uint64 x1 = 0, x2 = 1, y1 = 1, y2 = 0;
43 uint64 q = a / b;
44 uint64 r = a % b;
60 uint32 ModInverse(uint64 a, uint64 m
    [all...]
  /external/lzma/C/
XzIn.c 44 { UInt64 newSize = size + (val); if (newSize < size) return XZ_SIZE_OVERFLOW; size = newSize; }
46 UInt64 Xz_GetUnpackSize(const CXzStream *p)
48 UInt64 size = 0;
55 UInt64 Xz_GetPackSize(const CXzStream *p)
57 UInt64 size = 0;
60 ADD_SIZE_CHECH(size, (p->blocks[i].totalSize + 3) & ~(UInt64)3);
85 UInt64 numBlocks64;
116 static SRes Xz_ReadIndex(CXzStream *p, ILookInStream *stream, UInt64 indexSize, ISzAlloc *alloc)
143 UInt64 indexSize;
198 indexSize = ((UInt64)GetUi32(buf + 4) + 1) << 2;
    [all...]
  /external/openfst/src/include/fst/
test-properties.h 39 inline uint64 KnownProperties(uint64 props) {
46 inline bool CompatProperties(uint64 props1, uint64 props2) {
47 uint64 known_props1 = KnownProperties(props1);
48 uint64 known_props2 = KnownProperties(props2);
49 uint64 known_props = known_props1 & known_props2;
50 uint64 incompat_props = (props1 & known_props) ^ (props2 & known_props);
52 uint64 prop = 1;
76 uint64 ComputeProperties(const Fst<Arc> &fst, uint64 mask, uint64 *known
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
test-properties.h 37 inline uint64 KnownProperties(uint64 props) {
44 inline bool CompatProperties(uint64 props1, uint64 props2) {
45 uint64 known_props1 = KnownProperties(props1);
46 uint64 known_props2 = KnownProperties(props2);
47 uint64 known_props = known_props1 & known_props2;
48 uint64 incompat_props = (props1 & known_props) ^ (props2 & known_props);
50 uint64 prop = 1;
74 uint64 ComputeProperties(const Fst<Arc> &fst, uint64 mask, uint64 *known
    [all...]
  /external/chromium_org/base/third_party/symbolize/
utilities.h 9 typedef uint64_t uint64; typedef
  /external/chromium_org/net/quic/
quic_stats.h 30 uint64 bytes_sent; // includes retransmissions, fec.
33 uint64 bytes_received; // includes duplicate data for a stream, fec.
36 uint64 bytes_retransmitted;
44 uint64 estimated_bandwidth;
  /external/chromium_org/sync/internal_api/public/base/
node_ordinal.cc 12 uint64 y = static_cast<uint64>(x);
30 uint64 y = 0;
39 y |= static_cast<uint64>(byte) << (i * 8);
  /external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
random.cc 13 uint64 Random::RandUint64() {
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWriteFontFileStream.h 59 UINT64 fileOffset,
60 UINT64 fragmentSize,
64 virtual HRESULT STDMETHODCALLTYPE GetFileSize(UINT64* fileSize);
65 virtual HRESULT STDMETHODCALLTYPE GetLastWriteTime(UINT64* lastWriteTime);
  /external/chromium_org/third_party/smhasher/src/
City.h 53 typedef uint64_t uint64; typedef
54 typedef std::pair<uint64, uint64> uint128;
56 inline uint64 Uint128Low64(const uint128& x) { return x.first; }
57 inline uint64 Uint128High64(const uint128& x) { return x.second; }
60 uint64 CityHash64(const char *buf, size_t len);
64 uint64 CityHash64WithSeed(const char *buf, size_t len, uint64 seed);
68 uint64 CityHash64WithSeeds(const char *buf, size_t len,
69 uint64 seed0, uint64 seed1)
    [all...]
CityTest.cpp 5 *(uint64*)out = CityHash64WithSeed((const char *)key,len,seed);

Completed in 944 milliseconds

1 2 3 45 6 7 8 91011>>