/external/neven/Embedded/common/src/b_BasicEm/ |
Memory.h | 36 /** copies memory for src to dst (no overlap allowed); returns dstA 39 /* void* bbs_memcpy( void* dstA, const void* srcA, uint32 sizeA ); */ 43 * returns dstA 45 void* bbs_memcpy16( void* dstA, const void* srcA, uint32 sizeA ); 49 * returns dstA 51 void* bbs_memcpy32( void* dstA, const void* srcA, uint32 sizeA ); 55 * returns dstA 57 void* bbs_memset16( void* dstA, uint16 valA, uint32 sizeA ); 61 * returns dstA 63 void* bbs_memset32( void* dstA, uint32 valA, uint32 sizeA ) [all...] |
String.h | 38 /** copies a string from srcA to dstA; returns dstA */ 39 char* bbs_strcpy( char* dstA, const char* srcA ); 41 /** copies sizeA caracters from from srcA to dstA; returns dstA */ 42 char* bbs_strncpy( char* dstA, const char* srcA, uint32 sizeA ); 44 /** adds a string srcA to string dstA; returns dstA */ 45 char* bbs_strcat( char* dstA, const char* srcA ); 47 /** adds sizeA characters from srcA to string dstA; returns dstA * [all...] |
Memory.c | 40 void* bbs_memcpy( void* dstA, const void* srcA, uint32 sizeA ) 47 return bbs_memcpy16( dstA, srcA, sizeA >> 1 ); 52 void* bbs_memcpy16( void* dstA, const void* srcA, uint32 sizeA ) 55 if( ( ( int32 ) dstA >> 16 ) == ( ( ( int32 ) dstA + sizeA ) >> 16 ) && 59 uint16* dstL = ( uint16* )dstA; 73 *( uint16* ) ( ( int32 ) dstA + iL ) = *( uint16* ) ( ( int32 ) srcA + iL ); 76 return dstA; 78 uint16* dstL = ( uint16* )dstA; 96 return dstA; [all...] |
String.c | 40 char* bbs_strcpy( char* dstA, const char* srcA ) 43 char* dstL = dstA; 45 return dstA; 50 char* bbs_strncpy( char* dstA, const char* srcA, uint32 sizeA ) 55 if( ( dstA[ iL ] = srcA[ iL ] ) == 0 ) break; 57 if( iL == sizeA && sizeA > 0 ) dstA[ iL - 1 ] = 0; 58 return dstA; 63 char* bbs_strcat( char* dstA, const char* srcA ) 66 char* dstL = dstA; 69 return dstA; [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
SkLerpXfermode.cpp | 91 unsigned dstA = dst[i]; 92 unsigned resA = SkAlphaBlend(SkGetPackedA32(src[i]), dstA, scale); 94 resA = SkAlphaBlend(resA, dstA, a + (a >> 7));
|
/external/skia/src/effects/ |
SkLerpXfermode.cpp | 91 unsigned dstA = dst[i]; 92 unsigned resA = SkAlphaBlend(SkGetPackedA32(src[i]), dstA, scale); 94 resA = SkAlphaBlend(resA, dstA, a + (a >> 7));
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_cc.c | 155 GLenum dstA = ctx->Color.Blend[0].DstA; 165 dstA = fix_xRGB_alpha(dstA); 173 srcA = dstA = GL_ONE; 180 cc->cc5.ia_dest_blend_factor = brw_translate_blend_factor(dstA); 186 dstA != dstRGB ||
|
gen6_cc.c | 103 GLenum dstA = ctx->Color.Blend[b].DstA; 110 srcA = dstA = GL_ONE; 117 blend[b].blend0.ia_dest_blend_factor = brw_translate_blend_factor(dstA); 123 dstA != dstRGB ||
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_cc.c | 155 GLenum dstA = ctx->Color.Blend[0].DstA; 165 dstA = fix_xRGB_alpha(dstA); 173 srcA = dstA = GL_ONE; 180 cc->cc5.ia_dest_blend_factor = brw_translate_blend_factor(dstA); 186 dstA != dstRGB ||
|
gen6_cc.c | 103 GLenum dstA = ctx->Color.Blend[b].DstA; 110 srcA = dstA = GL_ONE; 117 blend[b].blend0.ia_dest_blend_factor = brw_translate_blend_factor(dstA); 123 dstA != dstRGB ||
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_state.c | 59 unsigned dstRGB, unsigned dstA) 74 (dstA == PIPE_BLENDFACTOR_INV_SRC_COLOR || 75 dstA == PIPE_BLENDFACTOR_INV_SRC_ALPHA || 76 dstA == PIPE_BLENDFACTOR_ONE); 80 unsigned dstRGB, unsigned dstA) 93 (dstA == PIPE_BLENDFACTOR_SRC_COLOR || 94 dstA == PIPE_BLENDFACTOR_SRC_ALPHA || 95 dstA == PIPE_BLENDFACTOR_ONE); 99 unsigned dstRGB, unsigned dstA) 110 (dstA == PIPE_BLENDFACTOR_ONE) [all...] |
/external/mesa3d/src/gallium/drivers/r300/ |
r300_state.c | 59 unsigned dstRGB, unsigned dstA) 74 (dstA == PIPE_BLENDFACTOR_INV_SRC_COLOR || 75 dstA == PIPE_BLENDFACTOR_INV_SRC_ALPHA || 76 dstA == PIPE_BLENDFACTOR_ONE); 80 unsigned dstRGB, unsigned dstA) 93 (dstA == PIPE_BLENDFACTOR_SRC_COLOR || 94 dstA == PIPE_BLENDFACTOR_SRC_ALPHA || 95 dstA == PIPE_BLENDFACTOR_ONE); 99 unsigned dstRGB, unsigned dstA) 110 (dstA == PIPE_BLENDFACTOR_ONE) [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
AllocationTest.java | 428 Allocation dstA = Allocation.createSized(mRS, Element.F32(mRS), nElems); 441 dstA.copy1DRangeFrom(offset, count, srcA, offset); 442 dstA.copyTo(dst); 452 Allocation dstA = Allocation.createSized(mRS, Element.I8(mRS), nElems); 465 dstA.copy1DRangeFrom(offset, count, srcA, offset); 466 dstA.copyTo(dst); 586 Allocation dstA = Allocation.createTyped(mRS, b.setX(nElemsX).setY(nElemsY).create()); 596 dstA.copy2DRangeFrom(xOffset, yOffset, width, height, srcA, xOffset, yOffset); 597 dstA.copyTo(dst); 612 Allocation dstA = Allocation.createTyped(mRS, b.setX(nElemsX).setY(nElemsY).create()) [all...] |
/external/opencv/cv/src/ |
cvsubdivision2d.cpp | 199 CvSubdiv2DPoint *orgB, *dstA; 209 dstA = cvSubdiv2DEdgeDst( edgeA ); 211 cvSubdiv2DSetEdgePoints( new_edge, dstA, orgB ); 225 CvSubdiv2DPoint *dstB, *dstA; 230 dstA = cvSubdiv2DEdgeDst( a ); 232 cvSubdiv2DSetEdgePoints( edge, dstA, dstB );
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
i915_state.c | 301 GLuint dstA = ctx->Color.Blend[0].DstA; 308 srcA = dstA = GL_ONE; 316 iab |= DST_ABLND_FACT(intel_translate_blend_factor(dstA)); 319 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) 338 GLenum dstRGB, GLenum srcA, GLenum dstA) [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i915_state.c | 301 GLuint dstA = ctx->Color.Blend[0].DstA; 308 srcA = dstA = GL_ONE; 316 iab |= DST_ABLND_FACT(intel_translate_blend_factor(dstA)); 319 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) 338 GLenum dstRGB, GLenum srcA, GLenum dstA) [all...] |
/external/skia/tests/ |
Matrix44Test.cpp | 200 SkMScalar dstA[4], dstB[4]; 203 dstA[i] = 123456789; 207 mat.map2(src2, 1, dstA); 211 REPORTER_ASSERT(reporter, dstA[i] == dstB[i]);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_state.c | 112 unsigned dstA = blend->rt[0].alpha_dst_factor; 119 dstA != dstRGB || 129 DST_ABLND_FACT(i915_translate_blend_factor(dstA)) | [all...] |
/external/mesa3d/src/gallium/drivers/i915/ |
i915_state.c | 112 unsigned dstA = blend->rt[0].alpha_dst_factor; 119 dstA != dstRGB || 129 DST_ABLND_FACT(i915_translate_blend_factor(dstA)) | [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkXfermode.cpp | 762 SkAlpha dstA = dst[i]; 764 (SkPMColor)(dstA << SK_A32_SHIFT))); 766 A = SkAlphaBlend(A, dstA, SkAlpha255To256(a)); 850 SkAlpha dstA = dst[i]; 851 SkPMColor res = proc(src[i], dstA << SK_A32_SHIFT); 854 A = SkAlphaBlend(A, dstA, SkAlpha255To256(a)); [all...] |
/external/skia/src/core/ |
SkXfermode.cpp | 762 SkAlpha dstA = dst[i]; 764 (SkPMColor)(dstA << SK_A32_SHIFT))); 766 A = SkAlphaBlend(A, dstA, SkAlpha255To256(a)); 850 SkAlpha dstA = dst[i]; 851 SkPMColor res = proc(src[i], dstA << SK_A32_SHIFT); 854 A = SkAlphaBlend(A, dstA, SkAlpha255To256(a)); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_blend.c | 133 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA); 178 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA); 216 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA); 690 switch (ctx->Color.Blend[0].DstA) { 910 const GLenum dstA = ctx->Color.Blend[0].DstA; 935 else if (srcRGB != srcA || dstRGB != dstA) { [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_blend.c | 133 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA); 178 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA); 216 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA); 690 switch (ctx->Color.Blend[0].DstA) { 910 const GLenum dstA = ctx->Color.Blend[0].DstA; 935 else if (srcRGB != srcA || dstRGB != dstA) { [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_state.c | 755 unsigned dstA = state->rt[j].alpha_dst_factor; 765 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) { 769 bc |= S_028804_ALPHA_DESTBLEND(r600_translate_blend_factor(dstA)); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/ |
si_state.c | 166 unsigned dstA = state->rt[j].alpha_dst_factor; 183 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) { 187 blend_cntl |= S_028780_ALPHA_DESTBLEND(si_translate_blend_factor(dstA)); [all...] |