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

1 2 3 4 5 6 7 8 910

  /external/opencv3/3rdparty/libwebp/utils/
huffman_encode.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:__anon20477
huffman.c 178 // Get Huffman codes from the code lengths.
179 int* const codes = local
180 (int*)WebPSafeMalloc((uint64_t)code_lengths_size, sizeof(*codes));
181 if (codes == NULL) goto End;
183 if (!HuffmanCodeLengthsToCodes(code_lengths, code_lengths_size, codes)) {
190 if (!TreeAddSymbol(tree, symbol, codes[symbol], code_lengths[symbol])) {
197 free(codes);
206 const int* const codes,
214 assert(codes != NULL);
222 if (codes[i] != NON_EXISTENT_SYMBOL)
    [all...]
  /external/webp/src/utils/
huffman_encode.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:__anon26177
  /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/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
  /external/libexif/libexif/
exif-log.c 42 } codes[] = { variable in typeref:struct:__anon14768
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/opencv3/modules/superres/src/
input_array_utility.cpp 173 static const int codes[5][5] = local
182 const int code = codes[scn][cn];
  /external/skia/experimental/fiddle/
fiddle_main.cpp 21 static const char codes[] = local
26 fputc(codes[b], out);
30 fputc(codes[b], out);
35 fputc(codes[b], out);
39 fputc(codes[b], out);
44 fputc(codes[b], out);
46 fputc(codes[b], out);
  /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]);
  /packages/services/Telephony/src/com/android/phone/
MMIDialogActivity.java 87 final List<? extends MmiCode> codes = mPhone.getPendingMmiCodes(); local
88 if (codes.size() > 0) {
89 final MmiCode mmiCode = codes.get(0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
extutil.h 49 XExtCodes *codes; /* the extension protocol codes */ member in struct:_XExtDisplayInfo
63 XExtCodes* /* codes */
68 XExtCodes* /* codes */
73 XExtCodes* /* codes */
78 XExtCodes* /* codes */
83 XExtCodes* /* codes */
88 XExtCodes* /* codes */
92 XExtCodes* /* codes */
107 XExtCodes* /* codes */,
    [all...]
  /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...]
  /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::__anon11274::__anon11276
46 } decode; /* if CODES, current state */
  /external/icu/android_icu4j/src/main/java/android/icu/text/
AnyTransliterator.java 282 int[] codes = UScript.getCode(name); local
283 return codes != null ? codes[0] : UScript.INVALID_CODE;
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
AnyTransliterator.java 282 int[] codes = UScript.getCode(name); local
283 return codes != null ? codes[0] : UScript.INVALID_CODE;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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::__anon14951::__anon14953
46 } decode; /* if CODES, current state */
  /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/dex/src/main/java/com/android/dex/
TableOfContents.java 44 public final Section codes = new Section(0x2001); field in class:TableOfContents
52 typeLists, annotationSetRefLists, annotationSets, classDatas, codes, stringDatas,
  /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);
OldCharset_AbstractTest.java 38 static final int[] codes = Charset_TestGenerator.codes; field in class:OldCharset_AbstractTest
40 static final char[] chars = new char[codes.length]; // Is filled with
41 // contents of codes.
46 static char[] theseChars (int... codes) {
47 char[] chars = new char[codes.length];
48 for (int i = 0; i < codes.length; i++) chars[i] = (char) codes[i];
52 static byte[] theseBytes (int... codes) {
53 byte[] bytes = new byte[codes.length]
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
z8k-dis.c 106 static char *codes[16] = variable
582 sprintf (tmp_str, "%s", codes[instr_data->cond_code]);
  /external/gmock/test/
gmock-more-actions_test.cc 672 int codes[] = { 97, 98, 99 }; local
673 Action<MyFunction> a = SetArrayArgument<1>(codes, codes + 3);
  /external/google-breakpad/src/testing/test/
gmock-more-actions_test.cc 672 int codes[] = { 97, 98, 99 }; local
673 Action<MyFunction> a = SetArrayArgument<1>(codes, codes + 3);
  /external/libvorbis/lib/
sharedbook.c 340 ogg_uint32_t *codes=_make_words(s->lengthlist,s->entries,c->used_entries); local
343 if(codes==NULL)goto err_out;
346 codes[i]=bitreverse(codes[i]);
347 codep[i]=codes+i;
356 int position=codep[i]-codes;
361 c->codelist[sortindex[i]]=codes[i];
362 _ogg_free(codes);
  /external/opencv3/3rdparty/zlib/
inflate.h 72 Read deflate codes in fixed or dynamic block:
106 code const FAR *lencode; /* starting table for length/literal codes */
107 code const FAR *distcode; /* starting table for distance codes */
115 code FAR *next; /* next available space in codes[] */
118 code codes[ENOUGH]; /* space for code tables */ member in struct:inflate_state

Completed in 651 milliseconds

1 2 3 4 5 6 7 8 910