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

1 2

  /external/chromium_org/chrome/browser/ui/views/profiles/
avatar_menu_button.cc 75 int dst_height = Round(button_icon_.height() * scale); local
80 int dst_y = Round((height() - dst_height) / 2.0);
82 button_icon_.height(), dst_x, dst_y, dst_width, dst_height, false);
  /external/libyuv/files/unit_test/
rotate_argb_test.cc 21 int dst_width, int dst_height,
30 int dst_argb_plane_size = (dst_width + b * 2) * (dst_height + b * 2) * 4;
84 for (i = b; i < (dst_height + b); ++i) {
103 const int dst_height = 720; local
106 dst_width, dst_height, kRotate0,
115 const int dst_height = 1280; local
118 dst_width, dst_height, kRotate90,
127 const int dst_height = 720; local
130 dst_width, dst_height, kRotate180,
139 const int dst_height = 1280 local
151 const int dst_height = 719; local
163 const int dst_height = 1277; local
175 const int dst_height = 719; local
187 const int dst_height = 1277; local
    [all...]
scale_argb_test.cc 21 int dst_width, int dst_height,
30 int dst_argb_plane_size = (dst_width + b * 2) * (dst_height + b * 2) * 4;
52 dst_width, dst_height, f);
57 dst_width, dst_height, f);
65 dst_width, dst_height, f);
75 dst_width, dst_height, f);
88 for (i = b; i < (dst_height + b); ++i) {
108 const int dst_height = src_height / 2; local
112 dst_width, dst_height,
123 const int dst_height = src_height / 4 local
138 const int dst_height = src_height \/ 5; local
153 const int dst_height = src_height \/ 8; local
168 const int dst_height = src_height \/ 16; local
183 const int dst_height = src_height * 3 \/ 4; local
198 int dst_height = src_height * 3 \/ 8; local
213 int dst_height = 768; local
228 int dst_height = 1272; local
244 int dst_height = 480; local
    [all...]
scale_test.cc 21 int dst_width, int dst_height,
38 int dst_height_uv = (dst_height + rounding) >> 1;
40 int dst_y_plane_size = (dst_width + b * 2) * (dst_height + b * 2);
78 dst_width, dst_height, f);
87 dst_width, dst_height, f);
99 dst_width, dst_height, f);
113 dst_width, dst_height, f);
126 for (i = b; i < (dst_height + b); ++i) {
169 const int dst_height = src_height / 2; local
173 dst_width, dst_height,
184 const int dst_height = src_height \/ 4; local
199 const int dst_height = src_height \/ 5; local
214 const int dst_height = src_height \/ 8; local
229 const int dst_height = src_height \/ 16; local
244 const int dst_height = src_height * 3 \/ 4; local
259 int dst_height = src_height * 3 \/ 8; local
274 int dst_height = 768; local
289 int dst_height = 1272; local
304 int dst_height = 480; local
319 int dst_height = 480; local
335 int dst_height = 552; local
350 int dst_height = 276; local
365 int dst_height = 276; local
    [all...]
  /external/chromium_org/content/renderer/media/webrtc/
webrtc_video_capturer_adapter.cc 140 const int dst_height = src->natural_size().height(); local
142 src->visible_rect().height() >= dst_height);
169 uint8* dst_u = dst_y + dst_width * dst_height;
171 const int dst_halfheight = (dst_height + 1) / 2;
189 dst_height,
  /external/chromium_org/third_party/libwebp/utils/
rescaler.h 34 int dst_width, dst_height; // destination dimensions member in struct:__anon17928
44 int dst_width, int dst_height, int dst_stride,
  /external/webp/src/utils/
rescaler.h 34 int dst_width, dst_height; // destination dimensions member in struct:__anon37979
44 int dst_width, int dst_height, int dst_stride,
  /external/chromium_org/content/renderer/pepper/
