HomeSort by relevance Sort by last modified time
    Searched full:dst_width (Results 51 - 75 of 117) sorted by null

1 23 4 5

  /external/webp/src/dsp/
rescaler.c 30 const int x_out_max = wrk->dst_width * wrk->num_channels;
61 const int x_out_max = wrk->dst_width * wrk->num_channels;
99 const int x_out_max = wrk->dst_width * wrk->num_channels;
130 const int x_out_max = wrk->dst_width * wrk->num_channels;
178 assert(wrk->src_width == 1 && wrk->dst_width <= 2);
180 for (i = 0; i < wrk->num_channels * wrk->dst_width; ++i) {
rescaler_mips32.c 26 const int x_out_max = wrk->dst_width * wrk->num_channels;
85 const int x_out_max = wrk->dst_width * wrk->num_channels;
150 const int x_out_max = wrk->dst_width * wrk->num_channels;
211 const int x_out_max = wrk->dst_width * wrk->num_channels;
rescaler_sse2.c 47 const rescaler_t* const frow_end = frow + wrk->dst_width * wrk->num_channels;
122 const rescaler_t* const frow_end = wrk->frow + 4 * wrk->dst_width;
232 const int x_out_max = wrk->dst_width * wrk->num_channels;
292 const int x_out_max = wrk->dst_width * wrk->num_channels;
rescaler_neon.c 63 const int x_out_max = wrk->dst_width * wrk->num_channels;
119 const int x_out_max = wrk->dst_width * wrk->num_channels;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 146 * by dst_width, the actual result type will have the same width.
149 * return { i32, i32, i32, i32 } where each value is in [0, 2^dst_width-1].
154 unsigned dst_width,
163 assert(dst_width <= src_type.width);
168 if (dst_width <= mantissa) {
181 ubound = (1ULL << dst_width);
184 bias = (double)(1ULL << (mantissa - dst_width));
192 else if (dst_width == (mantissa + 1)) {
201 scale = (double)((1ULL << dst_width) - 1);
224 unsigned n = MIN2(src_type.width - 1, dst_width);
    [all...]
lp_bld_conv.h 53 unsigned dst_width,
  /external/opencv3/3rdparty/libwebp/utils/
rescaler.h 34 int dst_width, dst_height; // destination dimensions member in struct:__anon21920
43 int dst_width, int dst_height, int dst_stride,
  /external/webp/src/utils/
rescaler.h 42 int dst_width, dst_height; // destination dimensions member in struct:WebPRescaler
53 int dst_width, int dst_height, int dst_stride,
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
mjpeg_decoder.h 136 // dst_width must match exactly. dst_height must be <= to image height; if
142 LIBYUV_BOOL DecodeToBuffers(uint8** planes, int dst_width, int dst_height);
149 int dst_width, int dst_height);
  /external/libyuv/files/include/libyuv/
mjpeg_decoder.h 136 // dst_width must match exactly. dst_height must be <= to image height; if
142 LIBYUV_BOOL DecodeToBuffers(uint8** planes, int dst_width, int dst_height);
149 int dst_width, int dst_height);
convert_argb.h 266 // dst_width/height for clipping determine final size.
271 int dst_width, int dst_height);
276 // Normally this would be the same as dst_width, with recommended alignment
281 // Normally this would be the same as (dst_width + 1) / 2, with
285 // To center, crop_x = (src_width - dst_width) / 2
  /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;
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_blit.c 455 * @param[in] dst_width destination image width
476 unsigned dst_width,
501 if (reg_width + dst_x_offset > dst_width)
502 reg_width = dst_width - dst_x_offset;
540 emit_cb_setup(r200, dst_bo, dst_offset, dst_mesaformat, dst_pitch, dst_width, dst_height);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_blit.c 333 * @param[in] dst_width destination image width
354 unsigned dst_width,
379 if (reg_width + dst_x_offset > dst_width)
380 reg_width = dst_width - dst_x_offset;
418 emit_cb_setup(r100, dst_bo, dst_offset, dst_mesaformat, dst_pitch, dst_width, dst_height);
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
simulcast_encoder_adapter.cc 276 int dst_width = streaminfos_[stream_idx].width; local
283 if ((dst_width == src_width && dst_height == src_height) ||
291 dst_frame.CreateEmptyFrame(dst_width, dst_height, dst_width,
292 (dst_width + 1) / 2, (dst_width + 1) / 2);
299 dst_frame.buffer(kVPlane), dst_frame.stride(kVPlane), dst_width,
  /external/libgdx/gdx/jni/gdx2d/
gdx2d.c 810 int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) {
819 float x_ratio = ((float)src_width - 1)/ dst_width;
838 for(j = 0 ;j < dst_width; j++) {
891 int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) {
900 uint32_t x_ratio = (src_width << 16) / dst_width + 1;
916 for(j = 0 ;j < dst_width; j++) {
940 int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) {
942 blit_linear(src_pixmap, dst_pixmap, src_x, src_y, src_width, src_height, dst_x, dst_y, dst_width, dst_height);
944 blit_bilinear(src_pixmap, dst_pixmap, src_x, src_y, src_width, src_height, dst_x, dst_y, dst_width, dst_height);
949 int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height) {
    [all...]
gdx2d.h 89 int32_t dst_x, int32_t dst_y, uint32_t dst_width, uint32_t dst_height);
  /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;
  /external/webrtc/webrtc/common_video/libyuv/
scaler_unittest.cc 30 int dst_width, int dst_height);
343 int dst_width, int dst_height) {
346 dst_width, dst_height,
388 src_width, src_height, dst_width, dst_height);
webrtc_libyuv.cc 240 int dst_width = dst_frame->width(); local
245 dst_width = dst_frame->height();
257 dst_width, dst_height,
  /external/webrtc/webrtc/base/
x11windowpicker.cc 447 int dst_width,
482 dst_width,
507 dst_width,
511 double scale_x = static_cast<double>(dst_width) /
521 int centered_x = (dst_width - scaled_width) / 2;
556 dst_width,
561 scaled_height, dst_width, dst_height, false);
  /external/libvpx/libvpx/third_party/libyuv/source/
mjpeg_decoder.cc 248 uint8** planes, int dst_width, int dst_height) {
249 if (dst_width != GetWidth() ||
340 int dst_width, int dst_height) {
341 if (dst_width != GetWidth() ||
  /external/libyuv/files/source/
mjpeg_decoder.cc 247 uint8** planes, int dst_width, int dst_height) {
248 if (dst_width != GetWidth() ||
339 int dst_width, int dst_height) {
340 if (dst_width != GetWidth() ||
  /external/libyuv/files/unit_test/
unit_test.h 58 int dst_width, int dst_height) {
60 dst_width > kMaxWidth || dst_height > kMaxHeight) {
  /external/webrtc/talk/app/webrtc/
androidvideocapturer.cc 83 int dst_width,
90 ShallowCenterCrop(buffer_, dst_width, dst_height),

Completed in 886 milliseconds

1 23 4 5