HomeSort by relevance Sort by last modified time
    Searched refs:src_pixel (Results 1 - 8 of 8) sorted by null

  /external/skia/src/opts/
SkMorphologyImageFilter_opts.h 36 __m128i src_pixel = _mm_cvtsi32_si128(*p); local
37 extreme = (type == kDilate) ? _mm_max_epu8(src_pixel, extreme)
38 : _mm_min_epu8(src_pixel, extreme);
68 uint8x8_t src_pixel = vreinterpret_u8_u32(vdup_n_u32(*p)); local
69 extreme = (type == kDilate) ? vmax_u8(src_pixel, extreme)
70 : vmin_u8(src_pixel, extreme);
SkBlitRow_opts_SSE2.cpp 44 __m128i src_pixel = _mm_loadu_si128(s); local
47 __m128i result = SkPMLerp_SSE2(src_pixel, dst_pixel, src_scale);
85 __m128i src_pixel = _mm_loadu_si128(s); local
88 __m128i result = SkBlendARGB32_SSE2(src_pixel, dst_pixel, alpha);
  /external/opencv/cvaux/src/
cvbgfg_gaussmix.cpp 82 static int icvMatchTest( double* src_pixel, int nChannels, int* match,
84 /*static int icvMatchTest2( double* src_pixel, int nChannels, int* match,
94 static void icvUpdateFullWindow( double* src_pixel, int nChannels,
102 static void icvUpdatePartialWindow( double* src_pixel, int nChannels, int* match,
104 static void icvUpdatePartialNoMatch( double* src_pixel, int nChannels,
376 static int icvMatchTest( double* src_pixel, int nChannels, int* match,
388 double d = g_point->g_values[k].mean[m]- src_pixel[m];
404 static int icvMatchTest2( double* src_pixel, int nChannels, int* match,
419 double d = g_point->g_values[k].mean[m]- src_pixel[m];
436 static void icvUpdateFullWindow( double* src_pixel, int nChannels, int* match
    [all...]
  /external/pdfium/core/fxge/dib/
fx_dib_engine.cpp 616 const uint8_t* src_pixel = src_scan + j * Bpp; local
617 dest_b_c += pixel_weight * (*src_pixel++);
618 dest_g_m += pixel_weight * (*src_pixel++);
619 dest_r_y += pixel_weight * (*src_pixel);
648 const uint8_t* src_pixel = src_scan + j * Bpp; local
650 pixel_weight = pixel_weight * src_pixel[3] / 255;
654 dest_b_c += pixel_weight * (*src_pixel++);
655 dest_g_m += pixel_weight * (*src_pixel++);
656 dest_r_y += pixel_weight * (*src_pixel);
770 const uint8_t* src_pixel local
808 const uint8_t* src_pixel = local
    [all...]
fx_dib_convert.cpp 465 uint8_t src_pixel; local
467 src_pixel = *src_scan++;
468 *dest_scan++ = src_pixel;
469 *dest_scan++ = src_pixel;
470 *dest_scan = src_pixel;
565 uint8_t* src_pixel = bgr_ptr + 3 * (*src_scan++); local
566 *dest_scan++ = *src_pixel++;
567 *dest_scan++ = *src_pixel++;
568 *dest_scan = *src_pixel++;
fx_dib_transform.cpp 625 const uint8_t* src_pixel = local
627 *dest_scan = *src_pixel;
    [all...]
  /external/pdfium/core/fxcodec/codec/
fx_codec_progress.cpp 1500 const uint8_t* src_pixel = src_scan + j * src_Bpp; local
1514 const uint8_t* src_pixel = src_scan + j * src_Bpp; local
1595 const uint8_t* src_pixel = src_scan + j * src_Bpp; local
1611 const uint8_t* src_pixel = src_scan + j * src_Bpp; local
1631 const uint8_t* src_pixel = src_scan + j * src_Bpp; local
    [all...]
  /external/webp/src/mux/
anim_encode.c 644 const uint32_t src_pixel = src->argb[j * src->argb_stride + i]; local
647 if (dst_alpha != 0xff && src_pixel != dst_pixel) {
668 const uint32_t src_pixel = src->argb[j * src->argb_stride + i]; local
672 !PixelsAreSimilar(src_pixel, dst_pixel, max_allowed_diff_lossy)) {
735 const uint32_t src_pixel = psrc[x + y * src->argb_stride]; local
736 const int alpha = src_pixel >> 24;
738 PixelsAreSimilar(src_pixel, pdst[x + y * dst->argb_stride],
741 avg_r += (src_pixel >> 16) & 0xff;
742 avg_g += (src_pixel >> 8) & 0xff;
743 avg_b += (src_pixel >> 0) & 0xff
    [all...]

Completed in 484 milliseconds