HomeSort by relevance Sort by last modified time
    Searched defs:Uint64 (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/math/rand/
zipf.go 39 func NewZipf(r *Rand, s float64, v float64, imax uint64) *Zipf {
56 // Uint64 returns a value drawn from the Zipf distribution described
58 func (z *Zipf) Uint64() uint64 {
76 return uint64(k)
rng.go 231 return int64(rng.Uint64() & _MASK)
234 // Uint64 returns a non-negative pseudo-random 64-bit integer as an uint64.
235 func (rng *rngSource) Uint64() uint64 {
248 return uint64(x)
rand.go 28 // uniformly-distributed pseudo-random uint64 values in
31 // then r.Uint64 returns the result of one call to s.Uint64
35 Uint64() uint64
87 // Uint64 returns a pseudo-random 64-bit value as a uint64.
88 func (r *Rand) Uint64() uint64 {
90 return r.s64.Uint64()
    [all...]
  /prebuilts/go/linux-x86/src/math/rand/
zipf.go 39 func NewZipf(r *Rand, s float64, v float64, imax uint64) *Zipf {
56 // Uint64 returns a value drawn from the Zipf distribution described
58 func (z *Zipf) Uint64() uint64 {
76 return uint64(k)
rng.go 231 return int64(rng.Uint64() & _MASK)
234 // Uint64 returns a non-negative pseudo-random 64-bit integer as an uint64.
235 func (rng *rngSource) Uint64() uint64 {
248 return uint64(x)
rand.go 28 // uniformly-distributed pseudo-random uint64 values in
31 // then r.Uint64 returns the result of one call to s.Uint64
35 Uint64() uint64
87 // Uint64 returns a pseudo-random 64-bit value as a uint64.
88 func (r *Rand) Uint64() uint64 {
90 return r.s64.Uint64()
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
binary.go 23 Uint64([]byte) uint64
26 PutUint64([]byte, uint64)
55 func (binaryLittleEndian) Uint64(b []byte) uint64 {
57 return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
58 uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<5
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
binary.go 25 Uint64([]byte) uint64
54 func (binaryLittleEndian) Uint64(b []byte) uint64 {
56 return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
57 uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<5
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug296.go 55 type Uint64 uint64
57 func (x Uint64) m(a, b, c, d, e, f, g, h byte) {
58 check("Uint64", int64(x), 0x0102030405060708, a, b, c, d, e, f, g, h)
69 Uint64(0x0102030405060708),
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
binary.go 23 Uint64([]byte) uint64
26 PutUint64([]byte, uint64)
55 func (binaryLittleEndian) Uint64(b []byte) uint64 {
57 return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
58 uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<5
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
binary.go 25 Uint64([]byte) uint64
54 func (binaryLittleEndian) Uint64(b []byte) uint64 {
56 return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
57 uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<5
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug296.go 55 type Uint64 uint64
57 func (x Uint64) m(a, b, c, d, e, f, g, h byte) {
58 check("Uint64", int64(x), 0x0102030405060708, a, b, c, d, e, f, g, h)
69 Uint64(0x0102030405060708),
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/Msr/
Xeon5600Msr.h 43 Msr.Uint64 = AsmReadMsr64 (MSR_XEON_5600_FEATURE_CONFIG);
44 AsmWriteMsr64 (MSR_XEON_5600_FEATURE_CONFIG, Msr.Uint64);
78 UINT64 Uint64;
91 UINT64 Msr;
115 Msr.Uint64 = AsmReadMsr64 (MSR_XEON_5600_TURBO_RATIO_LIMIT);
164 UINT64 Uint64;
177 UINT64 Msr;
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/
capitalize.cpp 25 bool Uint64(uint64_t u) { return out_.Uint64(u); }
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
simplereader.cpp 13 bool Uint64(uint64_t u) { cout << "Uint64(" << u << ")" << endl; return true; }
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenPage/
VirtualMemory.h 35 UINT64 Present:1; // 0 = Not present in memory, 1 = Present in memory
36 UINT64 ReadWrite:1; // 0 = Read-Only, 1= Read/Write
37 UINT64 UserSupervisor:1; // 0 = Supervisor, 1=User
38 UINT64 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching
39 UINT64 CacheDisabled:1; // 0 = Cached, 1=Non-Cached
40 UINT64 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)
41 UINT64 Reserved:1; // Reserved
42 UINT64 MustBeZero:2; // Must Be Zero
43 UINT64 Available:3; // Available for use by system software
44 UINT64 PageTableBaseAddress:40; // Page Table Base Address
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/X64/
VirtualMemory.h 33 UINT64 Present:1; // 0 = Not present in memory, 1 = Present in memory
34 UINT64 ReadWrite:1; // 0 = Read-Only, 1= Read/Write
35 UINT64 UserSupervisor:1; // 0 = Supervisor, 1=User
36 UINT64 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching
37 UINT64 CacheDisabled:1; // 0 = Cached, 1=Non-Cached
38 UINT64 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)
39 UINT64 Reserved:1; // Reserved
40 UINT64 MustBeZero:2; // Must Be Zero
41 UINT64 Available:3; // Available for use by system software
42 UINT64 PageTableBaseAddress:40; // Page Table Base Address
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
X86Thunk.c 43 UINT64 Uint64;
  /device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/X64/
DispatchExecute.c 38 UINT64 Uint64;
71 IN UINT64 Function,
72 IN UINT64 Param1,
73 IN UINT64 Param2,
89 IN UINT64 Function,
90 IN UINT64 Param1,
91 IN UINT64 Param2
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/BaseFspApiLib/X64/
DispatchExecute.c 38 UINT64 Uint64;
71 IN UINT64 Function,
72 IN UINT64 Param1,
73 IN UINT64 Param2,
88 IN UINT64 Function,
89 IN UINT64 Param1
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
InternalBootScriptLib.h 63 UINT64 volatile *Uint64;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/CapsulePei/
Capsule.h 54 UINT64 Present:1; // 0 = Not present in memory, 1 = Present in memory
55 UINT64 ReadWrite:1; // 0 = Read-Only, 1= Read/Write
56 UINT64 UserSupervisor:1; // 0 = Supervisor, 1=User
57 UINT64 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching
58 UINT64 CacheDisabled:1; // 0 = Cached, 1=Non-Cached
59 UINT64 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)
60 UINT64 Reserved:1; // Reserved
61 UINT64 MustBeZero:2; // Must Be Zero
62 UINT64 Available:3; // Available for use by system software
63 UINT64 PageTableBaseAddress:40; // Page Table Base Address
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
prettywriter.h 70 bool Uint64(uint64_t u64) { PrettyPrefix(kNumberType); return Base::WriteUint64(u64); }
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/BootScriptSaveOnS3SaveStateThunk/X64/
DispatchExecute.c 35 UINT64 Uint64;
49 UINT64 Uint64;
86 IN UINT64 Function,
87 IN UINT64 Param1,
88 IN UINT64 Param2,
105 IN UINT64 Function,
106 IN UINT64 Param1,
107 IN UINT64 Param2
    [all...]
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/Include/Register/
Hpet.h 54 UINT64 Uint64;
67 UINT64 Uint64;
90 UINT64 Uint64;
101 UINT64 Uint64;

Completed in 1372 milliseconds

1 2 3 4