HomeSort by relevance Sort by last modified time
    Searched refs:rle (Results 1 - 13 of 13) sorted by null

  /external/pdfium/core/fxcodec/lbmp/
fx_bmp.cpp 822 uint8_t rle[2] = {0}; local
830 rle[0] = bmp_rle8_search(&bmp_ptr->src_buf[index + i], size - index - i);
831 rle[1] = bmp_ptr->src_buf[index + i];
832 if (i + rle[0] >= (int32_t)bmp_ptr->src_pitch) {
833 rle[0] = uint8_t(bmp_ptr->src_pitch - i);
834 if (rle[0]) {
835 dst_buf[dst_pos++] = rle[0];
836 dst_buf[dst_pos++] = rle[1];
843 i += rle[0];
844 dst_buf[dst_pos++] = rle[0]
867 uint8_t rle[2] = {0}; local
    [all...]
  /packages/services/BuiltInPrintService/jni/plugins/genPCLm/inc/
common_defines.h 37 rle enumerator in enum:__anon44621
  /external/zopfli/src/zopfli/
deflate.c 112 unsigned* rle = 0; local
113 unsigned* rle_bits = 0; /* Extra bits for rle values 16, 17 and 18. */
114 size_t rle_size = 0; /* Size of rle array. */
158 ZOPFLI_APPEND_DATA(18, &rle, &rle_size);
169 ZOPFLI_APPEND_DATA(17, &rle, &rle_size);
183 ZOPFLI_APPEND_DATA(symbol, &rle, &rle_size);
189 ZOPFLI_APPEND_DATA(16, &rle, &rle_size);
201 ZOPFLI_APPEND_DATA(symbol, &rle, &rle_size);
225 unsigned symbol = clsymbols[rle[i]];
226 AddHuffmanBits(symbol, clcl[rle[i]], bp, out, outsize)
    [all...]
  /external/ImageMagick/coders/
Android.mk 110 rle.c\
Make.com 110 $call Make rle.c
157 pdf,pes,pict,pix,plasma,png,pnm,preview,ps,ps2,ps3,psd,pwp,raw,rgb,rla,rle, -
  /external/icu/icu4c/source/tools/genrb/
Makefile.in 41 wrtjava.o rle.o wrtxml.o prscmnts.o
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_binascii.py 148 # Perform binhex4 style RLE-compression
150 rle = binascii.rlecode_hqx(self.data)
151 a = binascii.b2a_hqx(self.type2test(rle))
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_binascii.py 148 # Perform binhex4 style RLE-compression
150 rle = binascii.rlecode_hqx(self.data)
151 a = binascii.b2a_hqx(self.type2test(rle))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_binascii.py 148 # Perform binhex4 style RLE-compression
150 rle = binascii.rlecode_hqx(self.data)
151 a = binascii.b2a_hqx(self.type2test(rle))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_binascii.py 148 # Perform binhex4 style RLE-compression
150 rle = binascii.rlecode_hqx(self.data)
151 a = binascii.b2a_hqx(self.type2test(rle))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_binascii.py 148 # Perform binhex4 style RLE-compression
150 rle = binascii.rlecode_hqx(self.data)
151 a = binascii.b2a_hqx(self.type2test(rle))
  /external/libjpeg-turbo/
wrrle.c 11 * This file contains routines to write output images in RLE format.
26 /* rle.h is provided by the Utah Raster Toolkit. */
28 #include <rle.h>
41 * Since RLE stores scanlines bottom-to-top, we have to invert the image
44 * RLE file during finish_output.
49 * For now, if we emit an RLE color map then it is always 256 entries long,
60 rle_map *colormap; /* RLE-style color map, or NULL if none */
90 * Make sure the image can be stored in RLE format.
92 * - RLE stores image dimensions as *signed* 16 bit integers. JPEG
113 /* Convert colormap, if any, to RLE format. *
    [all...]
rdrle.c 11 * This file contains routines to read input images in Utah RLE format.
19 * the file is indeed RLE format).
29 /* rle.h is provided by the Utah Raster Toolkit. */
31 #include <rle.h>
43 * We support the following types of RLE files:
59 * Since RLE stores scanlines bottom-to-top, we have to invert the image
92 /* Use RLE library routine to get the header info */
234 * Load the image into a virtual array. We have to do this because RLE
237 * of input. What we do is load the RLE data into the array and then call
259 /* Read the RLE data into our virtual array
    [all...]

Completed in 618 milliseconds