HomeSort by relevance Sort by last modified time
    Searched full:rle (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/data/unicode/
BidiTest.txt 104 RLE; 7
161 LRE RLE; 7
167 LRO RLE; 7
171 RLE LRE; 7
172 RLE LRO; 7
173 RLE RLE; 7
174 RLE RLO; 7
175 RLE PDF; 7
176 RLE BN;
    [all...]
  /external/icu/icu4c/source/test/testdata/
BidiTest.txt 104 RLE; 7
161 LRE RLE; 7
167 LRO RLE; 7
171 RLE LRE; 7
172 RLE LRO; 7
173 RLE RLE; 7
174 RLE RLO; 7
175 RLE PDF; 7
176 RLE BN;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
BidiTest.txt 104 RLE; 7
161 LRE RLE; 7
167 LRO RLE; 7
171 RLE LRE; 7
172 RLE LRO; 7
173 RLE RLE; 7
174 RLE RLO; 7
175 RLE PDF; 7
176 RLE BN;
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugRangeList.cpp 48 for (const RangeListEntry &RLE : Entries) {
52 OS << format(format_str, Offset, RLE.StartAddress, RLE.EndAddress);
60 for (const RangeListEntry &RLE : Entries) {
61 if (RLE.isBaseAddressSelectionEntry(AddressSize)) {
62 BaseAddress = RLE.EndAddress;
64 Res.push_back(std::make_pair(BaseAddress + RLE.StartAddress,
65 BaseAddress + RLE.EndAddress));
  /external/libjpeg-turbo/
cderror.h 86 JMESSAGE(JERR_RLE_BADERROR, "Bogus error code from RLE library")
87 JMESSAGE(JERR_RLE_COLORSPACE, "RLE output must be grayscale or RGB")
88 JMESSAGE(JERR_RLE_DIMENSIONS, "Image dimensions (%ux%u) too large for RLE")
89 JMESSAGE(JERR_RLE_EMPTY, "Empty RLE file")
90 JMESSAGE(JERR_RLE_EOF, "Premature EOF in RLE header")
91 JMESSAGE(JERR_RLE_MEM, "Insufficient memory for RLE header")
92 JMESSAGE(JERR_RLE_NOT, "Not an RLE file")
93 JMESSAGE(JERR_RLE_TOOMANYCHANNELS, "Cannot handle %d output channels for RLE")
94 JMESSAGE(JERR_RLE_UNSUPPORTED, "Cannot handle this RLE setup")
95 JMESSAGE(JTRC_RLE, "%ux%u full-color RLE file"
    [all...]
wrrle.c 10 * This file contains routines to write output images in RLE format.
25 /* rle.h is provided by the Utah Raster Toolkit. */
27 #include <rle.h>
40 * Since RLE stores scanlines bottom-to-top, we have to invert the image
43 * RLE file during finish_output.
48 * For now, if we emit an RLE color map then it is always 256 entries long,
59 rle_map *colormap; /* RLE-style color map, or NULL if none */
89 * Make sure the image can be stored in RLE format.
91 * - RLE stores image dimensions as *signed* 16 bit integers. JPEG
112 /* Convert colormap, if any, to RLE format. *
    [all...]
rdrle.c 10 * This file contains routines to read input images in Utah RLE format.
18 * the file is indeed RLE format).
28 /* rle.h is provided by the Utah Raster Toolkit. */
30 #include <rle.h>
42 * We support the following types of RLE files:
58 * Since RLE stores scanlines bottom-to-top, we have to invert the image
91 /* Use RLE library routine to get the header info */
233 * Load the image into a virtual array. We have to do this because RLE
236 * of input. What we do is load the RLE data into the array and then call
258 /* Read the RLE data into our virtual array
    [all...]
  /external/pdfium/third_party/libjpeg/
cderror.h 83 JMESSAGE(JERR_RLE_BADERROR, "Bogus error code from RLE library")
84 JMESSAGE(JERR_RLE_COLORSPACE, "RLE output must be grayscale or RGB")
85 JMESSAGE(JERR_RLE_DIMENSIONS, "Image dimensions (%ux%u) too large for RLE")
86 JMESSAGE(JERR_RLE_EMPTY, "Empty RLE file")
87 JMESSAGE(JERR_RLE_EOF, "Premature EOF in RLE header")
88 JMESSAGE(JERR_RLE_MEM, "Insufficient memory for RLE header")
89 JMESSAGE(JERR_RLE_NOT, "Not an RLE file")
90 JMESSAGE(JERR_RLE_TOOMANYCHANNELS, "Cannot handle %d output channels for RLE")
91 JMESSAGE(JERR_RLE_UNSUPPORTED, "Cannot handle this RLE setup")
92 JMESSAGE(JTRC_RLE, "%ux%u full-color RLE file"
    [all...]
jconfig.h 42 #undef RLE_SUPPORTED /* Utah RLE image file format */
  /external/llvm/test/CodeGen/Generic/
2008-01-30-LoadCrash.ll 5 define i32 @mkstemps(i8* %pattern, i32 %suffix_len, i64 %tmp42.rle) nounwind {
10 %tmp8182 = trunc i64 %tmp42.rle to i32 ; <i32> [#uses=1]
14 %tmp90 = urem i64 %tmp42.rle, 62 ; <i64> [#uses=1]
  /frameworks/support/v4/tests/java/android/support/v4/text/
BidiFormatterTest.java 47 private static final String RLE = "\u202B";
81 RLE + "." + HE + "." + PDF + LRM,
84 LRM + RLE + "." + HE + "." + PDF + LRM,
87 RLE + "." + HE + "." + PDF,
90 RLE + "." + PDF + LRM,
173 RLE + EN + HE + EN + PDF + LRM,
176 LRM + RLE + EN + HE + EN + PDF + LRM,
179 RLE + EN + HE + EN + PDF,
  /external/skia/src/codec/
SkBmpRLECodec.cpp 61 // been filled. RLE encodings sometimes skip pixels, so we always start by
145 // using a fixed size buffer if the RLE encoding is large. On the other hand,
153 SkCodecPrintf("Warning: incomplete RLE file.\n");
156 SkCodecPrintf("Error: could not read RLE image data.\n");
199 * Set an RLE pixel using the color table
231 * Set an RLE pixel from R, G, B values
286 // Initialize a buffer for encoded RLE data
297 * Performs the bitmap decoding for RLE input format
298 * RLE decoding is performed all at once, rather than a one row at a time
302 // Set RLE flag
    [all...]
SkBmpRLECodec.h 15 * This class implements the decoding for bmp images that use an RLE encoding
75 * Set an RLE pixel using the color table
110 // This can be tricky when the RLE encoding instructs the decoder to jump down
  /external/pdfium/core/src/fxcodec/lbmp/
fx_bmp.cpp 851 uint8_t rle[2] = {0}; local
862 rle[0] = _bmp_rle8_search(&bmp_ptr->src_buf[index + i], size - index - i);
863 rle[1] = bmp_ptr->src_buf[index + i];
864 if (i + rle[0] >= (int32_t)bmp_ptr->src_pitch) {
865 rle[0] = uint8_t(bmp_ptr->src_pitch - i);
866 if (rle[0]) {
867 dst_buf[dst_pos++] = rle[0];
868 dst_buf[dst_pos++] = rle[1];
875 i += rle[0];
876 dst_buf[dst_pos++] = rle[0];
899 uint8_t rle[2] = {0}; local
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
BidiFormatterTest.java 41 private static final String RLE = "\u202B";
127 RLE + "." + HE + "." + PDF + LRM,
130 LRM + RLE + "." + HE + "." + PDF + LRM,
133 RLE + "." + HE + "." + PDF,
136 RLE + "." + PDF + LRM,
217 RLE + EN + HE + EN + PDF + LRM,
220 LRM + RLE + EN + HE + EN + PDF + LRM,
223 RLE + EN + HE + EN + PDF,
  /external/icu/icu4c/source/tools/genrb/
genrb.vcxproj.filters 39 <ClCompile Include="rle.c">
74 <ClInclude Include="rle.h">
  /external/icu/icu4c/source/test/cintltst/
cbiditst.h 49 #define RLE U_RIGHT_TO_LEFT_EMBEDDING
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_GetVLCInfo.c 28 * This function extracts run-length encoding (RLE) information
42 * This function extracts run-length encoding (RLE) information from the
100 /* Initialize RLE Info structure */
131 /* Fill RLE Info structure */
  /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/llvm/test/Transforms/GVN/
lpre-call-wrap.ll 32 %.rle = phi i32 [ %1, %bb.nph ], [ %7, %bb3.backedge ] ; <i32> [#uses=1]
33 %4 = add i32 %.rle, 1 ; <i32> [#uses=2]
  /external/opencv3/3rdparty/libtiff/
tif_codec.c 91 { "CCITT RLE", COMPRESSION_CCITTRLE, TIFFInitCCITTRLE },
92 { "CCITT RLE/W", COMPRESSION_CCITTRLEW, TIFFInitCCITTRLEW },
tif_config.h 86 /* Support NeXT 2-bit RLE algorithm */
108 /* Support ThunderScan 4-bit RLE algorithm */
tif_config.h.cmakein 86 /* Support NeXT 2-bit RLE algorithm */
108 /* Support ThunderScan 4-bit RLE algorithm */
  /external/pdfium/third_party/libtiff/
tif_codec.c 91 { "CCITT RLE", COMPRESSION_CCITTRLE, TIFFInitCCITTRLE },
92 { "CCITT RLE/W", COMPRESSION_CCITTRLEW, TIFFInitCCITTRLEW },
  /external/vboot_reference/utility/
image_types.c 26 uint32_t CompressionType; // 0 (none) for x86, 1 (RLE) for arm

Completed in 1436 milliseconds

1 2 3 4 5 6 7 8