HomeSort by relevance Sort by last modified time
    Searched refs:uint32 (Results 1 - 25 of 777) 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/av/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...]
  /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/av/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 );
  /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/bcmdhd/dhdutil/include/
hndrte_armtrap.h 58 uint32 type;
59 uint32 epc;
60 uint32 cpsr;
61 uint32 spsr;
62 uint32 r0; /* a1 */
63 uint32 r1; /* a2 */
64 uint32 r2; /* a3 */
65 uint32 r3; /* a4 */
66 uint32 r4; /* v1 */
67 uint32 r5; /* v2 *
    [all...]
hndrte_debug.h 41 #define _HD_EVLOG_P uint32
42 #define _HD_CONS_P uint32
43 #define _HD_TRAP_P uint32
46 uint32 magic;
49 uint32 version; /* Debug struct version */
52 uint32 fwid; /* 4 bytes of fw info */
58 uint32 ram_base;
59 uint32 ram_size;
61 uint32 rom_base;
62 uint32 rom_size
    [all...]
  /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/ceres-solver/internal/ceres/
collections_port.cc 33 inline uint32 Hash32NumWithSeed(uint32 num, uint32 c) {
34 uint32 b = 0x9e3779b9UL; // the golden ratio; an arbitrary value
  /external/chromium/base/
rand_util_win.cc 14 uint32 RandUint32() {
15 uint32 number;
25 uint32 first_half = RandUint32();
26 uint32 second_half = RandUint32();
  /hardware/qcom/display/libcopybit/
c2d2.h 43 #if !defined(uint32) && !defined(_UINT32_DEFINED)
44 typedef unsigned int uint32; typedef
312 uint32 format; /* RGB color format plus additional mode bits */
313 uint32 width; /* defines width in pixels */
314 uint32 height; /* defines height in pixels */
322 uint32 format; /* YUV color format plus additional mode bits */
323 uint32 width; /* defines width in pixels */
324 uint32 height; /* defines height in pixels */
367 uint32 surface_id; /* source surface */
369 uint32 fg_color; /* foreground color *
    [all...]

Completed in 463 milliseconds

1 2 3 4 5 6 7 8 91011>>