HomeSort by relevance Sort by last modified time
    Searched refs:uint32 (Results 326 - 350 of 717) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.12/src/audio/dc/
SDL_dcaudio.c 111 uint32 *left = (uint32*)(leftpos +SPU_RAM_BASE);
112 uint32 *right = (uint32*)(rightpos+SPU_RAM_BASE);
133 uint32 *left = (uint32*)(leftpos +SPU_RAM_BASE);
134 uint32 *right = (uint32*)(rightpos+SPU_RAM_BASE);
  /external/webkit/Source/WebCore/platform/
PlatformTouchEvent.h 40 typedef unsigned long int uint32; typedef
76 PlatformTouchEvent(AEEEvent, uint16 wParam, uint32 dwParam);
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_decode_header.cpp 40 uint32 *crc
44 uint32 *crc initialized crc computation
117 uint32 *crc)
121 uint32 temp;
  /hardware/msm7k/librpc/rpc/
clnt.h 211 extern CLIENT * clnt_create ( char * host, uint32 prog, uint32 vers,
  /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...]
helpers.cc 110 uint32 hash = 0;
241 uint32 CreateRandomId() {
242 uint32 id;
249 uint32 CreateRandomNonZeroId() {
250 uint32 id;
messagequeue.cc 44 const uint32 kMaxMsgLatency = 150; // 150 ms
181 uint32 msStart = Time();
182 uint32 msCurrent = msStart;
260 void MessageQueue::Post(MessageHandler *phandler, uint32 id,
282 void MessageQueue::DoDelayPost(int cmsDelay, uint32 tstamp,
283 MessageHandler *phandler, uint32 id, MessageData* pdata) {
322 void MessageQueue::Clear(MessageHandler *phandler, uint32 id,
physicalsocketserver.cc 104 const uint32 IP_HEADER_SIZE = 20;
105 const uint32 ICMP_HEADER_SIZE = 8;
547 virtual uint32 GetRequestedEvents() {
551 virtual void OnPreEvent(uint32 ff) {
563 virtual void OnEvent(uint32 ff, int err) {
708 virtual uint32 GetRequestedEvents() {
712 virtual void OnPreEvent(uint32 ff) {
724 virtual void OnEvent(uint32 ff, int err) {
835 virtual uint32 GetRequestedEvents() {
839 virtual void OnPreEvent(uint32 ff)
    [all...]
httpcommon.h 152 inline bool HttpCodeIsInformational(uint32 code) { return ((code / 100) == 1); }
153 inline bool HttpCodeIsSuccessful(uint32 code) { return ((code / 100) == 2); }
154 inline bool HttpCodeIsRedirection(uint32 code) { return ((code / 100) == 3); }
155 inline bool HttpCodeIsClientError(uint32 code) { return ((code / 100) == 4); }
156 inline bool HttpCodeIsServerError(uint32 code) { return ((code / 100) == 5); }
158 bool HttpCodeHasBody(uint32 code);
159 bool HttpCodeIsCacheable(uint32 code);
413 uint32 scode;
421 void set_success(uint32 scode = HC_OK);
423 uint32 scode = HC_OK)
    [all...]
  /external/chromium/net/tools/flip_server/
balsa_frame.h 40 static const uint32 kValidTerm1 = '\n' << 16 |
43 static const uint32 kValidTerm1Mask = 0xFF << 16 |
46 static const uint32 kValidTerm2 = '\n' << 8 |
48 static const uint32 kValidTerm2Mask = 0xFF << 8 |
251 uint32 term_chars_;
  /external/protobuf/src/google/protobuf/
wire_format.h 132 static bool SkipField(io::CodedInputStream* input, uint32 tag,
180 static uint32 MakeTag(const FieldDescriptor* field);
185 uint32 tag,
252 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
280 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
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...]
wire_format_lite.cc 112 io::CodedInputStream* input, uint32 tag) {
125 uint32 length;
146 uint32 value;
158 uint32 tag = input->ReadTag();
176 io::CodedInputStream* input, uint32 tag) {
192 uint32 length;
219 void WireFormatLite::WriteUInt32(int field_number, uint32 value,
239 void WireFormatLite::WriteFixed32(int field_number, uint32 value,
345 uint32 length;
352 uint32 length
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageHaiku.cpp 134 uint32 width = image->Bounds().IntegerWidth() + 1;
135 uint32 height = image->Bounds().IntegerHeight() + 1;
137 uint32 bytesPerRow = image->BytesPerRow();
138 for (uint32 y = 0; y < height && !hasAlpha; y++) {
140 for (uint32 x = 0; x < width && !hasAlpha; x++) {
  /external/libyuv/files/source/
format_conversion.cc 29 uint8* dst_bayer, uint32 selector, int pix) {
54 uint32 selector, int pix) {
76 uint8* dst_bayer, uint32 selector, int pix) {
92 static uint32 GenerateSelector(int select0, int select1) {
93 return static_cast<uint32>(select0) |
94 static_cast<uint32>((select1 + 4) << 8) |
95 static_cast<uint32>((select0 + 8) << 16) |
96 static_cast<uint32>((select1 + 12) << 24);
102 uint32 dst_fourcc_bayer,
110 uint8* dst_bayer, uint32 selector, int pix)
    [all...]
  /external/chromium/chrome/browser/sync/util/
nigori.cc 38 uint32 size = htonl(value.size());
39 stream_.write((char *) &size, sizeof(uint32));
48 uint32 size = htonl(sizeof(uint32));
49 stream_.write((char *) &size, sizeof(uint32));
50 uint32 value = htonl(type);
51 stream_.write((char *) &value, sizeof(uint32));
  /external/chromium/sdch/open-vcdiff/src/gflags/
gflags.h 94 typedef uint32_t uint32; typedef in namespace:google
99 typedef u_int32_t uint32;
104 typedef unsigned __int32 uint32;
191 extern uint32 GetArgvSum(); // simple checksum of argv
338 extern uint32 ParseCommandLineFlags(int *argc, char*** argv,
352 extern uint32 ParseCommandLineNonHelpFlags(int *argc, char*** argv,
371 extern uint32 ReparseCommandLineNonHelpFlags();
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
port.cc 42 const uint32 CONNECTION_READ_TIMEOUT = 30 * 1000; // 30 seconds
45 const uint32 CONNECTION_WRITE_TIMEOUT = 15 * 1000; // 15 seconds
48 const uint32 CONNECTION_WRITE_CONNECT_TIMEOUT = 5 * 1000; // 5 seconds
51 const uint32 CONNECTION_WRITE_CONNECT_FAILURES = 5;
59 const std::vector<uint32>& pings_since_last_response,
60 uint32 maximum_failures,
61 uint32 rtt_estimate,
62 uint32 now) {
75 const std::vector<uint32>& pings_since_last_response,
76 uint32 maximum_time
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 288 LIBPROTOBUF_EXPORT uint32 strtou32_adaptor(const char *nptr, char **endptr,
298 inline uint32 strtou32(const char *nptr, char **endptr, int base) {
299 if (sizeof(uint32) == sizeof(unsigned long))
347 char* FastUInt32ToBuffer(uint32 i, char* buffer); // inline below
351 LIBPROTOBUF_EXPORT char* FastHex32ToBuffer(uint32 i, char* buffer);
388 LIBPROTOBUF_EXPORT char* FastUInt32ToBufferLeft(uint32 i, char* buffer);
393 inline char* FastUInt32ToBuffer(uint32 i, char* buffer) {
  /external/neven/Embedded/common/src/b_BitFeatureEm/
Feature.c 135 uint32 bbf_Feature_memSize( struct bbs_Context* cpA,
138 uint32 memSizeL = 0;
147 uint32 bbf_Feature_memWrite( struct bbs_Context* cpA,
151 uint32 memSizeL = bbf_Feature_memSize( cpA, ptrA );
160 uint32 bbf_Feature_memRead( struct bbs_Context* cpA,
233 uint32 bbf_featureMemSize( struct bbs_Context* cpA,
259 uint32 bbf_featureMemWrite( struct bbs_Context* cpA,
285 uint32 bbf_featureMemRead( struct bbs_Context* cpA,
313 uint32 bbf_featureSizeOf16( struct bbs_Context* cpA, enum bbf_FeatureType typeA )
  /external/neven/Embedded/common/src/b_TensorEm/
Int32Mat.c 35 void bts_Int32Mat_reduceToNBits( int32* ptrA, uint32 sizeA, int32* bbpPtrA, uint32 nBitsA )
154 uint32 bts_Int32Mat_memSize( struct bbs_Context* cpA,
157 return bbs_SIZEOF16( uint32 )
158 + bbs_SIZEOF16( uint32 ) /* version */
165 uint32 bts_Int32Mat_memWrite( struct bbs_Context* cpA,
169 uint32 memSizeL = bts_Int32Mat_memSize( cpA, ptrA );
179 uint32 bts_Int32Mat_memRead( struct bbs_Context* cpA,
184 uint32 memSizeL, versionL;
193 bbs_ERR0( bbs_ERR_CORRUPT_DATA, "uint32 bts_Int32Mat_memRead( const struct bts_Int32Mat* ptrA, const void* memPtrA ):\n
    [all...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/
bcmdefs.h 102 uint32 loaddr;
103 uint32 hiaddr;
132 uint32 length;
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmdefs.h 102 uint32 loaddr;
103 uint32 hiaddr;
132 uint32 length;
  /hardware/msm7k/librpc/
svc.c 54 extern int r_control(int handle, const uint32 cmd, void *arg);
374 uint32 prog = ntohl(((uint32 *)(svc->xdr->in_msg))[RPC_OFFSET+3]);
375 uint32 vers = ntohl(((uint32 *)(svc->xdr->in_msg))[RPC_OFFSET+4]);
376 uint32 proc = ntohl(((uint32 *)(svc->xdr->in_msg))[RPC_OFFSET+5]);
378 if (ntohl(((uint32 *)svc->xdr->in_msg)[RPC_OFFSET+1]) != RPC_MSG_CALL) {
407 svc->xdr->in_next = (RPC_OFFSET + 6 + 4)*sizeof(uint32);
501 ((uint32 *)(serv->xdr->out_msg))[RPC_OFFSET]
    [all...]
  /external/neven/Embedded/common/src/b_ImageEm/
UInt16ByteImage.c 107 uint32 bim_UInt16ByteImage_checkSum( struct bbs_Context* cpA,
110 uint32 sumL =0 ;
111 uint32 iL;
112 uint32 sizeL = ptrA->arrE.sizeE;
133 uint32 widthA,
134 uint32 heightA,
180 uint32 widthA, uint32 heightA )
190 bbs_ERROR0( "void bim_UInt16ByteImage_size( struct bim_UInt16ByteImage*, uint32 sizeA ):\n"
209 uint32 bim_UInt16ByteImage_memSize( struct bbs_Context* cpA
    [all...]

Completed in 2005 milliseconds

<<11121314151617181920>>