Searched refs:xE (Results 1 - 25 of 99) sorted by relevance

1234

/external/neven/Embedded/common/src/b_TensorEm/
H A DInt16Vec2D.c44 ptrA->xE = 0;
52 ptrA->xE = 0;
102 memPtrA += bbs_memWrite16( &ptrA->xE, memPtrA );
114 memPtrA += bbs_memRead16( &ptrA->xE, memPtrA );
132 return ( int32 ) vec1PtrA->xE * vec2PtrA->xE + ( int32 ) vec1PtrA->yE * vec2PtrA->yE;
139 return ( int32 ) ptrA->xE * ptrA->xE + ( int32 ) ptrA->yE * ptrA->yE;
146 return bbs_sqrt32( ( int32 ) ptrA->xE * ptrA->xE
[all...]
H A DFlt16Vec2D.c44 ptrA->xE = 0;
53 ptrA->xE = 0;
71 ptrA->xE = srcPtrA->xE;
82 if( ptrA->xE != srcPtrA->xE ) return FALSE;
89 int32 xL = ( int32 ) srcPtrA->xE << bbpDiffL;
91 if( ptrA->xE != xL ) return FALSE;
94 if( srcPtrA->xE != ( xL >> bbpDiffL ) ) return FALSE;
101 int32 xL = ( int32 ) ptrA->xE <<
[all...]
H A DInt16Vec3D.c86 memPtrA += bbs_memWrite16( &ptrA->xE, memPtrA );
99 memPtrA += bbs_memRead16( &ptrA->xE, memPtrA );
117 return ( int32 ) ptrA->xE * ptrA->xE +
126 return bbs_sqrt32( ( int32 ) ptrA->xE * ptrA->xE +
135 int32 normL = bbs_sqrt32( ( int32 ) ptrA->xE * ptrA->xE +
139 int32 xL = ( ( int32 )ptrA->xE << 16 ) / normL;
142 ptrA->xE
[all...]
H A DFlt16Vec3D.c44 ptrA->xE = 0;
54 ptrA->xE = 0;
75 if( ptrA->xE != srcPtrA->xE ) return FALSE;
83 int32 xL = ( int32 ) srcPtrA->xE << bbpDiffL;
86 if( ptrA->xE != xL ) return FALSE;
94 int32 xL = ( int32 ) ptrA->xE << -bbpDiffL;
97 if( xL != srcPtrA->xE ) return FALSE;
172 vecL.xE = xA;
186 vecL.xE
[all...]
H A DInt16Vec3D.h42 int16 xE; member in struct:bts_Int16Vec3D
H A DCluster3D.c108 if( ( src1L->xE != src2L->xE ) ||
141 xL += vecPtrL->xE;
170 xMinL = bbs_min( xMinL, vecPtrL->xE );
172 xMaxL = bbs_max( xMaxL, vecPtrL->xE );
199 return ( int32 ) ptrA->vecArrE[ indexA ].xE << shiftL;
203 return ( ( ( int32 ) ptrA->vecArrE[ indexA ].xE >> ( -shiftL - 1 ) ) + 1 ) >> 1;
328 int32 x0L = altA.vecE.xE;
356 int32 xL = vecPtrL->xE;
359 vecPtrL->xE
[all...]
H A DFlt16Alt3D.c207 vecL.xE += ( ( altPtrA->vecE.xE >> sh1L ) + 1 ) >> 1;
213 vecL.xE += altPtrA->vecE.xE << -shiftL;
H A DInt16Vec2D.h43 int16 xE; member in struct:bts_Int16Vec2D
H A DRBFMap2D.c187 ptrA->rbfCoeffClusterE.vecArrE[ iL ].xE = 0;
229 vecL.xE -= vec0L.xE;
277 for( iL = 0; iL < sizeL; iL++ ) inPtrL[ iL ] = ( int32 )( dstVecL[ iL ].xE - altVecL[ iL ].xE ) << shiftL;
281 for( iL = 0; iL < sizeL; iL++ ) inPtrL[ iL ] = ( ( ( int32 )( dstVecL[ iL ].xE - altVecL[ iL ].xE ) >> ( ( -shiftL ) - 1 ) ) + 1 ) >> 1;
303 ptrA->rbfCoeffClusterE.vecArrE[ iL ].xE = rbfCoeffL;
445 outXL = altVecL.xE;
482 int32 xL = vecA.xE;
[all...]
H A DCluster2D.c152 if( ( src1L->xE != src2L->xE ) || ( src1L->yE != src2L->yE ) ) return FALSE;
182 xL += vecPtrL->xE;
204 sumL += vecPtrL->xE;
228 xMinL = bbs_min( xMinL, vecPtrL->xE );
230 xMaxL = bbs_max( xMaxL, vecPtrL->xE );
258 int32 xL = ptrA->vecArrE[ indexA ].xE;
578 int32 pxL = srcPtrL->xE - cpL.xE;
580 int32 qxL = dstPtrL->xE
[all...]
H A DInt16Mat2D.c136 vecL.xE = ( ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE ) >> matPtrA->bbpE;
137 vecL.yE = ( ( int32 ) matPtrA->yxE * vecPtrA->xE + ( int32 ) matPtrA->yyE * vecPtrA->yE ) >> matPtrA->bbpE;
H A DFlt16Mat3D.c265 int32 xL = ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE + ( int32 ) matPtrA->xzE * vecPtrA->zE;
266 int32 yL = ( int32 ) matPtrA->yxE * vecPtrA->xE + ( int32 ) matPtrA->yyE * vecPtrA->yE + ( int32 ) matPtrA->yzE * vecPtrA->zE;
267 int32 zL = ( int32 ) matPtrA->zxE * vecPtrA->xE + ( int32 ) matPtrA->zyE * vecPtrA->yE + ( int32 ) matPtrA->zzE * vecPtrA->zE;
272 vecL.xE = ( ( xL >> sh1L ) + 1 ) >> 1;
279 vecL.xE = xL << -matPtrA->bbpE;
293 int32 xL = ( ( ( ( int32 ) matPtrA->xxE * vecPtrA->xE + 1 ) >> 1 ) +
297 int32 yL = ( ( ( ( int32 ) matPtrA->yxE * vecPtrA->xE + 1 ) >> 1 ) +
301 int32 zL = ( ( ( ( int32 ) matPtrA->zxE * vecPtrA->xE + 1 ) >> 1 ) +
H A DFlt16Vec2D.h43 int16 xE; member in struct:bts_Flt16Vec2D
H A DFlt16Vec3D.h43 int16 xE; member in struct:bts_Flt16Vec3D
H A DFlt16Mat2D.c301 int32 xL = ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE;
302 int32 yL = ( int32 ) matPtrA->yxE * vecPtrA->xE + ( int32 ) matPtrA->yyE * vecPtrA->yE;
307 vecL.xE = ( ( xL >> sh1L ) + 1 ) >> 1;
313 vecL.xE = xL << -matPtrA->bbpE;
325 int32 xL = ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE;
326 int32 yL = ( int32 ) matPtrA->yxE * vecPtrA->xE + ( int32 ) matPtrA->yyE * vecPtrA->yE;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILDeviceInfo.h48 MultiUAV = 0xE, // Use for UAV per Pointer 0-7.
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILDeviceInfo.h48 MultiUAV = 0xE, // Use for UAV per Pointer 0-7.
/external/neven/FaceRecEm/common/src/b_FDSDK/
H A DDCR.c281 nodePtrA->x = ( ( s16p16 )hdcrA->dcrE.sdkClusterE.clusterE.vecArrE[ indexA ].xE ) << ( 16 - hdcrA->dcrE.sdkClusterE.clusterE.bbpE );
285 nodePtrA->x += ( int32 )hdcrA->dcrE.offsE.xE << 16;
333 int32 lxL = ( hdcrA->dcrE.sdkClusterE.clusterE.vecArrE[ lIndexL ].xE + ( 1 << ( bbpL - 1 ) ) ) >> bbpL;
335 int32 rxL = ( hdcrA->dcrE.sdkClusterE.clusterE.vecArrE[ rIndexL ].xE + ( 1 << ( bbpL - 1 ) ) ) >> bbpL;
354 pRectA->xMin += ( int32 )hdcrA->dcrE.offsE.xE << 16;
356 pRectA->xMax += ( int32 )hdcrA->dcrE.offsE.xE << 16;
/external/chromium_org/base/
H A Dbig_endian_unittest.cc13 char data[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0xA, 0xB, 0xC, 0xD, 0xE, 0xF,
72 char expected[] = { 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 0xA, 0xB, 0xC, 0xD, 0xE,
/external/neven/Embedded/common/src/b_ImageEm/
H A DUInt16ByteImage.c422 txL = ( int32 )invAlt2DL.vecE.xE >> shiftL;
429 if( invAlt2DL.vecE.xE > maxInt32Value8bbpL ||
435 invAlt2DL.vecE.xE >> invAlt2DL.vecE.bbpE,
440 txL = ( int32 )invAlt2DL.vecE.xE << -shiftL;
721 txL = ( int32 )invAlt2DL.vecE.xE >> shiftL;
728 if( invAlt2DL.vecE.xE > maxInt32Value8bbpL ||
734 invAlt2DL.vecE.xE >> invAlt2DL.vecE.bbpE,
739 txL = ( int32 )invAlt2DL.vecE.xE << -shiftL;
/external/lldb/source/Plugins/Process/Utility/
H A DARMDefines.h45 #define COND_AL 0xE // Always (unconditional) Always (unconditional) Any
/external/neven/Embedded/common/src/b_BitFeatureEm/
H A DLocalScanner.c342 ptrA->xE = 0;
376 ptrA->xE = 0;
454 return ( ptrA->yE - ptrA->workScanRegionE.y1E ) * wL + ( ptrA->xE - ptrA->workScanRegionE.x1E );
461 *xPtrA = ( ( ptrA->xE << ptrA->scaleExpE ) + ptrA->xOffE ) << 16;
631 ptrA->xE = ptrA->workScanRegionE.x1E;
671 return ptrA->patchBufferE.arrPtrE + ptrA->xE;
678 if( ( ptrA->xE + 1 ) < ptrA->workScanRegionE.x2E - ( int32 )ptrA->patchWidthE )
680 ptrA->xE++;
686 ptrA->xE = ptrA->workScanRegionE.x1E;
695 uint32* dstL = ( uint32* )ptrA->patchBufferE.arrPtrE + ptrA->xE;
[all...]
H A DScanner.c428 ptrA->xE = 0;
468 ptrA->xE = 0;
517 ptrA->xE = srcPtrA->xE;
584 return ptrA->yE * ptrA->currentWidthE + ptrA->xE;
593 *xPtrA = ( int32 )( ptrA->xE - ptrA->borderWidthE ) * ( int32 )( ptrA->scaleE >> 4 );
777 ptrA->xE = 0;
837 return ptrA->patchBufferE.arrPtrE + ptrA->xE;
844 if( ( ptrA->xE + 1 ) < ( int32 )( ptrA->currentWidthE - ptrA->patchWidthE ) )
846 ptrA->xE
[all...]
H A DLocalScanner.h52 int32 xE; member in struct:bbf_LocalScanner
/external/neven/Embedded/common/src/b_APIEm/
H A DBFFaceFinder.c267 offsPtrA->xE = xL >> 16;
269 xL -= ( ( int32 )offsPtrA->xE << 16 );
341 offsPtrA->xE = xL >> 16;
344 xL -= ( ( int32 )offsPtrA->xE << 16 );

Completed in 3543 milliseconds

1234