Home | History | Annotate | Download | only in b_TensorEm

Lines Matching refs:int32

35 void bts_Int32Mat_reduceToNBits( int32* ptrA, uint32 sizeA, int32* bbpPtrA, uint32 nBitsA )
37 int32 shiftL;
40 int32 maxL = 0;
41 int32* ptrL = ptrA;
42 int32 iL = sizeA;
45 int32 xL = *ptrL++;
120 int32 widthA,
210 const int32* matA,
211 int32 matWidthA,
212 const int32* inVecA,
213 int32* outVecA,
214 int32 bbpA,
215 int32* tmpMatA,
216 int32* tmpVecA )
218 bbs_memcpy32( tmpMatA, matA, ( matWidthA * matWidthA ) * bbs_SIZEOF32( int32 ) );
232 int32* matA,
233 int32 matWidthA,
234 const int32* inVecA,
235 int32* outVecA,
236 int32 bbpA,
237 int32* tmpVecA )
239 int32 sizeL = matWidthA;
240 int32 bbpL = bbpA;
241 int32 iL, jL, kL;
242 int32 iPivL;
243 int32 jPivL;
245 int32* vecL = outVecA;
246 int32* matL = matA;
247 int32* checkArrL = tmpVecA;
254 bbs_memcpy32( outVecA, inVecA, sizeL * bbs_SIZEOF32( int32 ) );
261 int32 maxAbsL = 0;
262 int32* pivRowL;
264 int32 bbp_pivRowL, bbp_vecL, shiftL;
271 int32* rowL = matL + ( iL * sizeL );
276 int32 absElemL = rowL[ jL ];
304 int32* row1PtrL = matL + ( iPivL * sizeL );
305 int32* row2PtrL = matL + ( jPivL * sizeL );
308 int32 tmpL = *row1PtrL;
314 int32 tmpL = vecL[ jPivL ];
332 int32 iL = sizeL * sizeL;
333 int32* ptrL = matL;
361 int32 maxL = pivRowL[ jPivL ];
362 int32 bbp_maxL = bbp_pivRowL;
363 int32 factorL = 1073741824 / maxL; /*( 1 << 30 )*/
372 pivRowL[ jPivL ] = ( int32 )1 << bbp_pivRowL;
387 int32* rowPtrL = matL + iL * sizeL;
389 int32 tmpL = *( rowPtrL + jPivL );
390 int32 bbp_tmpL = bbpL;
458 int32 maxL = 0;
459 int32 iL, shiftL;
462 int32 xL = vecL[ iL ];