HomeSort by relevance Sort by last modified time
    Searched defs:src2 (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/chromium_org/media/base/simd/
filter_yuv_mmx.cc 51 __m64 src2 = _mm_unpackhi_pi8(src0, zero); local
57 src2 = _mm_mullo_pi16(src2, src0_fraction);
60 src2 = _mm_add_pi16(src2, src3);
62 src2 = _mm_srli_pi16(src2, 8);
63 src0 = _mm_packs_pu16(src0, src2);
filter_yuv_sse2.cc 46 __m128i src2 = _mm_unpackhi_epi8(src0, zero); local
52 src2 = _mm_mullo_epi16(src2, src0_fraction);
55 src2 = _mm_add_epi16(src2, src3);
57 src2 = _mm_srli_epi16(src2, 8);
58 src0 = _mm_packus_epi16(src0, src2);
  /external/pixman/demos/
screen-test.c 13 uint32_t *src2 = malloc (WIDTH * HEIGHT * 4); local
23 src2[i] = 0x7f00ff00;
33 simg2 = pixman_image_create_bits (PIXMAN_a8r8g8b8, WIDTH, HEIGHT, src2, WIDTH * 4);
  /system/vold/tests/
VolumeManager_test.cpp 56 const char* src2 = "android"; local
58 EXPECT_FALSE(VolumeManager::asecHash(src2, dst, sizeof(buffer)) == NULL)
  /external/qemu/target-i386/
helper_template.h 58 target_long src1, src2; local
60 src2 = CC_DST - CC_SRC;
63 af = (CC_DST ^ src1 ^ src2) & 0x10;
66 of = lshift((src1 ^ src2 ^ -1) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
82 target_long src1, src2;
84 src2 = CC_DST - CC_SRC - 1;
87 af = (CC_DST ^ src1 ^ src2) & 0x10;
90 of = lshift((src1 ^ src2 ^ -1) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
106 target_long src1, src2;
108 src2 = CC_SRC
    [all...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
ext_lang_enc.cc 512 const char* src2 = strchr(src, '-'); local
513 if (src2 == NULL) {return ULScript_Latin;}
514 src2 += 1; // over the -
515 memcpy(temp, src2, 4);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tile.c 53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; local
61 memcpy(dst2, src2, columns * sizeof(uint8_t));
63 src2 += src_pitch;
84 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; local
92 memcpy(dst2, src2, columns * sizeof(uint16_t));
94 src2 += src_pitch;
115 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; local
123 memcpy(dst2, src2, columns * sizeof(uint16_t));
125 src2 += src_pitch;
146 uint32_t *src2 = (uint32_t *)src + src_pitch * row + col local
177 uint64_t *src2 = (uint64_t *)src + src_pitch * row + col; local
269 uint8_t *src2 = (uint8_t *)src + row * src_pitch + local
302 uint16_t *src2 = (uint16_t *)src + row * src_pitch + local
335 uint16_t *src2 = (uint16_t *)src + row * src_pitch + local
368 uint32_t *src2 = (uint32_t *)src + row * src_pitch + local
401 uint64_t *src2 = (uint64_t *)src + row * src_pitch + local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.c 53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; local
61 memcpy(dst2, src2, columns * sizeof(uint8_t));
63 src2 += src_pitch;
84 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; local
92 memcpy(dst2, src2, columns * sizeof(uint16_t));
94 src2 += src_pitch;
115 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; local
123 memcpy(dst2, src2, columns * sizeof(uint16_t));
125 src2 += src_pitch;
146 uint32_t *src2 = (uint32_t *)src + src_pitch * row + col local
177 uint64_t *src2 = (uint64_t *)src + src_pitch * row + col; local
269 uint8_t *src2 = (uint8_t *)src + row * src_pitch + local
302 uint16_t *src2 = (uint16_t *)src + row * src_pitch + local
335 uint16_t *src2 = (uint16_t *)src + row * src_pitch + local
368 uint32_t *src2 = (uint32_t *)src + row * src_pitch + local
401 uint64_t *src2 = (uint64_t *)src + row * src_pitch + local
    [all...]
  /external/skia/tests/
PackBitsTest.cpp 47 uint16_t src[100], src2[100]; local
55 size_t srcCount = SkPackBits::Unpack16(dst, dstSize, src2);
57 bool match = memcmp(src, src2, size * sizeof(uint16_t)) == 0;
101 uint8_t src[600], src2[600]; local
109 size_t srcCount = SkPackBits::Unpack8(dst, dstSize, src2);
111 bool match = memcmp(src, src2, size * sizeof(uint8_t)) == 0;
121 bool match = memcmp(src, src2 + skip, write) == 0;
Matrix44Test.cpp 186 SkMScalar src2[] = { 1, 2 }; local
187 SkMScalar src4[] = { src2[0], src2[1], 0, 1 };
195 mat.map2(src2, 1, dstA);
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_inline.h 39 __inline int32 sad_4pixel(int32 src1, int32 src2, int32 mask)
43 x7 = src2 ^ src1; /* check odd/even combination */
44 if ((uint32)src2 >= (uint32)src1)
46 src1 = src2 - src1; /* subs */
50 src1 = src1 - src2;
186 __inline int32 sad_4pixel(int32 src1, int32 src2, int32 mask)
192 EOR x7, src2, src1; /* check odd/even combination */ local
193 SUBS src1, src2, src1; local
205 __inline int32 sad_4pixelN(int32 src1, int32 src2, int32 mask)
211 EOR x7, src2, src1; /* check odd/even combination * local
212 ADDS src1, src2, src1; local
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/life/
life.c 227 uint8_t *src2 = src1 + desc.size.width; local
237 src2[-1] + src2[0] + src2[1];
244 ++src2;
  /external/chromium_org/third_party/WebKit/Source/weborigin/
KURLTest.cpp 577 const char* src2 = "http://google.com/foo/"; local
578 WebCore::KURL kurl2(WebCore::ParsedURLString, src2);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_aos.c 460 LLVMValueRef src0, src1, src2; local
569 src2 = lp_build_emit_fetch(&bld->bld_base, inst, 2, LP_CHAN_ALL);
571 dst0 = lp_build_add(&bld->bld_base.base, tmp0, src2);
583 src2 = lp_build_emit_fetch(&bld->bld_base, inst, 2, LP_CHAN_ALL);
584 tmp0 = lp_build_sub(&bld->bld_base.base, src1, src2);
586 dst0 = lp_build_add(&bld->bld_base.base, tmp0, src2);
592 src2 = lp_build_emit_fetch(&bld->bld_base, inst, 2, LP_CHAN_ALL);
594 tmp0 = lp_build_cmp(&bld->bld_base.base, PIPE_FUNC_GREATER, src2, tmp1);
610 src2 = lp_build_emit_fetch(&bld->bld_base, inst, 2, LP_CHAN_ALL);
612 dst0 = lp_build_min(&bld->bld_base.base, tmp0, src2);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_fpc_translate.c 498 uint src0, src1, src2, flags; local
534 src2 = src_vector(p, &inst->Src[2], fs);
538 0, src0, src2, src1); /* NOTE: order of src2, src1 */
740 src2 = src_vector(p, &inst->Src[2], fs);
752 flags & A0_DEST_CHANNEL_ALL, 0, src1, src0, src2);
756 flags, 0, negate(src2, 1, 1, 1, 1), src0, tmp);
    [all...]
  /external/jpeg/
jccolor.c 324 UINT32 src2 = *in++; local
326 *out0++ = PACK(B0(src0), B3(src0), B2(src1), B1(src2));
327 *out1++ = PACK(B1(src0), B0(src1), B3(src1), B2(src2));
328 *out2++ = PACK(B2(src0), B1(src1), B0(src2), B3(src2));
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_aos.c 460 LLVMValueRef src0, src1, src2; local
569 src2 = lp_build_emit_fetch(&bld->bld_base, inst, 2, LP_CHAN_ALL);
571 dst0 = lp_build_add(&bld->bld_base.base, tmp0, src2);
583 src2 = lp_build_emit_fetch(&bld->bld_base, inst, 2, LP_CHAN_ALL);
584 tmp0 = lp_build_sub(&bld->bld_base.base, src1, src2);
586 dst0 = lp_build_add(&bld->bld_base.base, tmp0, src2);
592 src2 = lp_build_emit_fetch(&bld->bld_base, inst, 2, LP_CHAN_ALL);
594 tmp0 = lp_build_cmp(&bld->bld_base.base, PIPE_FUNC_GREATER, src2, tmp1);
610 src2 = lp_build_emit_fetch(&bld->bld_base, inst, 2, LP_CHAN_ALL);
612 dst0 = lp_build_min(&bld->bld_base.base, tmp0, src2);
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_translate.c 498 uint src0, src1, src2, flags; local
534 src2 = src_vector(p, &inst->Src[2], fs);
538 0, src0, src2, src1); /* NOTE: order of src2, src1 */
740 src2 = src_vector(p, &inst->Src[2], fs);
752 flags & A0_DEST_CHANNEL_ALL, 0, src1, src0, src2);
756 flags, 0, negate(src2, 1, 1, 1, 1), src0, tmp);
    [all...]
  /external/opencv/cv/src/
