HomeSort by relevance Sort by last modified time
    Searched full:uint32 (Results 276 - 300 of 1816) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
3dfx_mmio.h 31 #define tdfx_in32(reg) *(volatile Uint32 *)(mapped_io + (reg))
34 #define tdfx_out32(reg,v) *(volatile Uint32 *)(mapped_io + (reg)) = v;
matrox_mmio.h 31 #define mga_in32(reg) *(volatile Uint32 *)(mapped_io + (reg))
34 #define mga_out32(reg,v) *(volatile Uint32 *)(mapped_io + (reg)) = v;
  /external/qemu/distrib/sdl-1.2.15/test/
testiconv.c 9 Uint32 *p = (Uint32 *)data;
  /external/regex-re2/re2/
unicode_groups.h 33 uint32 lo;
34 uint32 hi;
  /external/v8/src/
bytecodes-irregexp.h 67 V(CHECK_4_CHARS, 23, 12) /* bc8 pad24 uint32 addr32 */ \
69 V(CHECK_NOT_4_CHARS, 25, 12) /* bc8 pad24 uint32 addr32 */ \
71 V(AND_CHECK_4_CHARS, 27, 16) /* bc8 pad24 uint32 uint32 addr32 */ \
72 V(AND_CHECK_CHAR, 28, 12) /* bc8 pad8 uint16 uint32 addr32 */ \
73 V(AND_CHECK_NOT_4_CHARS, 29, 16) /* bc8 pad24 uint32 uint32 addr32 */ \
74 V(AND_CHECK_NOT_CHAR, 30, 12) /* bc8 pad8 uint16 uint32 addr32 */ \
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontCustomPlatformData.h 33 typedef UInt32 ATSFontContainerRef;
34 typedef UInt32 ATSFontRef;
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_timer.h 49 extern DECLSPEC Uint32 SDLCALL SDL_GetTicks(void);
52 extern DECLSPEC void SDLCALL SDL_Delay(Uint32 ms);
55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
SDL.h 76 extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
79 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
82 extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
88 extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_timer.h 49 extern DECLSPEC Uint32 SDLCALL SDL_GetTicks(void);
52 extern DECLSPEC void SDLCALL SDL_Delay(Uint32 ms);
55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
SDL.h 76 extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
79 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
82 extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
88 extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_timer.h 49 extern DECLSPEC Uint32 SDLCALL SDL_GetTicks(void);
52 extern DECLSPEC void SDLCALL SDL_Delay(Uint32 ms);
55 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
86 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
101 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
109 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
SDL.h 76 extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
79 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
82 extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
88 extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
  /external/chromium/third_party/libjingle/source/talk/base/
md5c.c 31 uint32 t;
33 t = (uint32)((unsigned)buf[3]<<8 | buf[2]) << 16 |
35 *(uint32 *)buf = t;
65 uint32 t;
70 if ((ctx->bits[0] = t + ((uint32)len << 3)) < t)
88 MD5Transform(ctx->buf, (uint32 *)ctx->in);
98 MD5Transform(ctx->buf, (uint32 *)ctx->in);
134 MD5Transform(ctx->buf, (uint32 *)ctx->in);
145 ((uint32 *)ctx->in)[ 14 ] = ctx->bits[0];
146 ((uint32 *)ctx->in)[ 15 ] = ctx->bits[1]
    [all...]
  /external/libnfc-nci/src/hal/include/
nfc_types.h 70 #define STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((UINT32)(*((p) + 2)))) << 16) ); (p) += 3;}
71 #define STREAM_TO_UINT32(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((UINT32)(*((p) + 2)))) << 16) + ((((UINT32)(*((p) + 3)))) << 24)); (p) += 4;}
104 #define BE_STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*((p) + 2))) + ((UINT32)(*((p) + 1)) << 8) + ((UINT32)(*(p)) << 16)); (p) += 3;
    [all...]
  /external/neven/Embedded/common/src/b_BasicEm/
