Home
last modified time | relevance | path

Searched refs:int32 (Results 1 – 25 of 1770) sorted by relevance

12345678910>>...71

/external/chromium_org/content/common/indexed_db/
Dindexed_db_messages.h31 IPC_STRUCT_MEMBER(int32, ipc_thread_id)
32 IPC_STRUCT_MEMBER(int32, ipc_callbacks_id)
40 IPC_STRUCT_MEMBER(int32, ipc_thread_id)
42 IPC_STRUCT_MEMBER(int32, ipc_callbacks_id)
44 IPC_STRUCT_MEMBER(int32, ipc_database_callbacks_id)
58 IPC_STRUCT_MEMBER(int32, ipc_thread_id)
59 IPC_STRUCT_MEMBER(int32, ipc_callbacks_id)
67 IPC_STRUCT_MEMBER(int32, ipc_thread_id)
69 IPC_STRUCT_MEMBER(int32, ipc_database_id)
73 IPC_STRUCT_MEMBER(int32, ipc_database_callbacks_id)
[all …]
/external/neven/Embedded/common/src/b_TensorEm/
DFlt16Vec3D.c72 int32 bbpDiffL = ptrA->bbpE - srcPtrA->bbpE; in bts_Flt16Vec3D_equal()
83 int32 xL = ( int32 ) srcPtrA->xE << bbpDiffL; in bts_Flt16Vec3D_equal()
84 int32 yL = ( int32 ) srcPtrA->yE << bbpDiffL; in bts_Flt16Vec3D_equal()
85 int32 zL = ( int32 ) srcPtrA->zE << bbpDiffL; in bts_Flt16Vec3D_equal()
94 int32 xL = ( int32 ) ptrA->xE << -bbpDiffL; in bts_Flt16Vec3D_equal()
95 int32 yL = ( int32 ) ptrA->yE << -bbpDiffL; in bts_Flt16Vec3D_equal()
96 int32 zL = ( int32 ) ptrA->zE << -bbpDiffL; in bts_Flt16Vec3D_equal()
181 struct bts_Flt16Vec3D bts_Flt16Vec3D_create32( int32 xA, int32 yA, int32 zA, int32 bbpA ) in bts_Flt16Vec3D_create32()
193 int32 shiftL = bts_maxAbsIntLog2Of3( xA, yA, zA ) - 13; in bts_Flt16Vec3D_create32()
197 int32 sh1L = shiftL - 1; in bts_Flt16Vec3D_create32()
[all …]
DFlt16Mat3D.c150 struct bts_Flt16Mat3D bts_Flt16Mat3D_createScale( int32 scaleA, int32 scaleBbpA ) in bts_Flt16Mat3D_createScale()
180 struct bts_Flt16Mat3D bts_Flt16Mat3D_create32( int32 xxA, int32 xyA, int32 xzA, in bts_Flt16Mat3D_create32()
181 int32 yxA, int32 yyA, int32 yzA, in bts_Flt16Mat3D_create32()
182 int32 zxA, int32 zyA, int32 zzA, in bts_Flt16Mat3D_create32()
183 int32 bbpA ) in bts_Flt16Mat3D_create32()
202 int32 xShiftL = bts_maxAbsIntLog2Of3( xxA, xyA, xzA ) - 13; in bts_Flt16Mat3D_create32()
203 int32 yShiftL = bts_maxAbsIntLog2Of3( yxA, yyA, yzA ) - 13; in bts_Flt16Mat3D_create32()
204 int32 zShiftL = bts_maxAbsIntLog2Of3( zxA, zyA, zzA ) - 13; in bts_Flt16Mat3D_create32()
206 int32 shiftL = bbs_max( bbs_max( xShiftL, yShiftL ), zShiftL ); in bts_Flt16Mat3D_create32()
210 int32 sh1L = shiftL - 1; in bts_Flt16Mat3D_create32()
[all …]
DFlt16Mat2D.c84 int32 bbpDiffL = ptrA->bbpE - srcPtrA->bbpE; in bts_Flt16Mat2D_equal()
96 int32 xxL = ( int32 ) srcPtrA->xxE << bbpDiffL; in bts_Flt16Mat2D_equal()
97 int32 xyL = ( int32 ) srcPtrA->xyE << bbpDiffL; in bts_Flt16Mat2D_equal()
98 int32 yxL = ( int32 ) srcPtrA->yxE << bbpDiffL; in bts_Flt16Mat2D_equal()
99 int32 yyL = ( int32 ) srcPtrA->yyE << bbpDiffL; in bts_Flt16Mat2D_equal()
117 int32 xxL = ( int32 ) ptrA->xxE << -bbpDiffL; in bts_Flt16Mat2D_equal()
118 int32 xyL = ( int32 ) ptrA->xyE << -bbpDiffL; in bts_Flt16Mat2D_equal()
119 int32 yxL = ( int32 ) ptrA->yxE << -bbpDiffL; in bts_Flt16Mat2D_equal()
120 int32 yyL = ( int32 ) ptrA->yyE << -bbpDiffL; in bts_Flt16Mat2D_equal()
176 uint32 detL = ( int32 ) ptrA->xxE * ptrA->yyE - ( int32 ) ptrA->xyE * ptrA->yxE; in bts_Flt16Mat2D_det()
[all …]
DCompactMat.c40 int32 bts_CompactMat_fltDotPrdRow( struct bbs_Context* cpA, in bts_CompactMat_fltDotPrdRow()
51 int32 factorManL = *rowPtrL++; in bts_CompactMat_fltDotPrdRow()
52 int32 factorExpL = *rowPtrL++; in bts_CompactMat_fltDotPrdRow()
61 int32 sumL = 0; in bts_CompactMat_fltDotPrdRow()
69 for( iL = sizeL; iL > 0; iL-- ) sumL += ( ( int32 )*rowPtrL++ * ( int32 )*inPtrL++ ); in bts_CompactMat_fltDotPrdRow()
80 sumL += ( ( int8 ) dpL[ 0 ] * ( int32 )inPtrL[ 0 ] ); in bts_CompactMat_fltDotPrdRow()
81 sumL += ( ( int8 )( dpL[ 0 ] >> 8 ) * ( int32 )inPtrL[ 1 ] ); in bts_CompactMat_fltDotPrdRow()
82 sumL += ( ( int8 ) dpL[ 1 ] * ( int32 )inPtrL[ 2 ] ); in bts_CompactMat_fltDotPrdRow()
83 sumL += ( ( int8 )( dpL[ 1 ] >> 8 ) * ( int32 )inPtrL[ 3 ] ); in bts_CompactMat_fltDotPrdRow()
84 sumL += ( ( int8 ) dpL[ 2 ] * ( int32 )inPtrL[ 4 ] ); in bts_CompactMat_fltDotPrdRow()
[all …]
DFlt16Vec2D.c79 int32 bbpDiffL = ptrA->bbpE - srcPtrA->bbpE; in bts_Flt16Vec2D_equal()
89 int32 xL = ( int32 ) srcPtrA->xE << bbpDiffL; in bts_Flt16Vec2D_equal()
90 int32 yL = ( int32 ) srcPtrA->yE << bbpDiffL; in bts_Flt16Vec2D_equal()
101 int32 xL = ( int32 ) ptrA->xE << -bbpDiffL; in bts_Flt16Vec2D_equal()
102 int32 yL = ( int32 ) ptrA->yE << -bbpDiffL; in bts_Flt16Vec2D_equal()
170 struct bts_Flt16Vec2D bts_Flt16Vec2D_create32( int32 xA, int32 yA, int32 bbpA ) in bts_Flt16Vec2D_create32()
181 int32 shiftL = bts_maxAbsIntLog2Of2( xA, yA ) - 13; in bts_Flt16Vec2D_create32()
185 int32 sh1L = shiftL - 1; in bts_Flt16Vec2D_create32()
201 int32 bts_Flt16Vec2D_dotPrd( const struct bts_Flt16Vec2D* vec1PtrA, in bts_Flt16Vec2D_dotPrd()
204 return ( int32 ) vec1PtrA->xE * vec2PtrA->xE + ( int32 ) vec1PtrA->yE * vec2PtrA->yE; in bts_Flt16Vec2D_dotPrd()
[all …]
DInt32Mat.c35 void bts_Int32Mat_reduceToNBits( int32* ptrA, uint32 sizeA, int32* bbpPtrA, uint32 nBitsA ) in bts_Int32Mat_reduceToNBits()
37 int32 shiftL; in bts_Int32Mat_reduceToNBits()
40 int32 maxL = 0; in bts_Int32Mat_reduceToNBits()
41 int32* ptrL = ptrA; in bts_Int32Mat_reduceToNBits()
42 int32 iL = sizeA; in bts_Int32Mat_reduceToNBits()
45 int32 xL = *ptrL++; in bts_Int32Mat_reduceToNBits()
120 int32 widthA, in bts_Int32Mat_create()
210 const int32* matA, in bts_Int32Mat_solve()
211 int32 matWidthA, in bts_Int32Mat_solve()
212 const int32* inVecA, in bts_Int32Mat_solve()
[all …]
DInt16Mat2D.c115 int32 xxL = ( int32 ) ptrA->xxE * scaleA.valE; in bts_Int16Mat2D_scale()
116 int32 xyL = ( int32 ) ptrA->xyE * scaleA.valE; in bts_Int16Mat2D_scale()
117 int32 yxL = ( int32 ) ptrA->yxE * scaleA.valE; in bts_Int16Mat2D_scale()
118 int32 yyL = ( int32 ) ptrA->yyE * scaleA.valE; in bts_Int16Mat2D_scale()
136 …vecL.xE = ( ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE ) >> matPt… in bts_Int16Mat2D_map()
137 …vecL.yE = ( ( int32 ) matPtrA->yxE * vecPtrA->xE + ( int32 ) matPtrA->yyE * vecPtrA->yE ) >> matPt… in bts_Int16Mat2D_map()
147 int32 xxL = ( int32 ) mat1PtrA->xxE * mat2PtrA->xxE + ( int32 ) mat1PtrA->xyE * mat2PtrA->yxE; in bts_Int16Mat2D_mul()
148 int32 xyL = ( int32 ) mat1PtrA->xxE * mat2PtrA->xyE + ( int32 ) mat1PtrA->xyE * mat2PtrA->yyE; in bts_Int16Mat2D_mul()
149 int32 yxL = ( int32 ) mat1PtrA->yxE * mat2PtrA->xxE + ( int32 ) mat1PtrA->yyE * mat2PtrA->yxE; in bts_Int16Mat2D_mul()
150 int32 yyL = ( int32 ) mat1PtrA->yxE * mat2PtrA->xyE + ( int32 ) mat1PtrA->yyE * mat2PtrA->yyE; in bts_Int16Mat2D_mul()
DInt16Vec2D.c129 int32 bts_Int16Vec2D_dotPrd( const struct bts_Int16Vec2D* vec1PtrA, in bts_Int16Vec2D_dotPrd()
132 return ( int32 ) vec1PtrA->xE * vec2PtrA->xE + ( int32 ) vec1PtrA->yE * vec2PtrA->yE; in bts_Int16Vec2D_dotPrd()
139 return ( int32 ) ptrA->xE * ptrA->xE + ( int32 ) ptrA->yE * ptrA->yE; in bts_Int16Vec2D_norm2()
146 return bbs_sqrt32( ( int32 ) ptrA->xE * ptrA->xE + ( int32 ) ptrA->yE * ptrA->yE ); in bts_Int16Vec2D_norm()
151 void bts_Int16Vec2D_normalize( struct bts_Int16Vec2D* ptrA, int32 bbpA ) in bts_Int16Vec2D_normalize()
153 int32 normL = bbs_sqrt32( ( int32 ) ptrA->xE * ptrA->xE + ( int32 ) ptrA->yE * ptrA->yE ); in bts_Int16Vec2D_normalize()
154 int32 xL = ( ( int32 ) ptrA->xE << 16 ) / normL; in bts_Int16Vec2D_normalize()
155 int32 yL = ( ( int32 ) ptrA->yE << 16 ) / normL; in bts_Int16Vec2D_normalize()
162 struct bts_Int16Vec2D bts_Int16Vec2D_normalized( const struct bts_Int16Vec2D* ptrA, int32 bbpA ) in bts_Int16Vec2D_normalized()
181 int32 xL = ( int32 ) vec1PtrA->xE * vec2PtrA->xE + ( int32 ) vec1PtrA->yE * vec2PtrA->yE; in bts_Int16Vec2D_enclosedAngle()
[all …]
/external/chromium/net/disk_cache/
Ddisk_format.h70 int32 pad1[2];
71 int32 filled; // Flag to tell when we filled the cache.
72 int32 sizes[5];
76 int32 operation; // Actual in-flight operation.
77 int32 operation_list; // In-flight operation list.
78 int32 pad2[7];
87 int32 num_entries; // Number of entries currently stored.
88 int32 num_bytes; // Total size of the stored data.
89 int32 last_file; // Last external file created.
90 int32 this_id; // Id for all entries being changed (dirty flag).
[all …]
/external/chromium_org/content/child/indexed_db/
Dindexed_db_dispatcher.h87 int32 ipc_cursor_id);
92 int32 ipc_cursor_id);
96 int32 ipc_cursor_id);
100 int32 ipc_cursor_id);
102 void RequestIDBDatabaseClose(int32 ipc_database_id,
103 int32 ipc_database_callbacks_id);
106 int32 ipc_database_id,
112 void RequestIDBDatabaseGet(int32 ipc_database_id,
121 int32 ipc_database_id,
132 void RequestIDBDatabaseOpenCursor(int32 ipc_database_id,
[all …]
/external/neven/Embedded/common/src/b_BasicEm/
DMathSSE2.c34 int32 bbs_dotProduct_64SSE2( const int16* vec1A, const int16* vec2A, uint32 sizeA ) in bbs_dotProduct_64SSE2()
40 int32 resultL = 0; in bbs_dotProduct_64SSE2()
106 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
108 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
110 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
112 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
114 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
116 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
118 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
120 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
[all …]
DMath.h78 int32 bbs_inv32( int32 valA );
97 uint32 bbs_pow2( int32 valA );
108 uint32 bbs_exp( int32 valA );
111 int16 bbs_satS16( int32 valA );
122 int32 bbs_dotProductInt16( const int16* vec1A, const int16* vec2A, uint32 sizeA );
128 int32 bbs_fermi( int32 valA );
131 void bbs_uint32ReduceToNBits( uint32* argPtrA, int32* bbpPtrA, uint32 nBitsA );
134 void bbs_int32ReduceToNBits( int32* argPtrA, int32* bbpPtrA, uint32 nBitsA );
139 uint32 bbs_convertU32( uint32 srcA, int32 srcBbpA, int32 dstBbpA );
144 int32 bbs_convertS32( int32 srcA, int32 srcBbpA, int32 dstBbpA );
[all …]
DMath.c37 extern int32 bbs_dotProduct_128SSE2( const int16* vec1A, const int16* vec2A, uint32 sizeA );
38 extern int32 bbs_dotProduct_u128SSE2( const int16* vec1A, const int16* vec2A, uint32 sizeA );
42 int32 bbs_dotProduct_fr71( const int16* vec1A, const int16* vec2A, uint32 sizeA );
206 const int32 bbs_inv32_tableG[] =
218 int32 bbs_inv32( int32 valA ) in bbs_inv32()
222 int32 signL = ( ( valA >> 30 ) & 0xFFFFFFFE ) + 1; in bbs_inv32()
223 int32 valL = signL * valA; in bbs_inv32()
224 int32 offsL; in bbs_inv32()
227 if( valL <= ( int32 ) 1 ) return 0x40000000 * signL; in bbs_inv32()
287 uint32 bbs_pow2( int32 valA ) in bbs_pow2()
[all …]
/external/chromium/chrome/browser/safe_browsing/
Dsafe_browsing_store.h45 int32 chunk_id;
48 SBAddPrefix(int32 id, SBPrefix p) : chunk_id(id), prefix(p) {} in SBAddPrefix()
51 int32 GetAddChunkId() const { return chunk_id; } in GetAddChunkId()
56 int32 chunk_id;
57 int32 add_chunk_id;
60 SBSubPrefix(int32 id, int32 add_id, int prefix) in SBSubPrefix()
64 int32 GetAddChunkId() const { return add_chunk_id; } in GetAddChunkId()
69 int32 chunk_id;
70 int32 received;
73 SBAddFullHash(int32 id, base::Time r, const SBFullHash& h) in SBAddFullHash()
[all …]
/external/chromium_org/chrome/browser/safe_browsing/
Dsafe_browsing_store.h45 int32 chunk_id;
48 SBAddPrefix(int32 id, SBPrefix p) : chunk_id(id), prefix(p) {} in SBAddPrefix()
51 int32 GetAddChunkId() const { return chunk_id; } in GetAddChunkId()
58 int32 chunk_id;
59 int32 add_chunk_id;
62 SBSubPrefix(int32 id, int32 add_id, int prefix) in SBSubPrefix()
66 int32 GetAddChunkId() const { return add_chunk_id; } in GetAddChunkId()
73 int32 chunk_id;
74 int32 received;
77 SBAddFullHash(int32 id, base::Time r, const SBFullHash& h) in SBAddFullHash()
[all …]
/external/chromium_org/net/disk_cache/
Ddisk_format.h59 int32 pad1[2];
60 int32 filled; // Flag to tell when we filled the cache.
61 int32 sizes[5];
65 int32 operation; // Actual in-flight operation.
66 int32 operation_list; // In-flight operation list.
67 int32 pad2[7];
76 int32 num_entries; // Number of entries currently stored.
77 int32 num_bytes; // Total size of the stored data.
78 int32 last_file; // Last external file created.
79 int32 this_id; // Id for all entries being changed (dirty flag).
[all …]
/external/chromium_org/net/disk_cache/flash/
Dlog_store.h27 LogStore(const base::FilePath& path, int32 size);
39 bool CreateEntry(int32 size, int32* entry_id);
44 void DeleteEntry(int32 entry_id, int32 size);
47 bool WriteData(const void* buffer, int32 size);
50 bool OpenEntry(int32 entry_id);
54 bool ReadData(int32 entry_id, void* buffer, int32 size, int32 offset) const;
58 void CloseEntry(int32 id);
66 int32 GetNextSegmentIndex();
67 bool InUse(int32 segment_index) const;
71 int32 num_segments_;
[all …]
Dsegment.h66 Segment(int32 index, bool read_only, Storage* storage);
69 int32 index() const { return index_; } in index()
70 int32 write_offset() const { return write_offset_; } in write_offset()
72 bool HaveOffset(int32 offset) const;
73 std::vector<int32> GetOffsets() const { return offsets_; } in GetOffsets()
86 bool WriteData(const void* buffer, int32 size);
90 bool ReadData(void* buffer, int32 size, int32 offset) const;
93 void StoreOffset(int32 offset);
100 bool CanHold(int32 size) const;
103 int32 index_;
[all …]
/external/neven/Embedded/common/src/b_ImageEm/
DUInt16ByteImage.c336 int32 resultWidthA, in bim_UInt16ByteImage_warp()
337 int32 resultHeightA ) in bim_UInt16ByteImage_warp()
352 int32 shiftL; in bim_UInt16ByteImage_warp()
355 int32 maxInt32Value8bbpL = 0x7FFFFFFF; in bim_UInt16ByteImage_warp()
358 int32 mxxL; in bim_UInt16ByteImage_warp()
359 int32 mxyL; in bim_UInt16ByteImage_warp()
360 int32 myxL; in bim_UInt16ByteImage_warp()
361 int32 myyL; in bim_UInt16ByteImage_warp()
363 int32 txL; in bim_UInt16ByteImage_warp()
364 int32 tyL; in bim_UInt16ByteImage_warp()
[all …]
/external/chromium_org/content/common/gpu/
Dgpu_messages.h43 IPC_STRUCT_MEMBER(int32, share_group_id)
52 IPC_STRUCT_MEMBER(int32, surface_id)
54 IPC_STRUCT_MEMBER(int32, route_id)
62 IPC_STRUCT_MEMBER(int32, surface_id)
64 IPC_STRUCT_MEMBER(int32, route_id)
78 IPC_STRUCT_MEMBER(int32, surface_id)
85 IPC_STRUCT_MEMBER(int32, renderer_id)
94 IPC_STRUCT_MEMBER(int32, id)
271 int32, /* surface_id */
272 int32, /* client_id */
[all …]
/external/chromium_org/net/disk_cache/v3/
Ddisk_format_v3.h63 int32 num_entries; // Number of entries currently stored.
64 int32 num_bytes; // Total size of the stored data.
65 int32 last_file; // Last external file created.
66 int32 reserved1;
68 int32 table_len; // Actual size of the table.
69 int32 crash; // Signals a previous crash.
70 int32 experiment; // Id of an ongoing test.
71 int32 max_bytes; // Total maximum size of the stored data.
73 int32 used_cells;
74 int32 max_bucket;
[all …]
/external/chromium/base/i18n/
Dchar_iterator.h38 int32 array_pos() const { return array_pos_; } in array_pos()
42 int32 char_pos() const { return char_pos_; } in char_pos()
45 int32 get() const { return char_; } in get()
59 int32 len_;
62 int32 array_pos_;
65 int32 next_pos_;
68 int32 char_pos_;
71 int32 char_;
85 int32 array_pos() const { return array_pos_; } in array_pos()
89 int32 char_pos() const { return char_pos_; } in char_pos()
[all …]
/external/chromium_org/base/i18n/
Dchar_iterator.h38 int32 array_pos() const { return array_pos_; } in array_pos()
42 int32 char_pos() const { return char_pos_; } in char_pos()
45 int32 get() const { return char_; } in get()
59 int32 len_;
62 int32 array_pos_;
65 int32 next_pos_;
68 int32 char_pos_;
71 int32 char_;
85 int32 array_pos() const { return array_pos_; } in array_pos()
89 int32 char_pos() const { return char_pos_; } in char_pos()
[all …]
/external/webrtc/src/modules/audio_processing/test/
Dunittest.proto6 optional int32 num_reverse_channels = 1;
7 optional int32 num_input_channels = 2;
8 optional int32 num_output_channels = 3;
9 optional int32 sample_rate = 4;
16 optional int32 analog_level_average = 6;
17 optional int32 max_output_average = 7;
19 optional int32 has_echo_count = 8;
20 optional int32 has_voice_count = 9;
21 optional int32 is_saturated_count = 10;
24 optional int32 instant = 1;
[all …]

12345678910>>...71