cvsamplers.cpp 224 const srctype *src2 = src + src_step; \
227 src2 -= src_step; \
232 cast_macro(src2[r.x])*b2; \
241 cast_macro(src2[j])*a21 + \
242 cast_macro(src2[j+1])*a22; \
250 cast_macro(src2[r.width])*b2; \
256 src = src2; \
326 const srctype *src2 = src + src_step; \
329 src2 -= src_step; \
334 worktype s1 = cast_macro(src2[r.x*3]);
456 const uchar *src2 = src + src_step; local
    [all...]
  /external/opencv/cxcore/src/
cxlogic.cpp 63 ( const uchar* src1, int step1, const uchar* src2, int step2, \
64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\
66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
70 if( (((size_t)src1 | (size_t)src2 | (size_t)dst) & 3) == 0 ) \
74 int t0 = __op__(((const int*)(src1+i))[0], ((const int*)(src2+i))[0]);\
75 int t1 = __op__(((const int*)(src1+i))[1], ((const int*)(src2+i))[1]);\
80 t0 = __op__(((const int*)(src1+i))[2], ((const int*)(src2+i))[2]); \
81 t1 = __op__(((const int*)(src1+i))[3], ((const int*)(src2+i))[3]); \
89 int t = __op__(*(const int*)(src1+i), *(const int*)(src2+i)); \
96 int t = __op__(((const uchar*)src1)[i],((const uchar*)src2)[i]);
353 CvMat srcstub2, *src2 = (CvMat*)srcarr2; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jccolor.c 417 UINT32 src2 = *in++; local
419 *out0++ = PACK(B0(src0), B3(src0), B2(src1), B1(src2));
420 *out1++ = PACK(B1(src0), B0(src1), B3(src1), B2(src2));
421 *out2++ = PACK(B2(src0), B1(src1), B0(src2), B3(src2));
  /external/skia/gm/
image.cpp 94 SkRect src1, src2, src3; local
96 src2.iset(-surf->width() / 2, -surf->height() / 2,
107 imgG->draw(canvas, &src2, dst2, usePaint ? &paint : NULL);
poly2poly.cpp 243 const int src2[] = { 32, 32, 64, 32 }; variable
245 doDraw(canvas, &paint, src2, dst2, 2);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_inline.h 42 __inline int32 sad_4pixel(int32 src1, int32 src2, int32 mask)
46 x7 = src2 ^ src1; /* check odd/even combination */
47 if ((uint32)src2 >= (uint32)src1)
49 src1 = src2 - src1; /* subs */
53 src1 = src1 - src2;
189 __inline int32 sad_4pixel(int32 src1, int32 src2, int32 mask)
195 EOR x7, src2, src1; /* check odd/even combination */ local
196 SUBS src1, src2, src1; local
208 __inline int32 sad_4pixelN(int32 src1, int32 src2, int32 mask)
214 EOR x7, src2, src1; /* check odd/even combination * local
215 ADDS src1, src2, src1; local
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertAnnotationTest.java 306 CompilationUnit src2 = new CompilationUnit("a.Kind", local
311 IApi api = convert(src1, src2);
343 CompilationUnit src2 = new CompilationUnit("a.Kind", local
348 IApi api = convert(src1, src2);
371 CompilationUnit src2 = new CompilationUnit("a.Kind", local
376 IApi api = convert(src1, src2);
425 CompilationUnit src2 = new CompilationUnit("a.AA", local
428 IApi api = convert(src1, src2);
456 CompilationUnit src2 = new CompilationUnit("a.AA", local
460 IApi api = convert(src1, src2);
483 CompilationUnit src2 = new CompilationUnit("a.AA", local
    [all...]

Completed in 767 milliseconds

1 2 3