Context.h 36 typedef uint32 ( *bbs_callbackFPtr )( struct bbs_Context* cpA );
70 uint32 errorE;
73 uint32 lineE;
94 uint32 errIndexE;
103 uint32 dynMemManagerArrSizeE;
140 struct bbs_Error bbs_Error_create( uint32 errorA, uint32 lineA, const char* fileA, const char* textA, ... );
188 uint32 sizeA, /* size of memory segment in 16 bit units */
190 uint32 idA ); /* ID of segment, id=0: unspecified */
199 uint32 idA ); /* ID of segment, id=0: unspecified *
    [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL.h 76 extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags);
79 extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags);
82 extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags);
88 extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags);
  /external/qemu/distrib/sdl-1.2.15/src/thread/irix/
SDL_syssem.c 65 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value)
142 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
172 Uint32 SDL_SemValue(SDL_sem *sem)
175 Uint32 value;
194 value = (Uint32)semval;
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_syssem.c 44 SDL_sem *SDL_CreateSemaphore(Uint32 initial_value)
98 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
105 Uint32 end;
162 Uint32 SDL_SemValue(SDL_sem *sem)
171 return (Uint32)ret;
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_blit_1.c 123 *(Uint32 *)dst =
127 *(Uint32 *)dst =
138 *(Uint32 *)dst =
155 *(Uint32 *)dst =
159 *(Uint32 *)dst =
170 *(Uint32 *)dst =
238 Uint32 *map, *dst;
246 dst = (Uint32 *)info->d_pixels;
248 map = (Uint32 *)info->table;
285 Uint32 ckey = info->src->colorkey
    [all...]
  /external/stressapptest/src/
pattern.h 116 static inline uint32 CrcIncrement(uint32 crc, uint32 expected, int index) {
117 uint32 addition = (expected ^ index);
118 uint32 carry = (addition & crc) >> 31;
  /external/marisa-trie/lib/marisa/
bitvector.cc 161 const UInt32 num_blocks = (size_ / 512) + (((size_ % 512) != 0) ? 1 : 0);
163 Vector<UInt32> select0s;
164 Vector<UInt32> select1s;
165 UInt32 num_0s = 0;
166 UInt32 num_1s = 0;
167 for (UInt32 i = 0; i < size_; ++i) {
169 UInt32 rank_id = i / 512;
218 UInt32 rank_id = (size_ - 1) / 512;
342 UInt32 BitVector::rank1(UInt32 i) const
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
bitvector.cc 161 const UInt32 num_blocks = (size_ / 512) + (((size_ % 512) != 0) ? 1 : 0);
163 Vector<UInt32> select0s;
164 Vector<UInt32> select1s;
165 UInt32 num_0s = 0;
166 UInt32 num_1s = 0;
167 for (UInt32 i = 0; i < size_; ++i) {
169 UInt32 rank_id = i / 512;
218 UInt32 rank_id = (size_ - 1) / 512;
342 UInt32 BitVector::rank1(UInt32 i) const
    [all...]
  /external/protobuf/src/google/protobuf/
wire_format_lite_inl.h 58 uint32 temp;
73 inline bool WireFormatLite::ReadPrimitive<uint32, WireFormatLite::TYPE_UINT32>(
75 uint32* value) {
88 uint32 temp;
103 inline bool WireFormatLite::ReadPrimitive<uint32, WireFormatLite::TYPE_FIXED32>(
105 uint32* value) {
118 uint32 temp;
136 uint32 temp;
154 uint32 temp;
163 uint32 temp
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_halfpel.cpp 34 uint32 num_sad_HP_MB = 0;
35 uint32 num_sad_HP_Blk = 0;
36 uint32 num_sad_HP_MB_call = 0;
37 uint32 num_sad_HP_Blk_call = 0;
98 if (sad > (int)((uint32)dmin_rx >> 16))
137 if (sad > (int)((uint32)dmin_rx >> 16))
171 if (sad > (int)((uint32)dmin_rx >> 16))
195 uint32 cur_word;
197 madstar = (uint32)dmin_rx >> 20;
211 cur_word = *((uint32*)(blk += 4))
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file.h 24 // uint32 add_chunk_count; // Chunks seen, including empties.
25 // uint32 sub_chunk_count; // Ditto.
26 // uint32 add_prefix_count;
27 // uint32 sub_prefix_count;
28 // uint32 add_hash_count;
29 // uint32 sub_hash_count;
64 // uint32 add_prefix_count;
65 // uint32 sub_prefix_count;
66 // uint32 add_hash_count;
67 // uint32 sub_hash_count
    [all...]

Completed in 4385 milliseconds

<<11121314151617181920>>