Searched refs:uint32 (Results 1 - 25 of 611) sorted by relevance

1234567891011>>

/external/chromium/third_party/libjingle/source/talk/base/
H A Dtime.h39 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 earlie
[all...]
H A Dmd5.h25 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]);
H A Dtime.cc44 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 earlie
[all...]
/external/neven/Embedded/common/src/b_ImageEm/
H A DFunctions.h57 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 scaleThreshold
[all...]
H A DUInt16BytePyrImage.h55 * 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_heapSiz
[all...]
H A DUInt8PyramidalImage.h50 * Use function uint8* bim_UInt8PyramidalImage_arrPtr( uint32 levelA ) to obtain adress of image at given depth level
61 uint32 widthE;
64 uint32 heightE;
67 uint32 depthE;
70 uint32 typeE;
89 uint32 widthA, uint32 heightA,
90 uint32 depthA,
113 uint32 levelA );
116 uint32 bim_UInt8PyramidalImage_heapSiz
[all...]
H A DUInt32Image.h36 /** image of uint32 */
45 uint32 widthE;
48 uint32 heightE;
83 uint32 bim_UInt32Image_heapSize( struct bbs_Context* cpA,
85 uint32 widthA,
86 uint32 heightA );
89 uint32 bim_UInt32Image_checkSum( struct bbs_Context* cpA,
97 uint32 widthA,
98 uint32 heightA,
109 uint32 width
[all...]
H A DComplexImage.h49 uint32 widthE;
52 uint32 heightE;
87 uint32 bim_ComplexImage_checkSum( struct bbs_Context* cpA,
91 uint32 bim_ComplexImage_heapSize( struct bbs_Context* cpA,
93 uint32 widthA, uint32 heightA );
100 uint32 widthA,
101 uint32 heightA,
107 uint32 widthA,
108 uint32 height
[all...]
/external/neven/Embedded/common/src/b_TensorEm/
H A DUint32Rect.h42 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,
H A DFunctions.c38 uint32 bts_absIntLog2( int32 vA )
45 uint32 bts_maxAbsIntLog2Of2( int32 v1A, int32 v2A )
47 uint32 maxL = bbs_max( ( uint32 )bbs_abs( v1A ), ( uint32 )bbs_abs( v2A ) );
53 uint32 bts_maxAbsIntLog2Of3( int32 v1A, int32 v2A, int32 v3A )
55 uint32 maxL = bbs_abs( v1A );
56 maxL = bbs_max( maxL, ( uint32 )bbs_abs( v2A ) );
57 maxL = bbs_max( maxL, ( uint32 )bbs_abs( v3A ) );
63 uint32 bts_maxAbsIntLog2Of
[all...]
/external/neven/Embedded/common/src/b_BasicEm/
H A DFunctions.h48 /** 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 size
[all...]
H A DMemory.h39 /* 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 );
H A DFunctions.c47 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 )*memPtr
[all...]
H A DString.h42 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 );
H A DMath.h57 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_ex
[all...]
H A DMemTbl.h44 uint32 esSizeE;
53 uint32 ssSizeE;
80 const void* memPtrA, uint32 sizeA );
92 uint32 sizeA,
93 uint32 sharedSubSizeA );
99 uint32 sizeA,
100 uint32 idA );
106 uint32 sizeA,
107 uint32 idA );
112 uint32 id
[all...]
/external/neven/Embedded/common/src/b_BitFeatureEm/
H A DScanDetector.h52 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 overlapThr
[all...]
H A DScanner.h51 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 bufferSize
[all...]
H A DLocalScanner.h64 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 maxImageWidth
[all...]
/external/neven/FaceRecEm/common/src/b_FDSDK/
H A DFaceFinder_Internal.h47 uint32 facesE;
50 uint32 faceIndexE;
/external/neven/Embedded/common/src/b_APIEm/
H A DDCR.h55 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 width
[all...]
H A DBFFaceFinder.h48 uint32 detectedFacesE;
51 uint32 availableFacesE;
91 uint32 bpi_BFFaceFinder_getMinEyeDistance( const struct bpi_BFFaceFinder* ptrA );
94 uint32 bpi_BFFaceFinder_getMaxEyeDistance( const struct bpi_BFFaceFinder* ptrA );
101 uint32 distA );
106 uint32 distA );
111 uint32 bpi_BFFaceFinder_memSize( struct bbs_Context* cpA,
115 uint32 bpi_BFFaceFinder_memWrite( struct bbs_Context* cpA,
124 uint32 bpi_BFFaceFinder_memRead( struct bbs_Context* cpA,
149 uint32 imageWidth
[all...]
/external/chromium/base/
H A Drand_util_win.cc14 uint32 RandUint32() {
15 uint32 number;
25 uint32 first_half = RandUint32();
26 uint32 second_half = RandUint32();
H A Dbits.h18 inline int Log2Floor(uint32 n) {
22 uint32 value = n;
25 uint32 x = value >> shift;
36 inline int Log2Ceiling(uint32 n) {
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dpseudotcp.h50 virtual void OnTcpClosed(PseudoTcp* tcp, uint32 error) = 0;
64 static uint32 Now();
66 PseudoTcp(IPseudoTcpNotify* notify, uint32 conv);
85 void NotifyClock(uint32 now);
93 bool GetNextClock(uint32 now, long& timeout);
118 uint32 conv, seq, ack;
122 uint32 len;
123 uint32 tsval, tsecr;
127 SSegment(uint32 s, uint32
[all...]

Completed in 267 milliseconds

1234567891011>>