| /external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
| convert_argb.h | 186 // src_width/height provided by capture 191 int src_width, int src_height, 207 // To center, crop_x = (src_width - dst_width) / 2 209 // "src_width" / "src_height" is size of src_frame in pixels. 212 // Must be less than or equal to src_width/src_height 221 int src_width, int src_height,
|
| convert.h | 191 // src_width/height provided by capture. 198 int src_width, int src_height, 219 // To center, crop_x = (src_width - dst_width) / 2 221 // "src_width" / "src_height" is size of src_frame in pixels. 224 // Must be less than or equal to src_width/src_height 235 int src_width, int src_height,
|
| /external/mesa3d/src/gallium/state_trackers/va/ |
| va_image.c | 144 int src_x, int src_y, unsigned int src_width, unsigned int src_height,
|
| va_subpicture.c | 123 unsigned short src_width, unsigned short src_height,
|
| va_private.h | 119 unsigned int src_width, 137 unsigned short src_width,
|
| /external/webp/src/dsp/ |
| yuv.c | 179 int src_width, int do_store) { 181 const int uv_width = src_width >> 1; 202 if (src_width & 1) { // last pixel 254 int src_width, int do_store);
|
| /external/libvpx/libvpx/third_party/libyuv/source/ |
| scale_any.cc | 173 void NAMEANY(const uint8* src_ptr, uint16* dst_ptr, int src_width) { \ 174 int n = src_width & ~MASK; \ 178 SCALEADDROW_C(src_ptr + n, dst_ptr + n, src_width & MASK); \
|
| scale_neon.cc | 545 uint16* dst_ptr, int src_width, int src_height) { 571 "+r"(src_width), // %4 [all...] |
| scale_neon64.cc | 549 uint16* dst_ptr, int src_width, int src_height) { 574 "+r"(src_width), // %4 [all...] |
| /external/libyuv/files/source/ |
| scale_any.cc | 194 void NAMEANY(const uint8* src_ptr, uint16* dst_ptr, int src_width) { \ 195 int n = src_width & ~MASK; \ 199 SCALEADDROW_C(src_ptr + n, dst_ptr + n, src_width & MASK); \
|
| scale_neon.cc | 534 uint16* dst_ptr, int src_width, int src_height) { 559 "+r"(src_width), // %4 [all...] |
| scale_neon64.cc | 549 uint16* dst_ptr, int src_width, int src_height) { 574 "+r"(src_width), // %4 [all...] |
| /hardware/qcom/display/msm8996/sdm/libs/hwc/ |
| hwc_display_external.cpp | 227 static void AdjustSourceResolution(uint32_t dst_width, uint32_t dst_height, uint32_t *src_width, 229 *src_height = (dst_width * (*src_height)) / (*src_width); 230 *src_width = dst_width;
|
| /hardware/qcom/display/msm8996/sdm/libs/hwc2/ |
| hwc_display_external.cpp | 191 static void AdjustSourceResolution(uint32_t dst_width, uint32_t dst_height, uint32_t *src_width, 193 *src_height = (dst_width * (*src_height)) / (*src_width); 194 *src_width = dst_width;
|
| /hardware/qcom/display/msmcobalt/sdm/libs/hwc/ |
| hwc_display_external.cpp | 231 static void AdjustSourceResolution(uint32_t dst_width, uint32_t dst_height, uint32_t *src_width, 233 *src_height = (dst_width * (*src_height)) / (*src_width); 234 *src_width = dst_width;
|
| /hardware/qcom/display/msmcobalt/sdm/libs/hwc2/ |
| hwc_display_external.cpp | 191 static void AdjustSourceResolution(uint32_t dst_width, uint32_t dst_height, uint32_t *src_width, 193 *src_height = (dst_width * (*src_height)) / (*src_width); 194 *src_width = dst_width;
|
| /external/libyuv/files/include/libyuv/ |
| scale_row.h | 121 enum FilterMode ScaleFilterReduce(int src_width, int src_height, 140 void ScaleSlope(int src_width, int src_height, 209 void ScaleAddRow_C(const uint8* src_ptr, uint16* dst_ptr, int src_width); 210 void ScaleAddRow_16_C(const uint16* src_ptr, uint32* dst_ptr, int src_width); 317 void ScaleAddRow_SSE2(const uint8* src_ptr, uint16* dst_ptr, int src_width); 318 void ScaleAddRow_AVX2(const uint8* src_ptr, uint16* dst_ptr, int src_width); 319 void ScaleAddRow_Any_SSE2(const uint8* src_ptr, uint16* dst_ptr, int src_width); 320 void ScaleAddRow_Any_AVX2(const uint8* src_ptr, uint16* dst_ptr, int src_width); 468 void ScaleAddRow_NEON(const uint8* src_ptr, uint16* dst_ptr, int src_width); 469 void ScaleAddRow_Any_NEON(const uint8* src_ptr, uint16* dst_ptr, int src_width); [all...] |
| convert.h | 189 // src_width/height provided by capture. 196 int src_width, int src_height, 217 // To center, crop_x = (src_width - dst_width) / 2 219 // "src_width" / "src_height" is size of src_frame in pixels. 222 // Must be less than or equal to src_width/src_height 233 int src_width, int src_height,
|
| convert_argb.h | 265 // src_width/height provided by capture 270 int src_width, int src_height, 285 // To center, crop_x = (src_width - dst_width) / 2 287 // "src_width" / "src_height" is size of src_frame in pixels. 290 // Must be less than or equal to src_width/src_height 299 int src_width, int src_height,
|
| /external/mesa3d/src/gallium/auxiliary/gallivm/ |
| lp_bld_conv.c | 271 * Ex: src = { i32, i32, i32, i32 } with values in range [0, 2^src_width-1] 276 unsigned src_width, 296 if (src_width <= (mantissa + 1)) { 303 scale = 1.0/(double)((1ULL << src_width) - 1); 315 n = MIN2(mantissa, src_width); 324 if (src_width > mantissa) { 325 int shift = src_width - mantissa;
|
| /external/webrtc/webrtc/base/ |
| x11windowpicker.cc | 345 unsigned int src_width; local 372 &src_width, &src_height, &border_width, 392 uint8_t* data = GetDrawableThumbnail(src_pixmap, attr.visual, src_width, 445 int src_width, 512 static_cast<double>(src_width); 517 int scaled_width = round(src_width * scale);
|
| /external/libgdx/gdx/jni/gdx2d/ |
| gdx2d.h | 88 int32_t src_x, int32_t src_y, uint32_t src_width, uint32_t src_height,
|
| /external/pdfium/core/src/fxge/win32/ |
| fx_win32_gdipext.cpp | 483 int src_width = pSource->GetWidth(); local 486 int x_unit = src_width / dest_width; 500 src_x_start = src_x_start * src_width / dest_width; 528 int src_width = pBitmap->GetWidth(), src_height = pBitmap->GetHeight(); local 531 if (src_width == 1 && src_height == 1) { 551 if (!bMonoDevice && abs(dest_width) < src_width && 563 if (src_width * src_height > 10000) { 592 CallFunc(GdipCreateBitmapFromScan0)(src_width, src_height, src_pitch, 609 int src_width = pSrcRect->Width(), src_height = pSrcRect->Height(); local 613 FX_RECT new_rect(0, 0, src_width, src_height) [all...] |
| /hardware/intel/img/psb_video/src/ |
| psb_output.c | 678 static VAStatus lnc_unpack_topaz_rec(int src_width, int src_height, 703 for (n = 0; n < src_width / 16; n++) { 712 for (n = 0; n < src_width / 16; n++) { 734 int src_width, int src_height, 751 for (x= 32;x < src_width + 32; x++) { 754 tmp_dstY += dstY_stride - src_width; 759 for (x= 16;x < 16 + ( (src_width+1)>>1); x++) { 763 tmp_dstU += dstU_stride - ((src_width)); 772 int src_width, int src_height, 785 int mb_src_y_w = src_width >> 4 [all...] |
| /hardware/intel/common/libva/va/ |
| va_backend.h | 270 unsigned int src_width, 323 unsigned short src_width,
|