pepper_video_source_host.cc 132 const int dst_height = frame->visible_rect().height(); local
140 dst_height == shared_image_->height()) {
175 PP_MakeSize(dst_width, dst_height),
224 DCHECK(src_width >= dst_width && src_height >= dst_height);
246 dst_height);
pepper_media_stream_video_track_host.cc 137 int dst_height = dst_size.height(); local
145 dst_height,
147 dst += dst_width * dst_height;
151 const int dst_halfheight = (dst_height + 1) >> 1;
  /external/chromium_org/third_party/webrtc/common_video/libyuv/
webrtc_libyuv.cc 237 int dst_height = dst_frame->height(); local
242 dst_height =dst_frame->width();
253 dst_width, dst_height,
  /external/chromium_org/third_party/libyuv/util/
convert.cc 32 int dst_width = 0, dst_height = 0; // new width and height variable
96 dst_height = atoi(argv[++c]); // NOLINT
147 if (dst_width == 0 || dst_height == 0) {
150 dst_height = rec_height;
153 dst_height = Abs(image_height);
164 int dst_width, int dst_height,
166 for (int y = 0; y < dst_height; y += kTileY) {
173 if (y + clip_height > dst_height) {
174 clip_height = dst_height - y;
179 dst_width, dst_height,
    [all...]
  /external/pixman/test/
affine-test.c 34 int dst_width, dst_height; local
60 dst_height = prng_rand_n (MAX_DST_HEIGHT) + 1;
73 dst_y = -(dst_height / 4) + prng_rand_n (dst_height * 3 / 2);
75 h = prng_rand_n (dst_height * 3 / 2 - dst_y);
78 dstbuf = (uint32_t *)malloc (dst_stride * dst_height);
81 prng_randmemset (dstbuf, dst_stride * dst_height, 0);
93 dst_fmt, dst_width, dst_height, dstbuf, dst_stride);
213 printf ("src_width=%d, src_height=%d, dst_width=%d, dst_height=%d\n",
214 src_width, src_height, dst_width, dst_height);
    [all...]
blitters-test.c 230 int dst_width, dst_height; local
282 dst_height = pixman_image_get_height (dst_img);
291 dst_y = prng_rand_n (dst_height);
337 h = prng_rand_n (dst_height - dst_y + 1);
345 printf ("src_width=%d, src_height=%d, dst_width=%d, dst_height=%d\n",
346 src_width, src_height, dst_width, dst_height);
362 for (i = 0; i < dst_height; i++)
composite-traps-test.c 54 int dst_width, dst_height; local
150 dst_height = prng_rand_n (MAX_DST_HEIGHT) + 1;
154 dst_bits = (uint32_t *)make_random_bytes (dst_stride * dst_height);
157 dst_y = -(dst_height / 4) + prng_rand_n (dst_height * 3 / 2);
160 dst_format, dst_width, dst_height, dst_bits, dst_stride);
196 clip_boxes[i].y1 = prng_rand_n (dst_height);
200 clip_boxes[i].y1 + prng_rand_n (dst_height - clip_boxes[i].y1);
220 for (i = 0; i < dst_stride * dst_height / 4; i++)
230 for (i = 0; i < dst_height; i++
    [all...]
scaling-test.c 60 int dst_width, dst_height; local
114 dst_height = prng_rand_n (MAX_DST_HEIGHT) + 1;
135 dst_y = -(dst_height / 4) + prng_rand_n (dst_height * 3 / 2);
137 h = prng_rand_n (dst_height * 3 / 2 - dst_y);
141 dstbuf = (uint32_t *)malloc (dst_stride * dst_height);
145 prng_randmemset (dstbuf, dst_stride * dst_height, 0);
157 dst_fmt, dst_width, dst_height, dstbuf, dst_stride);
248 printf ("src_width=%d, src_height=%d, dst_width=%d, dst_height=%d\n",
249 src_width, src_height, dst_width, dst_height);
    [all...]
  /frameworks/native/services/surfaceflinger/
DisplayDevice.cpp 460 float dst_height = frame.height(); local
461 if (src_width != dst_width || src_height != dst_height) {
463 float sy = dst_height / src_height;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_blit.c 389 unsigned dst_height = u_minify(info->dst.res->height0, info->dst.level); local
395 dst_height == info->src.res->height0 &&
399 info->dst.y1 == dst_height &&
403 info->src.y1 == dst_height &&
  /external/mesa3d/src/gallium/drivers/r600/
r600_blit.c 389 unsigned dst_height = u_minify(info->dst.res->height0, info->dst.level); local
395 dst_height == info->src.res->height0 &&
399 info->dst.y1 == dst_height &&
403 info->src.y1 == dst_height &&
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp 117 int i, j, dst_width, dst_height, dst_widthc, dst_heightc; local
194 dst_height = 20;
202 dst_height = 16;
232 for (j = 0; j < dst_height; j++)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_blitter.c 118 unsigned dst_height; member in struct:blitter_context_priv
504 ctx->vertices[0][0][1] = (float)y1 / ctx->dst_height * 2.0f - 1.0f; /*v0.y*/
507 ctx->vertices[1][0][1] = (float)y1 / ctx->dst_height * 2.0f - 1.0f; /*v1.y*/
510 ctx->vertices[2][0][1] = (float)y2 / ctx->dst_height * 2.0f - 1.0f; /*v2.y*/
513 ctx->vertices[3][0][1] = (float)y2 / ctx->dst_height * 2.0f - 1.0f; /*v3.y*/
520 ctx->viewport.scale[1] = 0.5f * ctx->dst_height;
524 ctx->viewport.translate[1] = 0.5f * ctx->dst_height;
653 ctx->dst_height = height;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_blitter.c 118 unsigned dst_height; member in struct:blitter_context_priv
504 ctx->vertices[0][0][1] = (float)y1 / ctx->dst_height * 2.0f - 1.0f; /*v0.y*/
507 ctx->vertices[1][0][1] = (float)y1 / ctx->dst_height * 2.0f - 1.0f; /*v1.y*/
510 ctx->vertices[2][0][1] = (float)y2 / ctx->dst_height * 2.0f - 1.0f; /*v2.y*/
513 ctx->vertices[3][0][1] = (float)y2 / ctx->dst_height * 2.0f - 1.0f; /*v3.y*/
520 ctx->viewport.scale[1] = 0.5f * ctx->dst_height;
524 ctx->viewport.translate[1] = 0.5f * ctx->dst_height;
653 ctx->dst_height = height;
    [all...]
  /external/pdfium/core/src/fxge/win32/
fx_win32_device.cpp 497 int dst_height = dst_rect.Height(); local
498 ::StretchDIBits(m_hDC, left, top, dst_width, dst_height,
499 0, 0, dst_width, dst_height, pBuffer, (BITMAPINFO*)(FX_LPCSTR)info, DIB_RGB_COLORS, SRCCOPY);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
bilin_scaler.c 137 unsigned int dst_height = parms.dst_pixel_height; local
157 unsigned int dst_picture_size = dst_width*dst_height;
170 float y_scale = (float)src_height/(float)dst_height;
228 for( dst_vu=0; dst_vu<(dst_height>>1)-1; dst_vu++ ) {
443 unsigned int dst_height = parms.dst_pixel_height; local
458 unsigned int dst_picture_size = dst_width*dst_height;
476 float y_scale = (float)src_height/(float)dst_height;
533 for( dst_vu=0; dst_vu<(dst_height>>1)-1; dst_vu++ ) {
746 unsigned int dst_height = parms.dst_pixel_height; local
761 unsigned int dst_picture_size = dst_width*dst_height;
1034 unsigned int dst_height = parms.dst_pixel_height; local
    [all...]
  /bionic/libc/kernel/uapi/drm/
i915_drm.h 645 __u16 dst_height; member in struct:drm_intel_overlay_put_image
  /external/kernel-headers/original/uapi/drm/
i915_drm.h 960 __u16 dst_height; member in struct:drm_intel_overlay_put_image
    [all...]

Completed in 802 milliseconds

1 2