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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/third_party/libjingle/source/talk/base/
time.h 39 typedef uint32 TimeStamp;
42 uint32 Time();
45 uint32 StartTime();
48 uint32 TimeAfter(int32 elapsed);
51 bool TimeIsBetween(uint32 earlier, uint32 middle, uint32 later); // Inclusive
52 bool TimeIsLaterOrEqual(uint32 earlier, uint32 later); // Inclusive
53 bool TimeIsLater(uint32 earlier, uint32 later); // Exclusiv
    [all...]
md5.h 25 typedef long unsigned int uint32; typedef
31 uint32 buf[4];
32 uint32 bits[2];
33 uint32 in[16];
39 void MD5Transform(uint32 buf[4], uint32 const in[16]);
time.cc 44 const uint32 LAST = 0xFFFFFFFF;
45 const uint32 HALF = 0x80000000;
48 uint32 Time() {
56 uint32 Time() {
61 uint32 StartTime() {
63 static const uint32 g_start = Time();
68 static uint32 ignore = StartTime();
70 uint32 TimeAfter(int32 elapsed) {
72 ASSERT(static_cast<uint32>(elapsed) < HALF);
76 bool TimeIsBetween(uint32 earlier, uint32 middle, uint32 later)
    [all...]
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
s_mp3bits.h 92 uint32 usedBits;
93 uint32 inputBufferCurrentLength;
94 uint32 offset;
pvmp3_crc.h 84 uint32 getbits_crc(tmp3Bits *inputStream,
86 uint32 *crc,
87 uint32 crc_enabled);
90 void calculate_crc(uint32 data,
91 uint32 length,
92 uint32 *crc);
pvmp3_crc.cpp 46 uint32 *crc, memory location holding calculated crc value
47 uint32 crc_enabled flag to enable/disable crc checking
55 uint32 data, data vector
56 uint32 length, number of element upon the crc will be calculated
57 uint32 *crc, memory location holding calculated crc value
123 uint32 getbits_crc(tmp3Bits *inputStream, /* bit stream structure */
125 uint32 *crc,
126 uint32 crc_enabled)
128 uint32 bits = getNbits(inputStream, neededBits);
141 void calculate_crc(uint32 data
    [all...]
pvmp3_dec_defs.h 140 uint32 part2_3_length;
141 uint32 big_values;
143 uint32 scalefac_compress;
144 uint32 window_switching_flag;
145 uint32 block_type;
146 uint32 mixed_block_flag;
147 uint32 table_select[3];
148 uint32 subblock_gain[3];
149 uint32 region0_count;
150 uint32 region1_count
    [all...]
  /external/neven/Embedded/common/src/b_ImageEm/
Functions.h 57 uint32 srcImageWidthA,
58 uint32 srcImageHeightA,
61 uint32 dstWidthA,
62 uint32 dstHeightA,
64 uint32 scaleThresholdA );
77 uint32 srcImageWidthA,
78 uint32 srcImageHeightA,
81 uint32 dstWidthA,
82 uint32 dstHeightA,
84 uint32 scaleThresholdA )
    [all...]
UInt16BytePyrImage.h 55 * Use function uint16* bim_UInt16BytePyrImage_arrPtr( uint32 levelA ) to obtain adress of image at given depth level
61 uint32 widthE;
64 uint32 heightE;
67 uint32 depthE;
70 uint32 typeE;
87 uint32 widthA, uint32 heightA,
88 uint32 depthA,
112 uint32 levelA );
115 uint32 bim_UInt16BytePyrImage_heapSize( struct bbs_Context* cpA
    [all...]
  /external/neven/Embedded/common/src/b_TensorEm/
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/base/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_outside.cpp 116 *((uint32*)ptr) = temp; \
117 *((uint32*)(ptr+4)) = temp; \
118 *((uint32*)(ptr+=16)) = temp; \
119 *((uint32*)(ptr+4)) = temp; \
120 *((uint32*)(ptr+=16)) = temp; \
121 *((uint32*)(ptr+4)) = temp; \
122 *((uint32*)(ptr+=16)) = temp; \
123 *((uint32*)(ptr+4)) = temp; \
124 *((uint32*)(ptr+=16)) = temp; \
125 *((uint32*)(ptr+4)) = temp;
    [all...]
  /external/neven/Embedded/common/src/b_BasicEm/
Functions.h 48 /** writes a 32 bit word to memory; returns bbs_SIZEOF16( uint32 ) */
49 uint32 bbs_memWrite32( const void* ptrA,
52 /** reads a 32 bit word from memory; returns bbs_SIZEOF16( uint32 ) */
53 uint32 bbs_memRead32( void* ptrA,
57 uint32 bbs_memPeek32( const uint16* memPtrA );
60 uint32 bbs_memWrite16( const void* ptrA,
64 uint32 bbs_memRead16( void* ptrA,
67 /** writes a 32 bit word array to memory; sizeA specifies number of words in array; returns bbs_SIZEOF16( uint32 ) * sizeA */
68 uint32 bbs_memWrite32Arr( struct bbs_Context* cpA,
70 uint32 sizeA, uint16* memPtrA )
    [all...]
Memory.h 39 /* void* bbs_memcpy( void* dstA, const void* srcA, uint32 sizeA ); */
45 void* bbs_memcpy16( void* dstA, const void* srcA, uint32 sizeA );
51 void* bbs_memcpy32( void* dstA, const void* srcA, uint32 sizeA );
57 void* bbs_memset16( void* dstA, uint16 valA, uint32 sizeA );
63 void* bbs_memset32( void* dstA, uint32 valA, uint32 sizeA );
Functions.c 47 uint32 bbs_memWrite32( const void* ptrA,
50 uint32 valL = *( uint32* )ptrA;
61 return bbs_SIZEOF16( uint32 );
66 uint32 bbs_memRead32( void* ptrA,
69 uint32 valL = 0;
72 valL |= ( ( uint32 )bbs_swapBytes( *memPtrA++ ) << 0 );
73 valL |= ( ( uint32 )bbs_swapBytes( *memPtrA++ ) << 16 );
75 valL |= ( ( uint32 )*memPtrA++ << 0 );
76 valL |= ( ( uint32 )*memPtrA++ << 16 )
    [all...]
String.h 42 char* bbs_strncpy( char* dstA, const char* srcA, uint32 sizeA );
48 char* bbs_strncat( char* dstA, const char* srcA, uint32 sizeA );
51 uint32 bbs_strlen( const char* strA );
62 uint32 bbs_snprintf( char* dstA, uint32 bufSizeA, const char* formatA, ... );
67 uint32 bbs_vsnprintf( char* dstA, uint32 bufSizeA, const char* formatA, va_list argsA );
Math.h 57 uint16 bbs_sqrt32( uint32 valA );
68 uint16 bbs_fastSqrt32( uint32 valA );
73 uint32 bbs_invSqrt32( uint32 valA );
83 uint32 bbs_intLog2( uint32 valA );
90 uint32 bbs_pow2M1( uint32 valA );
97 uint32 bbs_pow2( int32 valA );
108 uint32 bbs_exp( int32 valA )
    [all...]
  /external/neven/Embedded/common/src/b_BitFeatureEm/
ScanDetector.h 52 uint32 minScaleE;
55 uint32 maxScaleE;
58 uint32 maxImageWidthE;
61 uint32 maxImageHeightE;
69 uint32 patchWidthE;
72 uint32 patchHeightE;
75 uint32 minDefScaleE;
78 uint32 maxDefScaleE;
81 uint32 scaleStepE;
84 uint32 overlapThrE
    [all...]
Scanner.h 51 uint32 scaleExpE;
54 uint32 scaleE;
63 uint32 effMaxScaleE;
66 uint32 currentWidthE;
69 uint32 currentHeightE;
72 uint32 workWidthE;
75 uint32 workHeightE;
107 uint32 intCountE;
110 uint32 outCountE;
118 uint32 bufferSizeE
    [all...]
LocalScanner.h 64 uint32 currentWidthE;
67 uint32 currentHeightE;
70 uint32 workWidthE;
73 uint32 workHeightE;
79 uint32 origWidthE;
82 uint32 origHeightE;
111 uint32 patchWidthE;
114 uint32 patchHeightE;
117 uint32 scaleExpE;
120 uint32 maxImageWidthE
    [all...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/
trxhdr.h 36 uint32 magic; /* "HDR0" */
37 uint32 len; /* Length of file including header */
38 uint32 crc32; /* 32-bit CRC from flag_version to end of file */
39 uint32 flag_version; /* 0:15 flags, 16:31 version */
40 uint32 offsets[TRX_MAX_OFFSET]; /* Offsets of partitions from start of header */
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
trxhdr.h 36 uint32 magic; /* "HDR0" */
37 uint32 len; /* Length of file including header */
38 uint32 crc32; /* 32-bit CRC from flag_version to end of file */
39 uint32 flag_version; /* 0:15 flags, 16:31 version */
40 uint32 offsets[TRX_MAX_OFFSET]; /* Offsets of partitions from start of header */
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_video_config_parser.h 32 uint32 inBytes;
38 uint32 width;
39 uint32 height;
40 uint32 profile;
41 uint32 level;
  /external/neven/FaceRecEm/common/src/b_FDSDK/
FaceFinder_Internal.h 47 uint32 facesE;
50 uint32 faceIndexE;
  /external/neven/Embedded/common/src/b_APIEm/
DCR.h 55 uint32 maxImageWidthE;
58 uint32 maxImageHeightE;
64 uint32 imageWidthE;
67 uint32 imageHeightE;
118 uint32 imageWidthA,
119 uint32 imageHeightA,
120 uint32 cueSizeA,
131 uint32 widthA,
132 uint32 heightA );
142 uint32 widthA,
    [all...]
  /external/chromium/base/
rand_util_win.cc 14 uint32 RandUint32() {
15 uint32 number;
25 uint32 first_half = RandUint32();
26 uint32 second_half = RandUint32();

Completed in 815 milliseconds

1 2 3 4 5 6 7 8 91011>>