HomeSort by relevance Sort by last modified time
    Searched refs:ysize (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/u-boot/common/
lcd_simplefb.c 20 int xsize, ysize; local
36 ysize = uc_priv->ysize;
41 ysize = lcd_get_pixel_height();
56 return fdt_setup_simplefb_node(blob, off, fb_base, xsize, ysize,
  /external/libaom/libaom/third_party/fastfeat/
fast.c 6 xy* fast9_detect_nonmax(const byte* im, int xsize, int ysize, int stride, int b, int* ret_num_corners)
13 corners = fast9_detect(im, xsize, ysize, stride, b, &num_corners);
fast.h 10 xy* fast9_detect(const byte* im, int xsize, int ysize, int stride, int b, int* ret_num_corners);
14 xy* fast9_detect_nonmax(const byte* im, int xsize, int ysize, int stride, int b, int* ret_num_corners);
  /external/webp/src/enc/
near_lossless_enc.c 74 static void NearLossless(int xsize, int ysize, const uint32_t* argb_src,
85 for (y = 0; y < ysize; ++y, argb_src += stride, argb_dst += xsize) {
86 if (y == 0 || y == ysize - 1) {
114 const int ysize = picture->height; local
127 ysize < MIN_DIM_FOR_NEAR_LOSSLESS) ||
128 ysize < 3) {
129 for (i = 0; i < ysize; ++i) {
137 NearLossless(xsize, ysize, picture->argb, stride, limit_bits, copy_buffer,
140 NearLossless(xsize, ysize, argb_dst, xsize, i, copy_buffer, argb_dst);
histogram_enc.h 109 int VP8LGetHistoImageSymbols(int xsize, int ysize,
backward_references_enc.c 225 const uint32_t* const argb, int xsize, int ysize,
227 const int size = xsize * ysize;
410 static int BackwardReferencesRle(int xsize, int ysize,
413 const int pix_count = xsize * ysize;
453 static int BackwardReferencesLz77(int xsize, int ysize,
462 const int pix_count = xsize * ysize;
525 static int BackwardReferencesLz77Box(int xsize, int ysize,
531 const int pix_count = xsize * ysize;
538 (uint16_t*)WebPSafeMalloc(xsize * ysize, sizeof(*counts_ini));
670 return BackwardReferencesLz77(xsize, ysize, argb, cache_bits, hash_chain
    [all...]
backward_references_enc.h 138 const uint32_t* const argb, int xsize, int ysize,
  /external/python/cpython2/Modules/
imgfile.c 90 int xsize, ysize, zsize; local
117 ysize = image->ysize;
133 rv = PyString_FromStringAndSize((char *)NULL, xsize*ysize*zsize);
142 yfirst = ysize-1;
147 ylast = ysize;
216 xscale(IMAGE *image, int xsize, int ysize, int zsize,
222 glob_ysize = ysize;
225 filterzoom(xs_get, xs_put_c, xsize, ysize,
229 filterzoom(xs_get, xs_put_0, xsize, ysize,
246 int xsize, ysize, zsize; local
397 int xsize, ysize, zsize, len; local
    [all...]
  /external/u-boot/drivers/video/
simplefb.c 43 uc_priv->ysize = fdtdec_get_uint(blob, node, "height", 0);
47 debug("%s: %dx%d@%s\n", __func__, uc_priv->xsize, uc_priv->ysize, format);
console_rotate.c 23 for (j = 0; j < vid_priv->ysize; j++) {
75 for (j = 0; j < vid_priv->ysize; j++) {
153 line = vid_priv->fb + vid_priv->ysize * vid_priv->line_length -
198 end = vid_priv->fb + vid_priv->ysize * vid_priv->line_length;
219 line = vid_priv->fb + (vid_priv->ysize - y - 1) *
281 for (j = 0; j < vid_priv->ysize; j++) {
331 for (j = 0; j < vid_priv->ysize; j++) {
349 (vid_priv->ysize - VID_TO_PIXEL(x_frac) - 1) *
411 vc_priv->rows = vid_priv->ysize / VIDEO_FONT_HEIGHT;
424 vc_priv->cols = vid_priv->ysize / VIDEO_FONT_WIDTH
    [all...]
bcm2835.c 41 uc_priv->ysize = h;
coreboot.c 58 printf("%dx%dx%d\n", uc_priv->xsize, uc_priv->ysize,
sandbox_sdl.c 34 uc_priv->ysize = plat->yres;
video_bmp.c 254 video_splash_align_axis(&y, priv->ysize, height);
259 if ((y + height) > priv->ysize)
260 height = priv->ysize - y;
video-uclass.c 180 return priv->ysize;
217 priv->fb_size = priv->line_length * priv->ysize;
console_normal.c 144 vc_priv->rows = vid_priv->ysize / VIDEO_FONT_HEIGHT;
efi.c 126 printf("Video: %dx%dx%d\n", uc_priv->xsize, uc_priv->ysize,
  /external/freetype/src/pfr/
pfrsbit.c 413 FT_UInt xsize, ysize; local
422 ysize = 0;
462 ysize = 0;
469 ysize = b & 0xF;
475 ysize = PFR_NEXT_BYTE( p );
481 ysize = PFR_NEXT_USHORT( p );
517 *aysize = ysize;
657 FT_UInt xsize = 0, ysize = 0, format = 0; local
684 &xsize, &ysize,
695 * (xsize * ysize + 7) / 8 <= gps_siz
    [all...]
  /external/clang/test/Analysis/
cxx11-crashes.cpp 37 const float ysize={0.015}, xsize={0.01}; local
  /external/u-boot/include/
video.h 56 * @ysize: Number of pixels rows (e.g.. 768)
75 ushort ysize; member in struct:video_priv
  /external/libaom/libaom/test/
cdef_test.cc 61 const int ysize = size + 2 * CDEF_VBORDER; local
63 DECLARE_ALIGNED(16, uint16_t, s[ysize * CDEF_BSTRIDE]);
89 for (int i = 0; i < ysize; i++)
94 for (int i = 0; i < ysize; i++)
104 for (int i = CDEF_VBORDER + size; i < ysize; i++)
  /external/python/cpython2/RISCOS/Modules/
drawfmodule.c 244 int xsize,ysize,x,y; local
252 (int*)&fill,(int*)&bg_hint,(int*)&style,&xsize,&ysize)) return NULL;
268 dtext->ysize=ysize;
274 box->x0=x;box->y0=y;box->x1=x+len*xsize;box->y1=y+ysize;
282 int xsize,ysize,x,y; local
294 (int*)&fill,(int*)&bg_hint,(int*)&style,&xsize,&ysize,&t1,&t2,&t3,&t4,&t5,&t6)) return NULL;
317 dtext->ysize=ysize;
323 box->x0=x;box->y0=y;box->x1=x+len*xsize;box->y1=y+ysize;
    [all...]
  /external/u-boot/drivers/video/sunxi/
sunxi_de2.c 221 uc_priv->ysize = timing.vactive.typ;
223 debug("fb=%lx, size=%d %d\n", fbbase, uc_priv->xsize, uc_priv->ysize);
397 de2_priv->xsize, de2_priv->ysize,
  /external/u-boot/arch/x86/lib/fsp/
fsp_graphics.c 100 printf("%dx%dx%d\n", uc_priv->xsize, uc_priv->ysize,
  /external/tensorflow/tensorflow/compiler/xla/client/lib/
svd_test.cc 125 Array2D<float> GenerateRandomMatrix(int xsize, int ysize) {
126 Array2D<float> result{xsize, ysize, 0.0};

Completed in 984 milliseconds

1 2 3