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

1 2 3 4 5 6 7 8 91011>>

  /external/brotli/csharp/org/brotli/dec/
HuffmanTreeGroup.cs 15 internal int[] codes; field in class:Org.Brotli.Dec.HuffmanTreeGroup
19 /// <see cref="codes"/>
27 /// <param name="n">number of Huffman codes</param>
31 group.codes = new int[n * Org.Brotli.Dec.Huffman.HuffmanMaxTableSize];
45 Org.Brotli.Dec.Decode.ReadHuffmanCode(group.alphabetSize, group.codes, next, br);
  /external/brotli/c/dec/
huffman.h 59 HuffmanCode* codes; member in struct:__anon14402
  /external/python/cpython2/Tools/ssl/
make_ssl_data.py 22 codes = []
30 codes.append((code, (libcode, name, num)))
31 return codes
45 # Read codes from libraries
53 # Merge with existing codes (in case some old codes disappeared).
54 codes = {} variable
59 # Only keep it if the numeric codes weren't reused
61 codes[errcode] = libcode, errname, errnum
62 codes.update(dict(new_codes)
    [all...]
  /external/python/cpython3/Tools/ssl/
make_ssl_data.py 22 codes = []
30 codes.append((code, (libcode, name, num)))
31 return codes
45 # Read codes from libraries
53 # Merge with existing codes (in case some old codes disappeared).
54 codes = {} variable
59 # Only keep it if the numeric codes weren't reused
61 codes[errcode] = libcode, errname, errnum
62 codes.update(dict(new_codes)
    [all...]
  /external/webp/src/utils/
huffman_encode_utils.h 26 uint8_t extra_bits; // extra bits for escape codes
29 // Struct to represent the tree codes (depth and bits array).
33 uint16_t* codes; // Symbol Codes. member in struct:__anon43781
  /libcore/luni/src/test/java/libcore/java/net/
OldHttpRetryExceptionTest.java 26 int [] codes = {400, 404, 200, 500, 0}; local
30 codes[i]);
33 hre.responseCode() == codes[i]);
39 int [] codes = {400, -1, Integer.MAX_VALUE, Integer.MIN_VALUE, 0}; local
45 codes[i], locations[i]);
48 hre.responseCode() == codes[i]);
  /external/pdfium/core/fpdfapi/render/
