HomeSort by relevance Sort by last modified time
    Searched full:srcb (Results 1 - 15 of 15) sorted by null

  /external/mesa3d/src/mesa/main/
macros.h 271 #define SUB_4V( DST, SRCA, SRCB ) \
273 (DST)[0] = (SRCA)[0] - (SRCB)[0]; \
274 (DST)[1] = (SRCA)[1] - (SRCB)[1]; \
275 (DST)[2] = (SRCA)[2] - (SRCB)[2]; \
276 (DST)[3] = (SRCA)[3] - (SRCB)[3]; \
280 #define ADD_4V( DST, SRCA, SRCB ) \
282 (DST)[0] = (SRCA)[0] + (SRCB)[0]; \
283 (DST)[1] = (SRCA)[1] + (SRCB)[1]; \
284 (DST)[2] = (SRCA)[2] + (SRCB)[2]; \
285 (DST)[3] = (SRCA)[3] + (SRCB)[3];
    [all...]
  /external/llvm/test/CodeGen/PowerPC/
rlwimi3.ll 4 define i16 @Trans16Bit(i32 %srcA, i32 %srcB, i32 %alpha) {
9 %tmp7 = shl i32 %srcB, 15 ; <i32> [#uses=1]
11 %tmp10 = and i32 %srcB, 31775 ; <i32> [#uses=1]
rlwimi2.ll 7 define i16 @test1(i32 %srcA, i32 %srcB, i32 %alpha) nounwind {
13 %tmp.9 = shl i32 %srcB, 15 ; <i32> [#uses=1]
15 %tmp.14 = and i32 %srcB, 31775 ; <i32> [#uses=1]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCodeGenerator.h 451 void setupTwoStubArgs(GPRReg srcA, GPRReg srcB)
453 // Assuming that srcA != srcB, there are 7 interesting states the registers may be in:
459 // (6) srcB in in its correct reg.
460 // (7) srcB in in the incorrect reg.
462 // The trivial approach is to simply emit two moves, to put srcA in place then srcB in
464 // cases 1, 3, 4, 5, 6, and in cases where srcA==srcB. The two problem cases are 2
465 // (requires a swap) and 7 (must move srcB first, to avoid trampling.)
467 if (srcB != destA) {
470 m_jit.move(JITCompiler::gprToRegisterID(srcB), JITCompiler::gprToRegisterID(destB));
472 // Handle the non-swap case - just put srcB in place first
    [all...]
  /external/opencv/cv/src/
cvoptflowbm.cpp 555 // srcA, srcB - source image
572 CvMat stubB, *srcB = (CvMat*)srcarrB;
577 CV_CALL( srcB = cvGetMat( srcB, &stubB ));
582 if( !CV_ARE_TYPES_EQ( srcA, srcB ))
588 if( !CV_ARE_SIZES_EQ( srcA, srcB ) ||
599 if( srcA->step != srcB->step || velx->step != vely->step )
602 IPPI_CALL( icvCalcOpticalFlowBM_8u32fR( (uchar*)srcA->data.ptr, (uchar*)srcB->data.ptr,
cvoptflowhs.cpp 483 // srcA, srcB - source image
499 CvMat stubB, *srcB = (CvMat*)srcarrB;
504 CV_CALL( srcB = cvGetMat( srcB, &stubB ));
509 if( !CV_ARE_TYPES_EQ( srcA, srcB ))
515 if( !CV_ARE_SIZES_EQ( srcA, srcB ) ||
525 if( srcA->step != srcB->step || velx->step != vely->step )
528 IPPI_CALL( icvCalcOpticalFlowHS_8u32fR( (uchar*)srcA->data.ptr, (uchar*)srcB->data.ptr,
cvoptflowlk.cpp 560 // srcA, srcB - source image
575 CvMat stubB, *srcB = (CvMat*)srcarrB;
580 CV_CALL( srcB = cvGetMat( srcB, &stubB ));
585 if( !CV_ARE_TYPES_EQ( srcA, srcB ))
591 if( !CV_ARE_SIZES_EQ( srcA, srcB ) ||
601 if( srcA->step != srcB->step || velx->step != vely->step )
604 IPPI_CALL( icvCalcOpticalFlowLK_8u32fR( (uchar*)srcA->data.ptr, (uchar*)srcB->data.ptr,
  /external/opencv/cxcore/src/
cxmatrix.cpp     [all...]
cxmatmul.cpp     [all...]
cxarithm.cpp     [all...]
cxdxt.cpp     [all...]
  /external/llvm/test/Transforms/InstCombine/
sext.ll 117 define void @test11(<2 x i16> %srcA, <2 x i16> %srcB, <2 x i16>* %dst) {
118 %cmp = icmp eq <2 x i16> %srcB, %srcA
  /external/skia/src/core/
SkBlitter_ARGB32.cpp 59 int srcB = SkGetPackedB32(color);
91 blend32(srcB, dstB, maskB));
  /external/opencv/ml/src/
ml_inner_functions.cpp 468 uchar* srcb = 0; local
479 srcb = idx_arr->data.ptr;
496 idx_selected += srcb[i*step] != 0;
533 if( srcb[i*step] )
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_N.c     [all...]

Completed in 808 milliseconds