/external/qemu/gdb-xml/ |
power64-core.xml | 10 <reg name="r0" bitsize="64" type="uint64"/> 11 <reg name="r1" bitsize="64" type="uint64"/> 12 <reg name="r2" bitsize="64" type="uint64"/> 13 <reg name="r3" bitsize="64" type="uint64"/> 14 <reg name="r4" bitsize="64" type="uint64"/> 15 <reg name="r5" bitsize="64" type="uint64"/> 16 <reg name="r6" bitsize="64" type="uint64"/> 17 <reg name="r7" bitsize="64" type="uint64"/> 18 <reg name="r8" bitsize="64" type="uint64"/> 19 <reg name="r9" bitsize="64" type="uint64"/> [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
properties.h | 38 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 kNoEpsilons = 0x0000000000800000ULL [all...] |
properties.cpp | 34 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 outprops = kAccessible [all...] |
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...] |
rational.h | 64 uint64 props1 = fst1.Properties(kFstProperties, false); 65 uint64 props2 = fst2.Properties(kFstProperties, false); 86 uint64 props1 = fst1.Properties(kFstProperties, false); 87 uint64 props2 = fst2.Properties(kFstProperties, false); 109 uint64 props = fst.Properties(kFstProperties, false); 137 uint64 props1 = Properties(); 138 uint64 props2 = fst.Properties(kFstProperties, false); 153 uint64 props1 = Properties(); 154 uint64 props2 = fst.Properties(kFstProperties, false); 169 uint64 props = Properties() [all...] |
difference.h | 27 template <uint64 T = 0> 59 uint64 props1 = fst1.Properties(kFstProperties, false); 60 uint64 props2 = fst2.Properties(kFstProperties, false); 65 template <uint64 T> 73 uint64 props1 = fst1.Properties(kFstProperties, false); 74 uint64 props2 = fst2.Properties(kFstProperties, false);
|
intersect.h | 26 template <uint64 T = 0> 53 uint64 props1 = fst1.Properties(kFstProperties, false); 54 uint64 props2 = fst2.Properties(kFstProperties, false); 59 template <uint64 T> 65 uint64 props1 = fst1.Properties(kFstProperties, false); 66 uint64 props2 = fst2.Properties(kFstProperties, false);
|
arcsort.h | 34 // Properties(uint64) that specifies the known properties of the 46 uint64 props = fst->Properties(kFstProperties, false); 94 uint64 props = fst_->Properties(kCopyProperties, false); 174 // also have a member Properties(uint64) that specifies the known 221 virtual uint64 Properties(uint64 mask, bool test) const { 223 uint64 known, test = TestProperties(*this, mask, &known); 285 uint64 Properties(uint64 props) const { 298 uint64 Properties(uint64 props) const [all...] |
/external/bluetooth/bluez/test/ |
service-record.dtd | 3 <!ELEMENT attribute (sequence|alternate|text|url|uuid|boolean|uint8|uint16|uint32|uint64|nil)+> 6 <!ELEMENT sequence (sequence|alternate|text|url|uuid|boolean|uint8|uint16|uint32|uint64|uint128|int8|int16|int32|int64|int128|nil)+> 8 <!ELEMENT alternate (sequence|alternate|text|url|uuid|boolean|uint8|uint16|uint32|uint64|uint128|int8|int16|int32|int64|int128|nil)+> 38 <!ELEMENT uint64 EMPTY> 39 <!ATTLIST uint64 value CDATA #REQUIRED> 40 <!ATTLIST uint64 name CDATA>
|
/external/chromium/third_party/libjingle/source/talk/base/ |
byteorder.h | 66 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>(Get8(memory, 7)) << 0) [all...] |
/external/chromium/base/ |
rand_util.cc | 19 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) {
|
rand_util_win.cc | 24 uint64 RandUint64() { 27 return (static_cast<uint64>(first_half) << 32) + second_half;
|
rand_util.h | 15 BASE_API uint64 RandUint64(); 25 BASE_API uint64 RandGenerator(uint64 max);
|
/hardware/ril/mock-ril/src/proto/ |
msgheader.proto | 12 optional uint64 token = 4;
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
random_number.h | 45 uint64 supremum; 46 uint64 RAND_SUP; 51 uint64 cache; 57 scale_down(uint64 x, 59 uint64 /*supremum*/, double supremum_reciprocal) 61 uint64 supremum, double /*supremum_reciprocal*/) 84 random_number(uint32 seed, uint64 supremum = 0x100000000ULL) 99 operator()(uint64 local_supremum) 115 cache |= ((uint64(mt())) << bits_left);
|
/external/chromium/chrome/common/ |
guid_posix.cc | 13 uint64 sixteen_bytes[2] = { base::RandUint64(), base::RandUint64() }; 19 std::string RandomDataToGUIDString(const uint64 bytes[2]) {
|
/external/qemu/distrib/sdl-1.2.12/src/timer/macos/ |
FastTimes.h | 20 extern UInt64 FastMicroseconds(void); 21 extern UInt64 FastMilliseconds(void);
|
/external/chromium/android/jni/ |
platform_file_jni.h | 12 uint64 contentUrlSize(const FilePath& name);
|
/external/libffi/src/sh64/ |
ffi.c | 50 else if (arg->size <= sizeof (UINT64)) 74 argp += sizeof (UINT64); 96 *(UINT64 *) argp = (UINT64) *(UINT8 *)(*p_argv); 104 *(UINT64 *) argp = (UINT64) *(UINT16 *)(*p_argv); 114 argp += sizeof (UINT64); 129 *(UINT64 *) argp = (UINT64) *(UINT32 *) (*p_argv); 136 argp += sizeof (UINT64); [all...] |
/external/chromium/net/base/ |
upload_data.h | 59 uint64 file_range_offset() const { return file_range_offset_; } 60 uint64 file_range_length() const { return file_range_length_; } 80 uint64 offset, uint64 length, 110 uint64 GetContentLength(); 120 void SetContentLength(uint64 content_length) { 128 uint64 file_range_offset_; 129 uint64 file_range_length_; 135 uint64 content_length_; 150 uint64 offset, uint64 length [all...] |
dnsrr_resolver.h | 87 uint64 requests() const { return requests_; } 88 uint64 cache_hits() const { return cache_hits_; } 89 uint64 inflight_joins() const { return inflight_joins_; } 125 uint64 requests_; 126 uint64 cache_hits_; 127 uint64 inflight_joins_;
|
/external/protobuf/python/google/protobuf/internal/ |
wire_format.py | 139 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 <= 0x3ffffffffff: return [all...] |
/external/chromium/chrome/browser/metrics/ |
thread_watcher_unittest.cc | 56 uint64 ping_sent_; 57 uint64 pong_received_; 58 uint64 success_response_; 59 uint64 failed_response_; 61 uint64 saved_ping_sequence_number_; 128 void OnPongMessage(uint64 ping_sequence_number) { 134 bool OnCheckResponsiveness(uint64 ping_sequence_number) { 324 EXPECT_GT(io_watcher_->ping_sent_, static_cast<uint64>(0)); 325 EXPECT_GT(io_watcher_->pong_received_, static_cast<uint64>(0)); 328 EXPECT_GE(io_watcher_->saved_ping_sequence_number_, static_cast<uint64>(0)) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/timer/wince/ |
SDL_systimer.c | 34 static Uint64 start_date; 35 static Uint64 start_ticks; 37 static Uint64 wce_ticks(void) 39 return((Uint64)GetTickCount()); 42 static Uint64 wce_date(void) 47 Uint64 itime;
|
/external/chromium/net/spdy/ |
spdy_io_buffer.cc | 11 uint64 SpdyIOBuffer::order_ = 0;
|