cpdf_textrenderer.cpp 91 std::vector<uint32_t> codes; local
93 codes.resize(nChars);
97 codes[i] = pFont->GetNextChar(str.c_str(), str.GetLength(), offset);
100 cur_pos += pFont->GetCharWidthF(codes[i]) * font_size / 1000;
109 DrawNormalText(pDevice, codes, positions, pFont, font_size, &matrix,
  /external/zlib/src/contrib/infback9/
inflate9.h 30 Read deflate codes:
43 code FAR *next; /* next available space in codes[] */
46 code codes[ENOUGH]; /* space for code tables */ member in struct:inflate_state
  /toolchain/binutils/binutils-2.27/zlib/contrib/infback9/
inflate9.h 30 Read deflate codes:
43 code FAR *next; /* next available space in codes[] */
46 code codes[ENOUGH]; /* space for code tables */ member in struct:inflate_state
  /external/libexif/libexif/
exif-log.c 42 } codes[] = { variable in typeref:struct:__anon24782
57 for (i = 0; codes[i].title; i++) if (codes[i].code == code) break;
58 return _(codes[i].title);
66 for (i = 0; codes[i].message; i++) if (codes[i].code == code) break;
67 return _(codes[i].message);
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractNonStreamingHashFunctionTest.java 49 HashCode[] codes = new HashCode[hashers.size()]; local
51 codes[i] = hashers.get(i).hash();
53 for (int i = 1; i < codes.length; i++) {
54 assertEquals(codes[i - 1], codes[i]);
  /external/pdfium/core/fpdfapi/font/
cpdf_cmap.cpp 184 int CheckFourByteCodeRange(uint8_t* codes,
193 if (codes[iChar] < ranges[seg].m_Lower[iChar] ||
194 codes[iChar] > ranges[seg].m_Upper[iChar]) {
213 uint8_t codes[4];
214 codes[0] = codes[1] = 0x00;
215 codes[2] = static_cast<uint8_t>(charcode >> 8 & 0xFF);
216 codes[3] = static_cast<uint8_t>(charcode);
225 if (codes[offset + iChar] < ranges[iSeg].m_Lower[iChar] ||
226 codes[offset + iChar] > ranges[iSeg].m_Upper[iChar])
359 uint8_t codes[4]; local
    [all...]
  /packages/services/Telephony/src/com/android/phone/
MMIDialogActivity.java 96 final List<MmiCode> codes = new ArrayList<>(mPhone.getPendingMmiCodes()); local
99 codes.addAll(mPhone.getImsPhone().getPendingMmiCodes());
101 if (codes.size() > 0) {
102 final MmiCode mmiCode = codes.get(0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
extutil.h 47 XExtCodes *codes; /* the extension protocol codes */ member in struct:_XExtDisplayInfo
61 XExtCodes* /* codes */
66 XExtCodes* /* codes */
71 XExtCodes* /* codes */
76 XExtCodes* /* codes */
81 XExtCodes* /* codes */
86 XExtCodes* /* codes */
90 XExtCodes* /* codes */
105 XExtCodes* /* codes */,
    [all...]
  /dalvik/dx/src/com/android/dex/
TableOfContents.java 46 public final Section codes = new Section(0x2001); field in class:TableOfContents
54 methodHandles, typeLists, annotationSetRefLists, annotationSets, classDatas, codes,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inflate.h 68 Read deflate codes:
102 code const FAR *lencode; /* starting table for length/literal codes */
103 code const FAR *distcode; /* starting table for distance codes */
111 code FAR *next; /* next available space in codes[] */
114 code codes[ENOUGH]; /* space for code tables */ member in struct:inflate_state
  /external/freetype/src/gzip/
infutil.h 1 /* infutil.h -- types and macros common to blocks and codes
21 CODES, /* processing fixed or dynamic block */
39 uIntf *blens; /* bit lengths of codes */
45 *codes; member in struct:inflate_blocks_state::__anon20684::__anon20686
46 } decode; /* if CODES, current state */
  /external/icu/android_icu4j/src/main/java/android/icu/text/
AnyTransliterator.java 285 int[] codes = UScript.getCode(name); local
286 return codes != null ? codes[0] : UScript.INVALID_CODE;
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
AnyTransliterator.java 285 int[] codes = UScript.getCode(name); local
286 return codes != null ? codes[0] : UScript.INVALID_CODE;
  /external/skia/tools/fiddle/
fiddle_main.cpp 65 static const char codes[] = local
70 fputc(codes[b], out);
74 fputc(codes[b], out);
79 fputc(codes[b], out);
83 fputc(codes[b], out);
88 fputc(codes[b], out);
90 fputc(codes[b], out);
  /external/skqp/tools/fiddle/
fiddle_main.cpp 65 static const char codes[] = local
70 fputc(codes[b], out);
74 fputc(codes[b], out);
79 fputc(codes[b], out);
83 fputc(codes[b], out);
88 fputc(codes[b], out);
90 fputc(codes[b], out);
  /external/zlib/src/contrib/puff/
puff.c 49 * - Fix fixed codes table error
63 * 1.8 9 Jan 2004 - Added some comments on no distance codes case
79 * 2.3 21 Jan 2013 - Check for invalid code length codes in dynamic blocks
92 #define MAXLCODES 286 /* maximum number of literal/length codes */
93 #define MAXDCODES 30 /* maximum number of distance codes */
94 #define MAXCODES (MAXLCODES+MAXDCODES) /* maximum codes lengths to read */
95 #define FIXLCODES 288 /* number of fixed literal/length codes */
219 * - The codes as stored in the compressed data are bit-reversed relative to
220 * a simple integer ordering of codes of the same lengths. Hence below the
226 * - The first code for the shortest length is all zeros. Subsequent codes o
436 local int codes(struct state *s, function
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 36 static final int[] codes = { field in class:Charset_TestGenerator
101 static final char[] chars = OldCharset_AbstractTest.theseChars(codes);
  /toolchain/binutils/binutils-2.27/opcodes/
z8k-dis.c 106 static char *codes[16] = variable
582 sprintf (tmp_str, "%s", codes[instr_data->cond_code]);
  /toolchain/binutils/binutils-2.27/zlib/contrib/puff/
puff.c 49 * - Fix fixed codes table error
63 * 1.8 9 Jan 2004 - Added some comments on no distance codes case
79 * 2.3 21 Jan 2013 - Check for invalid code length codes in dynamic blocks
92 #define MAXLCODES 286 /* maximum number of literal/length codes */
93 #define MAXDCODES 30 /* maximum number of distance codes */
94 #define MAXCODES (MAXLCODES+MAXDCODES) /* maximum codes lengths to read */
95 #define FIXLCODES 288 /* number of fixed literal/length codes */
219 * - The codes as stored in the compressed data are bit-reversed relative to
220 * a simple integer ordering of codes of the same lengths. Hence below the
226 * - The first code for the shortest length is all zeros. Subsequent codes o
436 local int codes(struct state *s, function
    [all...]

Completed in 891 milliseconds

1 2 3 4 5 6 7 8 91011>>