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

1 2

  /external/syslinux/com32/lib/syslinux/video/
reportmode.c 36 void syslinux_report_video_mode(uint16_t flags, uint16_t xsize, uint16_t ysize)
41 using_vga(flags, xsize, ysize);
  /external/syslinux/com32/include/syslinux/
video.h 40 void syslinux_report_video_mode(uint16_t flags, uint16_t xsize, uint16_t ysize);
  /external/syslinux/utils/
lss16toppm 44 ($magic, $xsize, $ysize, @colorset) = unpack("Vvvc48", $header);
82 print "$xsize $ysize\n";
85 for ( $y = 0 ; $y < $ysize ; $y++ ) {
ppmtolss16 21 ## uint16 ysize ; littleendian
218 $ysize = get_numeric_token();
228 for ( $y = 0 ; $y < $ysize ; $y++ ) {
231 die "$0: Premature EOF at ($x,$y) of ($xsize,$ysize)\n"
304 print pack("Vvv", $magic, $xsize, $ysize);
370 for ( $y = 0 ; $y < $ysize ; $y++ ) {
390 $pixels = $xsize * $ysize;
  /external/webp/src/enc/
near_lossless_enc.c 72 static void NearLossless(int xsize, int ysize, uint32_t* argb,
81 for (y = 1; y < ysize - 1; ++y) {
100 int VP8ApplyNearLossless(int xsize, int ysize, uint32_t* argb, int quality) {
112 if (xsize < MIN_DIM_FOR_NEAR_LOSSLESS && ysize < MIN_DIM_FOR_NEAR_LOSSLESS) {
118 NearLossless(xsize, ysize, argb, i, copy_buffer);
histogram_enc.h 101 int VP8LGetHistoImageSymbols(int xsize, int ysize,
backward_references_enc.c 247 const uint32_t* const argb, int xsize, int ysize,
249 const int size = xsize * ysize;
450 static int BackwardReferencesRle(int xsize, int ysize,
453 const int pix_count = xsize * ysize;
493 static int BackwardReferencesLz77(int xsize, int ysize,
502 const int pix_count = xsize * ysize;
570 int xsize, int ysize, const uint32_t* const argb, int quality,
    [all...]
backward_references_enc.h 133 const uint32_t* const argb, int xsize, int ysize,
vp8i_enc.h 507 int VP8ApplyNearLossless(int xsize, int ysize, uint32_t* argb, int quality);
509 void VP8ApplyNearLosslessPredict(int xsize, int ysize, int pred_bits,
predictor_enc.c 657 int quality, int xsize, int ysize,
665 const int all_y_max = GetMin(tile_y_offset + max_tile_size, ysize);
681 static void CopyTileWithColorTransform(int xsize, int ysize,
687 int yscan = GetMin(max_tile_size, ysize - tile_y);
  /external/clang/test/Analysis/
cxx11-crashes.cpp 37 const float ysize={0.015}, xsize={0.01}; local
  /external/syslinux/com32/lib/sys/vesa/
background.c 85 int ysize = __vesa_info.mi.v_res; local
91 for (y = 0 ; y < ysize ; y += height) {
92 yl = min(height, ysize-y);
297 uint16_t ysize; member in struct:lss16_header
311 h->ysize <= __vesa_info.mi.v_res);
346 for (y = 0; y < h->ysize; y++) {
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndbdic.c 450 NJ_INT8 ysize; local
462 ysize = YOMI_INDX_SIZE(hdl);
467 if (ysize == 2) {
470 ytbl = ytbl_top + ((yidx-1) * ysize);
489 NJ_INT8 ysize; local
500 ysize = YOMI_INDX_SIZE(hdl);
511 ytbl = ytbl_top + ((yidx - 1) * ysize);
512 if (ysize == 2) {
564 NJ_UINT16 ysize = (condition->ylen * sizeof(NJ_CHAR)); local
608 ysize = 0
1994 NJ_UINT16 ysize = yomilen * sizeof(NJ_CHAR); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_types.py 131 xsize, ysize, zsize = 238, 356, 4
132 if not (xsize*ysize*zsize == zsize*xsize*ysize == 338912):
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_types.py 131 xsize, ysize, zsize = 238, 356, 4
132 if not (xsize*ysize*zsize == zsize*xsize*ysize == 338912):
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_types.py 131 xsize, ysize, zsize = 238, 356, 4
132 if not (xsize*ysize*zsize == zsize*xsize*ysize == 338912):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_types.py 131 xsize, ysize, zsize = 238, 356, 4
132 if not (xsize*ysize*zsize == zsize*xsize*ysize == 338912):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_types.py 131 xsize, ysize, zsize = 238, 356, 4
132 if not (xsize*ysize*zsize == zsize*xsize*ysize == 338912):
  /external/libpng/contrib/libtests/
makepng.c 817 unsigned int ysize; local
833 ysize = 1U;
839 ysize = 256U;
844 ysize = size;
884 png_set_IHDR(png_ptr, info_ptr, size, ysize, bit_depth, color_type,
964 for (y=0; y<ysize; ++y)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
fmmodule.c 99 info.ysize,
  /external/webp/src/dec/
frame_dec.c 408 const int ysize = extra_y_rows * dec->cache_y_stride_; local
412 uint8_t* const ydst = dec->cache_y_ - ysize + y_offset;
488 memcpy(dec->cache_y_ - ysize, ydst + 16 * dec->cache_y_stride_, ysize);
vp8l_dec.c 104 static int DecodeImageStream(int xsize, int ysize,
358 static int ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize,
376 const int huffman_ysize = VP8LSubSampleSize(ysize, huffman_precision);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/
gmp.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/
gmp.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/include/
gmp.h     [all...]

Completed in 1699 milliseconds

1 2