Searched refs:uint64 (Results 1 - 25 of 315) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Drand_util.h15 BASE_API uint64 RandUint64();
25 BASE_API uint64 RandGenerator(uint64 max);
H A Drand_util_win.cc24 uint64 RandUint64() {
27 return (static_cast<uint64>(first_half) << 32) + second_half;
H A Drand_util.cc19 uint64 range = static_cast<uint64>(max) - min + 1;
33 uint64 random_bits = base::RandUint64() & ((GG_UINT64_C(1) << kBits) - 1);
39 uint64 RandGenerator(uint64 max) {
/external/stressapptest/src/
H A Dadler32memcpy.h32 void Set(uint64 a1, uint64 a2, uint64 b1, uint64 b2);
36 uint64 a1_, a2_, b1_, b2_;
42 bool CalculateAdlerChecksum(uint64 *data64, unsigned int size_in_bytes,
46 bool AdlerMemcpyC(uint64 *dstmem64, uint64 *srcmem64,
51 bool AdlerMemcpyWarmC(uint64 *dstmem64, uint64 *srcmem6
[all...]
H A Dfinelock_queue.h35 FineLockPEQueue(uint64 queuesize, int64 pagesize);
49 bool GetPageFromPhysical(uint64 paddr, struct page_entry *pe);
52 bool ErrorLogCallback(uint64 paddr, string *buf);
56 uint64 GetRandom64();
57 uint64 GetRandom64FromSlot(int slot);
61 return index >= 0 && static_cast<uint64>(index) < q_size_;
90 uint64 q_size_; // Size of the queue.
112 uint64 rand_seed_[4]; // Random number state for 4 generators.
H A Dqueue.h40 uint64 offset;
42 uint64 paddr;
46 uint64 ts; // Timestamp of the last read from this page.
64 explicit PageEntryQueue(uint64 queuesize);
H A Dadler32memcpy.cc78 void AdlerChecksum::Set(uint64 a1, uint64 a2, uint64 b1, uint64 b2) {
86 bool CalculateAdlerChecksum(uint64 *data64, unsigned int size_in_bytes,
97 uint64 a1 = 1;
98 uint64 a2 = 1;
99 uint64 b1 = 0;
100 uint64 b2 = 0;
124 bool AdlerMemcpyC(uint64 *dstmem6
[all...]
/external/openfst/src/include/fst/
H A Dproperties.h44 const uint64 kExpanded = 0x0000000000000001ULL;
47 const uint64 kMutable = 0x0000000000000002ULL;
50 const uint64 kError = 0x0000000000000004ULL;
64 const uint64 kAcceptor = 0x0000000000010000ULL;
66 const uint64 kNotAcceptor = 0x0000000000020000ULL;
69 const uint64 kIDeterministic = 0x0000000000040000ULL;
71 const uint64 kNonIDeterministic = 0x0000000000080000ULL;
74 const uint64 kODeterministic = 0x0000000000100000ULL;
76 const uint64 kNonODeterministic = 0x0000000000200000ULL;
79 const uint64 kEpsilon
[all...]
H A Dweight.h95 const uint64 kLeftSemiring = 0x0000000000000001ULL;
98 const uint64 kRightSemiring = 0x0000000000000002ULL;
100 const uint64 kSemiring = kLeftSemiring | kRightSemiring;
103 const uint64 kCommutative = 0x0000000000000004ULL;
106 const uint64 kIdempotent = 0x0000000000000008ULL;
109 const uint64 kPath = 0x0000000000000010ULL;
H A Dtest-properties.h39 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 ComputePropertie
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dproperties.h38 const uint64 kExpanded = 0x0000000000000001ULL;
41 const uint64 kMutable = 0x0000000000000002ULL;
55 const uint64 kAcceptor = 0x0000000000010000ULL;
57 const uint64 kNotAcceptor = 0x0000000000020000ULL;
60 const uint64 kIDeterministic = 0x0000000000040000ULL;
62 const uint64 kNonIDeterministic = 0x0000000000080000ULL;
65 const uint64 kODeterministic = 0x0000000000100000ULL;
67 const uint64 kNonODeterministic = 0x0000000000200000ULL;
70 const uint64 kEpsilons = 0x0000000000400000ULL;
72 const uint64 kNoEpsilon
[all...]
H A Dweight.h87 const uint64 kLeftSemiring = 0x0000000000000001ULL;
90 const uint64 kRightSemiring = 0x0000000000000002ULL;
92 const uint64 kSemiring = kLeftSemiring | kRightSemiring;
95 const uint64 kCommutative = 0x0000000000000004ULL;
98 const uint64 kIdempotent = 0x0000000000000008ULL;
101 const uint64 kPath = 0x0000000000000010ULL;
126 uint64 props = kIdempotent | kLeftSemiring | kRightSemiring;
H A Dproperties.cpp34 uint64 ClosureProperties(uint64 inprops, bool star, bool delayed) {
35 uint64 outprops = (kAcceptor | kUnweighted | kAccessible) & inprops;
47 uint64 ComplementProperties(uint64 inprops) {
48 uint64 outprops = kAcceptor | kUnweighted | kNoEpsilons |
58 uint64 ComposeProperties(uint64 inprops1, uint64 inprops2) {
59 uint64 outprop
[all...]
/external/openfst/src/extensions/const/
H A Dconst64-fst.cc26 // Register ConstFst for common arcs types with uint64 size type
27 static FstRegisterer< ConstFst<StdArc, uint64> >
29 static FstRegisterer< ConstFst<LogArc, uint64> >
31 static FstRegisterer< ConstFst<Log64Arc, uint64> >
/external/qemu/target-i386/
H A Dhax-interface.h35 uint64 fpu_ip;
43 uint64 fpu_dp;
54 uint64 entry;
55 uint64 value;
90 uint64 base;
115 uint64 _regs[16];
124 uint64 _rax;
133 uint64 _rcx;
142 uint64 _rdx;
151 uint64 _rb
[all...]
/external/chromium/chrome/common/
H A Dguid_posix.cc13 uint64 sixteen_bytes[2] = { base::RandUint64(), base::RandUint64() };
19 std::string RandomDataToGUIDString(const uint64 bytes[2]) {
H A Dguid.h27 std::string RandomDataToGUIDString(const uint64 bytes[2]);
/external/openfst/src/extensions/compact/
H A Dcompact64_acceptor-fst.cc27 CompactFst<StdArc, AcceptorCompactor<StdArc>, uint64> >
30 CompactFst<LogArc, AcceptorCompactor<LogArc>, uint64> >
H A Dcompact64_string-fst.cc27 CompactFst<StdArc, StringCompactor<StdArc>, uint64> >
30 CompactFst<LogArc, StringCompactor<LogArc>, uint64> >
H A Dcompact64_unweighted-fst.cc27 CompactFst<StdArc, UnweightedCompactor<StdArc>, uint64> >
30 CompactFst<LogArc, UnweightedCompactor<LogArc>, uint64> >
H A Dcompact64_unweighted_acceptor-fst.cc27 CompactFst<StdArc, UnweightedAcceptorCompactor<StdArc>, uint64> >
30 CompactFst<LogArc, UnweightedAcceptorCompactor<LogArc>, uint64> >
H A Dcompact64_weighted_string-fst.cc27 CompactFst<StdArc, WeightedStringCompactor<StdArc>, uint64> >
30 CompactFst<LogArc, WeightedStringCompactor<LogArc>, uint64> >
/external/openfst/src/lib/
H A Dproperties.cc38 uint64 ClosureProperties(uint64 inprops, bool star, bool delayed) {
39 uint64 outprops = (kError | kAcceptor | kUnweighted | kAccessible) & inprops;
51 uint64 ComplementProperties(uint64 inprops) {
52 uint64 outprops = kAcceptor | kUnweighted | kNoEpsilons |
63 uint64 ComposeProperties(uint64 inprops1, uint64 inprops2) {
64 uint64 outprop
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dbyteorder.h66 inline void SetBE64(void* memory, uint64 v) {
86 inline uint64 GetBE64(const void* memory) {
87 return (static_cast<uint64>(Get8(memory, 0)) << 56)
88 | (static_cast<uint64>(Get8(memory, 1)) << 48)
89 | (static_cast<uint64>(Get8(memory, 2)) << 40)
90 | (static_cast<uint64>(Get8(memory, 3)) << 32)
91 | (static_cast<uint64>(Get8(memory, 4)) << 24)
92 | (static_cast<uint64>(Get8(memory, 5)) << 16)
93 | (static_cast<uint64>(Get8(memory, 6)) << 8)
94 | (static_cast<uint64>(Get
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Dwire_format.py139 def UInt64ByteSize(field_number, uint64):
140 return TagByteSize(field_number) + _VarUInt64ByteSizeNoTag(uint64)
232 def _VarUInt64ByteSizeNoTag(uint64):
235 uint64 must be unsigned.
237 if uint64 <= 0x7f: return 1
238 if uint64 <= 0x3fff: return 2
239 if uint64 <= 0x1fffff: return 3
240 if uint64 <= 0xfffffff: return 4
241 if uint64 <= 0x7ffffffff: return 5
242 if uint64 <
[all...]

Completed in 5537 milliseconds

1234567891011>>