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

1 2 3

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
binary.go 22 Uint32([]byte) uint32
25 PutUint32([]byte, uint32)
42 func (binaryLittleEndian) Uint32(b []byte) uint32 {
44 return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24
47 func (binaryLittleEndian) PutUint32(b []byte, v uint32) {
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
binary.go 22 Uint32([]byte) uint32
24 PutUint32([]byte, uint32)
41 func (binaryLittleEndian) Uint32(b []byte) uint32 {
43 return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24
46 func (binaryLittleEndian) PutUint32(b []byte, v uint32) {
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug296.go 43 type Uint32 uint32
45 func (x Uint32) m(a, b, c, d, e, f, g, h byte) {
46 check("Uint32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
67 Uint32(0x01020304),
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
binary.go 22 Uint32([]byte) uint32
25 PutUint32([]byte, uint32)
42 func (binaryLittleEndian) Uint32(b []byte) uint32 {
44 return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24
47 func (binaryLittleEndian) PutUint32(b []byte, v uint32) {
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
binary.go 22 Uint32([]byte) uint32
24 PutUint32([]byte, uint32)
41 func (binaryLittleEndian) Uint32(b []byte) uint32 {
43 return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24
46 func (binaryLittleEndian) PutUint32(b []byte, v uint32) {
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug296.go 43 type Uint32 uint32
45 func (x Uint32) m(a, b, c, d, e, f, g, h byte) {
46 check("Uint32", int64(x), 0x01020304, a, b, c, d, e, f, g, h)
67 Uint32(0x01020304),
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/Ia32/
VirtualMemory.h 31 UINT32 Present:1; // 0 = Not present in memory, 1 = Present in memory
32 UINT32 ReadWrite:1; // 0 = Read-Only, 1= Read/Write
33 UINT32 UserSupervisor:1; // 0 = Supervisor, 1=User
34 UINT32 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching
35 UINT32 CacheDisabled:1; // 0 = Cached, 1=Non-Cached
36 UINT32 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)
37 UINT32 MustBeZero:3; // Must Be Zero
38 UINT32 Available:3; // Available for use by system software
39 UINT32 PageTableBaseAddress:20; // Page Table Base Address
41 UINT32 Uint32;
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/Msr/
Xeon5600Msr.h 67 UINT32 AESConfiguration:2;
68 UINT32 Reserved1:30;
69 UINT32 Reserved2:32;
74 UINT32 Uint32;
133 UINT32 Maximum1C:8;
138 UINT32 Maximum2C:8;
143 UINT32 Maximum3C:8;
148 UINT32 Maximum4C:8;
153 UINT32 Maximum5C:8;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/SecPlatformInformation/
SecPlatformInformation.h 36 UINT32 Status : 2;
37 UINT32 Tested : 1;
38 UINT32 Reserved1 :13;
39 UINT32 VirtualMemoryUnavailable : 1;
40 UINT32 Ia32ExecutionUnavailable : 1;
41 UINT32 FloatingPointUnavailable : 1;
42 UINT32 MiscFeaturesUnavailable : 1;
43 UINT32 Reserved2 :12;
45 UINT32 Uint32;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
InternalBootScriptLib.h 62 UINT32 volatile *Uint32;
78 UINT32 TableLength; // Record the actual memory length
82 UINT32 BootTimeScriptLength; // Maintain boot time script length in LockBox after SmmReadyToLock in SMM.
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
PciExpress30.h 29 UINT32 PerformEqualization : 1;
30 UINT32 LinkEqualizationRequestInterruptEnable : 1;
31 UINT32 Reserved : 30;
33 UINT32 Uint32;
51 UINT32 LaneErrorStatus;
PciExpress31.h 29 UINT32 PciPmL12 : 1;
30 UINT32 PciPmL11 : 1;
31 UINT32 AspmL12 : 1;
32 UINT32 AspmL11 : 1;
33 UINT32 L1PmSubstates : 1;
34 UINT32 Reserved : 3;
35 UINT32 CommonModeRestoreTime : 8;
36 UINT32 TPowerOnScale : 2;
37 UINT32 Reserved2 : 1;
38 UINT32 TPowerOnValue : 5;
    [all...]
  /external/gemmlowp/internal/
allocator.h 46 enum class TypeId : std::uint8_t { Uint8, Int8, Uint16, Int16, Uint32, Int32 };
69 GEMMLOWP_REGISTER_TYPEID(std::uint32_t, Uint32)
  /prebuilts/go/darwin-x86/src/math/rand/
rand.go 84 // Uint32 returns a pseudo-random 32-bit value as a uint32.
85 func (r *Rand) Uint32() uint32 { return uint32(r.Int63() >> 31) }
130 max := int32((1 << 31) - 1 - (1<<31)%uint32(n))
148 v := r.Uint32()
150 low := uint32(prod)
151 if low < uint32(n) {
152 thresh := uint32(-n) % uint32(n
    [all...]
  /prebuilts/go/linux-x86/src/math/rand/
rand.go 84 // Uint32 returns a pseudo-random 32-bit value as a uint32.
85 func (r *Rand) Uint32() uint32 { return uint32(r.Int63() >> 31) }
130 max := int32((1 << 31) - 1 - (1<<31)%uint32(n))
148 v := r.Uint32()
150 low := uint32(prod)
151 if low < uint32(n) {
152 thresh := uint32(-n) % uint32(n
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/FrameBufferBltLib/
FrameBufferBltLib.c 58 UINT32 *Masks;
59 UINT32 MergedMasks;
62 Masks = (UINT32*) BitMask;
73 MergedMasks = (UINT32) (MergedMasks | Masks[Loop]);
77 MergedMasks = (UINT32) (MergedMasks | Masks[3]);
188 UINT32 Uint32;
216 Uint32 = *(UINT32*) Color;
218 (UINT32) (
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/
SecPlatformInformation.h 46 UINT32 Status : 2;
52 UINT32 Tested : 1;
56 UINT32 Reserved1 :13;
61 UINT32 VirtualMemoryUnavailable : 1;
66 UINT32 Ia32ExecutionUnavailable : 1;
71 UINT32 FloatingPointUnavailable : 1;
80 UINT32 MiscFeaturesUnavailable : 1;
84 UINT32 Reserved2 :12;
86 UINT32 Uint32;
    [all...]
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/Include/Register/
IoApic.h 46 UINT32 Reserved0:24;
47 UINT32 Identification:4;
48 UINT32 Reserved1:4;
50 UINT32 Uint32;
55 UINT32 Version:8;
56 UINT32 Reserved0:8;
57 UINT32 MaximumRedirectionEntry:8;
58 UINT32 Reserved1:8;
60 UINT32 Uint32;
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/
Microcode.h 31 UINT32 Year:16;
32 UINT32 Day:8;
33 UINT32 Month:8;
35 UINT32 Uint32;
43 UINT32 Stepping:4;
44 UINT32 Model:4;
45 UINT32 Family:4;
46 UINT32 Type:2;
47 UINT32 Reserved1:2;
    [all...]
  /external/golang-protobuf/proto/
lib.go 314 uint32s []uint32
389 // Uint32 is a helper routine that allocates a new uint32 value
391 func Uint32(v uint32) *uint32 {
640 case reflect.Uint32:
641 u := new(uint32)
643 *u = dv.(uint32)
645 *(fptr.(**uint32)) =
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/binary/
binary.go 35 Uint32([]byte) uint32
38 PutUint32([]byte, uint32)
62 func (littleEndian) Uint32(b []byte) uint32 {
64 return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24
67 func (littleEndian) PutUint32(b []byte, v uint32) {
466 func (d *decoder) uint32() uint32 { func
472 func (e *encoder) uint32(x uint32) { func
    [all...]
  /prebuilts/go/linux-x86/src/encoding/binary/
binary.go 35 Uint32([]byte) uint32
38 PutUint32([]byte, uint32)
62 func (littleEndian) Uint32(b []byte) uint32 {
64 return uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24
67 func (littleEndian) PutUint32(b []byte, v uint32) {
466 func (d *decoder) uint32() uint32 { func
472 func (e *encoder) uint32(x uint32) { func
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
FrameworkMpService.h 125 UINT32 Status:2;
126 UINT32 Tested:1;
127 UINT32 Reserved1:13;
128 UINT32 VirtualMemoryUnavailable:1;
129 UINT32 Ia32ExecutionUnavailable:1;
130 UINT32 FloatingPointUnavailable:1;
131 UINT32 MiscFeaturesUnavailable:1;
132 UINT32 Reserved2:12;
137 UINT32 Uint32;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/
UsbMouseAbsolutePointer.h 96 UINT32 Uint32;
425 IN UINT32 Result
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/
UsbMouse.h 96 UINT32 Uint32;
425 IN UINT32 Result

Completed in 605 milliseconds

1 2 3