/prebuilts/go/darwin-x86/test/ken/ |
modconst.go | 17 a := int64(rand.Uint32()) 18 a = (a << 32) | int64(rand.Uint32()) 114 a := uint64(rand.Uint32()) 115 a = (a << 32) | uint64(rand.Uint32()) 173 a := int32(rand.Uint32()) 266 func u32rand() uint32 { 267 a := uint32(rand.Uint32()) 272 func u32test(a, b, c uint32) { 281 var a, b uint32 [all...] |
/prebuilts/go/linux-x86/pkg/linux_amd64/hash/ |
fnv.a | 10 type @"hash".Hash32 interface { BlockSize() (? int); Reset(); Size() (? int); Sum(@"hash".b []byte) (? []byte); Sum32() (? uint32); Write(@"io".p []byte) (@"io".n int, @"io".err error) } 17 type @"".sum32 uint32 21 func (@"".s·2 *@"".sum32 "esc:0x1") Sum (@"".in·3 []byte "esc:0x1a") (? []byte) { var @"".v·4 uint32; @"".v·4 = uint32(*@"".s·2); return append(@"".in·3, byte(@"".v·4 >> 0x18), byte(@"".v·4 >> 0x10), byte(@"".v·4 >> 0x8), byte(@"".v·4)) } 22 func (@"".s·2 *@"".sum32 "esc:0x1") Sum32 () (? uint32) { return uint32(*@"".s·2) } 25 type @"".sum32a uint32 29 func (@"".s·2 *@"".sum32a "esc:0x1") Sum (@"".in·3 []byte "esc:0x1a") (? []byte) { var @"".v·4 uint32; @"".v·4 = uint32(*@"".s·2); return append(@"".in·3, byte(@"".v·4 >> 0x18), byte(@"".v·4 >> 0x10), byte(@"".v·4 >> 0x8), byte(@"".v·4)) } 30 func (@"".s·2 *@"".sum32a "esc:0x1") Sum32 () (? uint32) { return uint32(*@"".s·2) [all...] |
/prebuilts/go/linux-x86/pkg/linux_amd64_race/hash/ |
fnv.a | 10 type @"hash".Hash32 interface { BlockSize() (? int); Reset(); Size() (? int); Sum(@"hash".b []byte) (? []byte); Sum32() (? uint32); Write(@"io".p []byte) (@"io".n int, @"io".err error) } 17 type @"".sum32 uint32 21 func (@"".s·2 *@"".sum32 "esc:0x1") Sum (@"".in·3 []byte "esc:0x1a") (? []byte) { var @"".v·4 uint32; @"".v·4 = uint32(*@"".s·2); return append(@"".in·3, byte(@"".v·4 >> 0x18), byte(@"".v·4 >> 0x10), byte(@"".v·4 >> 0x8), byte(@"".v·4)) } 22 func (@"".s·2 *@"".sum32 "esc:0x1") Sum32 () (? uint32) { return uint32(*@"".s·2) } 25 type @"".sum32a uint32 29 func (@"".s·2 *@"".sum32a "esc:0x1") Sum (@"".in·3 []byte "esc:0x1a") (? []byte) { var @"".v·4 uint32; @"".v·4 = uint32(*@"".s·2); return append(@"".in·3, byte(@"".v·4 >> 0x18), byte(@"".v·4 >> 0x10), byte(@"".v·4 >> 0x8), byte(@"".v·4)) } 30 func (@"".s·2 *@"".sum32a "esc:0x1") Sum32 () (? uint32) { return uint32(*@"".s·2) [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
softfloat64.go | 24 nan32 uint32 = (1<<expbits32-1)<<mantbits32 + 1 25 inf32 uint32 = (1<<expbits32 - 1) << mantbits32 26 neg32 uint32 = 1 << (expbits32 + mantbits32) 61 func funpack32(f uint32) (sign, mant uint32, exp int, inf, nan bool) { 144 func fpack32(sign, mant uint32, exp int, trunc uint32) uint32 { 192 return sign | uint32(exp-bias32)<<mantbits32 | mant&(1<<mantbits32-1) 317 func f64to32(f uint64) uint32 { [all...] |
/prebuilts/go/linux-x86/test/ken/ |
divconst.go | 17 a := int64(rand.Uint32()) 18 a = (a << 32) | int64(rand.Uint32()) 114 a := uint64(rand.Uint32()) 115 a = (a << 32) | uint64(rand.Uint32()) 173 a := int32(rand.Uint32()) 266 func u32rand() uint32 { 267 a := uint32(rand.Uint32()) 272 func u32test(a, b, c uint32) { 281 var a, b uint32 [all...] |
modconst.go | 17 a := int64(rand.Uint32()) 18 a = (a << 32) | int64(rand.Uint32()) 114 a := uint64(rand.Uint32()) 115 a = (a << 32) | uint64(rand.Uint32()) 173 a := int32(rand.Uint32()) 266 func u32rand() uint32 { 267 a := uint32(rand.Uint32()) 272 func u32test(a, b, c uint32) { 281 var a, b uint32 [all...] |
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/ |
SDL_stdinc.h | 114 /* Define a four character code as a Uint32 */ 116 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ 117 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ 118 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ 119 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) 155 typedef uint32_t Uint32; 177 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); 268 SDL_FORCE_INLINE void SDL_memset4(void *dst, Uint32 val, size_t dwords) 276 : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, dwords) [all...] |
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/ |
SDL_stdinc.h | 114 /* Define a four character code as a Uint32 */ 116 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ 117 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ 118 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ 119 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) 155 typedef uint32_t Uint32; 177 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); 268 SDL_FORCE_INLINE void SDL_memset4(void *dst, Uint32 val, size_t dwords) 276 : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, dwords) [all...] |
/prebuilts/misc/windows/sdl2/include/ |
SDL_stdinc.h | 104 /* Define a four character code as a Uint32 */ 106 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ 107 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ 108 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ 109 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) 145 typedef uint32_t Uint32; 167 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); 258 SDL_FORCE_INLINE void SDL_memset4(void *dst, Uint32 val, size_t dwords) 266 : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, dwords) [all...] |
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/ |
SDL_stdinc.h | 114 /* Define a four character code as a Uint32 */ 116 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ 117 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ 118 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ 119 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) 155 typedef uint32_t Uint32; 177 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); 268 SDL_FORCE_INLINE void SDL_memset4(void *dst, Uint32 val, size_t dwords) 276 : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, dwords) [all...] |
/system/bt/stack/gatt/ |
gatt_int.h | 196 UINT32 uuid; 221 UINT32 mem_free; /* Memory still available */ 234 UINT32 sdp_handle; /* primamry service SDP handle */ 278 typedef UINT32 tGATT_APP_MASK; 285 UINT32 trans_id; 355 UINT32 trans_id; 433 UINT32 service_change; 561 extern UINT32 gatt_add_sdp_record (tBT_UUID *p_uuid, UINT16 start_hdl, UINT16 end_hdl); 565 extern void gatt_convert_uuid32_to_uuid128(UINT8 uuid_128[LEN_UUID_128], UINT32 uuid_32); 618 extern tGATT_STATUS gatt_sr_process_app_rsp (tGATT_TCB *p_tcb, tGATT_IF gatt_if, UINT32 trans_id, UINT8 op_code, tGATT_STATUS status, tGATTS_RSP *p_msg) [all...] |
/external/dng_sdk/source/ |
dng_rect.h | 68 dng_rect (uint32 h, uint32 w) 118 // a _signed_ int32 (even if it would fit in a uint32). This is 126 uint32 W () const 135 return static_cast<uint32>(width); 146 uint32 H () const 155 return static_cast<uint32>(height);
|
/external/google-breakpad/src/common/ |
dwarf_line_to_module.h | 135 void DefineDir(const string &name, uint32 dir_num); 137 uint32 dir_num, uint64 mod_time, 140 uint32 file_num, uint32 line_num, uint32 column_num); 144 typedef std::map<uint32, string> DirectoryTable; 145 typedef std::map<uint32, Module::File *> FileTable;
|
/external/libnfc-nci/halimpl/bcm2079x/gki/common/ |
gki_common.h | 93 #define ALIGN_POOL(pl_size) ( (((pl_size) + 3) / sizeof(UINT32)) * sizeof(UINT32)) 95 #define BUFFER_PADDING_SIZE (sizeof(BUFFER_HDR_T) + sizeof(UINT32)) /* Header + Magic Number */ 269 UINT32 OSTicks; /* system ticks from start */ 270 UINT32 OSIdleCnt; /* idle counter */ 279 UINT32 OSTicksTilStop; /* inactivity delay timer; OS Ticks till stopping system tick */ 386 extern void gki_dump4(UINT32 *, UINT16, FP_PRINT);
|
/external/libnfc-nci/src/gki/common/ |
gki_common.h | 93 #define ALIGN_POOL(pl_size) ( (((pl_size) + 3) / sizeof(UINT32)) * sizeof(UINT32)) 95 #define BUFFER_PADDING_SIZE (sizeof(BUFFER_HDR_T) + sizeof(UINT32)) /* Header + Magic Number */ 269 UINT32 OSTicks; /* system ticks from start */ 270 UINT32 OSIdleCnt; /* idle counter */ 279 UINT32 OSTicksTilStop; /* inactivity delay timer; OS Ticks till stopping system tick */ 386 extern void gki_dump4(UINT32 *, UINT16, FP_PRINT);
|
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
SfxSetup.cpp | 49 UInt32 numBytesPrev = 0;
56 UInt32 numReadBytes = kBufferSize - numBytesPrev;
57 UInt32 processedSize;
62 UInt32 numBytesInBuffer = numBytesPrev + processedSize;
63 UInt32 pos = 0;
283 UINT32 result = (UINT32)(UINT_PTR)execInfo.hInstApp;
|
/external/neven/Embedded/common/src/b_TensorEm/ |
CompactAlt.h | 85 uint32 widthA, 86 uint32 heightA, 87 uint32 bitsA, 88 uint32 maxRowSizeA, 94 uint32 bts_CompactAlt_memSize( struct bbs_Context* cpA, 98 uint32 bts_CompactAlt_memWrite( struct bbs_Context* cpA, 103 uint32 bts_CompactAlt_memRead( struct bbs_Context* cpA,
|
Uint32Rect.h | 42 uint32 x1E; 45 uint32 y1E; 48 uint32 x2E; 51 uint32 y2E; 69 uint32 bts_Uint32Rect_memSize( struct bbs_Context* cpA, 73 uint32 bts_Uint32Rect_memWrite( struct bbs_Context* cpA, 78 uint32 bts_Uint32Rect_memRead( struct bbs_Context* cpA,
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
mp4lib_int.h | 36 uint32 curr_word; 37 uint32 next_word; 42 uint32 bitcnt; /* total bit read so-far (from inbfr)*/ 62 uint32 timeStamp; /* Vop TimeStamp in msec */ 88 uint32 moduloTimeBase; /* internal decoder clock */ 252 uint32 currTimestamp; 262 uint32 prevTimestamp[BITRATE_AVERAGE_WINDOW];
|
/hardware/qcom/display/msm8996/sdm/libs/hwc/ |
hwc_display_primary.cpp | 59 primary_width = UINT32(width); 60 primary_height = UINT32(height); 156 bool one_updating_layer = SingleLayerUpdating(UINT32(content_list->numHwLayers - 1)); 227 ForceRefreshRate(UINT32(val)); 230 SetDisplayMode(UINT32(val)); 233 SetQDCMSolidFillInfo(true, UINT32(val)); 236 SetQDCMSolidFillInfo(false, UINT32(val));
|
/prebuilts/go/darwin-x86/api/ |
go1.4.txt | 474 pkg syscall (windows-386), func CreateSymbolicLink(*uint16, *uint16, uint32) error 475 pkg syscall (windows-386), func DeviceIoControl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped) error 490 pkg syscall (windows-amd64), func CreateSymbolicLink(*uint16, *uint16, uint32) error 491 pkg syscall (windows-amd64), func DeviceIoControl(Handle, uint32, *uint8, uint32, *uint8, uint32, *uint32, *Overlapped) erro [all...] |
/prebuilts/go/darwin-x86/pkg/darwin_amd64/debug/ |
plan9obj.a | 14 type @"".FileHeader struct { Magic uint32; Bss uint32; Entry uint64; PtrSize int; LoadAddress uint64; HdrSize uint64 } 15 type @"".SectionHeader struct { Name string; Size uint32; Offset uint32 } 129 0runtime.morestack_noctxt `? "".autotmp_0039 ?(type.*"".formatError "".autotmp_0038 type.uint32 |