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

1 2 3 4

  /external/chromium_org/chrome/browser/android/banners/
app_banner_utilities.cc 16 std::vector<int> codes; local
18 codes.push_back(i);
20 DCHECK(std::find(codes.begin(), codes.end(), event) != codes.end());
21 UMA_HISTOGRAM_CUSTOM_ENUMERATION("AppBanners.DismissEvent", event, codes);
25 std::vector<int> codes; local
27 codes.push_back(i);
29 DCHECK(std::find(codes.begin(), codes.end(), event) != codes.end())
34 std::vector<int> codes; local
    [all...]
  /external/chromium_org/third_party/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:__anon16919
  /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:__anon37088
  /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/smack/src/org/xbill/DNS/
EDNSOption.java 25 private static Mnemonic codes = new Mnemonic("EDNS Option Codes", field in class:EDNSOption.Code
29 codes.setMaximum(0xFFFF);
30 codes.setPrefix("CODE");
31 codes.setNumericAllowed(true);
33 codes.add(NSID, "NSID");
34 codes.add(CLIENT_SUBNET, "CLIENT_SUBNET");
42 return codes.getText(code);
53 return codes.getValue(s);
  /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/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
coff-objfmt.h 48 yasm_value off; /* Offset expression (used for some codes) */
60 /* Linked list of codes, in decreasing location offset order.
64 SLIST_HEAD(coff_unwind_code_head, coff_unwind_code) codes; member in struct:coff_unwind_info
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractNonStreamingHashFunctionTest.java 35 HashCode[] codes = new HashCode[hashers.size()]; local
37 codes[i] = hashers.get(i).hash();
39 for (int i = 1; i < codes.length; i++) {
40 assertEquals(codes[i - 1], codes[i]);
  /external/libexif/libexif/
exif-log.c 42 } codes[] = { variable in typeref:struct:__anon27474
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/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5yuv.c 129 DWORD *codes; local
135 codes = SDL_malloc(numcodes*sizeof(*codes));
136 if ( codes ) {
137 IDirectDraw2_GetFourCCCodes(ddraw2, &numcodes, codes);
139 fprintf(stderr, "Code %d: 0x%x\n", i, PrintFOURCC(codes[i]));
141 SDL_free(codes);
144 fprintf(stderr, "No FOURCC codes supported\n");
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
extutil.h 51 XExtCodes *codes; /* the extension protocol codes */ member in struct:_XExtDisplayInfo
66 XExtCodes* /* codes */
73 XExtCodes* /* codes */
80 XExtCodes* /* codes */
87 XExtCodes* /* codes */
94 XExtCodes* /* codes */
101 XExtCodes* /* codes */
107 XExtCodes* /* codes */
128 XExtCodes* /* codes */,
    [all...]
  /packages/services/Telephony/src/com/android/phone/
MMIDialogActivity.java 73 final List<? extends MmiCode> codes = mPhone.getPendingMmiCodes(); local
74 if (codes.size() > 0) {
75 final MmiCode mmiCode = codes.get(0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.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...]
  /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::__anon25367::__anon25369
46 } decode; /* if CODES, current state */
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Huffman.java 38 private final int[] codes; field in class:Huffman.Codec
42 * @param codes Index designates the symbol this code represents.
45 Codec(int[] codes, byte[] lengths) {
46 buildTree(codes, lengths);
47 this.codes = codes;
57 int code = codes[b];
131 private void buildTree(int[] codes, byte[] lengths) {
133 addCode(i, codes[i], lengths[i]);
194 // Appendix C: Huffman Codes For Request
    [all...]
  /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...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
tst-rxspencer.c 227 static struct { reg_errcode_t code; const char *name; } codes [] local
235 for (i = 0; i < sizeof (codes) / sizeof (codes[0]); ++i)
236 if (n == codes[i].code)
238 if (strcmp (string, codes[i].name))
241 fail, codes[i].name, string);
  /external/chromium_org/third_party/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
  /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/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
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
  /external/qemu/distrib/zlib-1.2.8/
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 510 milliseconds

1 2 3 4