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

1 2 3

  /external/zopfli/src/zopfli/
tree.c 33 size_t* next_code = (size_t*)malloc(sizeof(size_t) * (maxbits + 1)); local
55 next_code[bits] = code;
62 symbols[i] = next_code[len];
63 next_code[len]++;
68 free(next_code);
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
ecmametadatapass.py 342 next_code = tokenutil.SearchExcept(token, TokenType.NON_CODE_TYPES)
343 if next_code.type != TokenType.START_BLOCK:
364 next_code = tokenutil.SearchExcept(token, TokenType.NON_CODE_TYPES)
365 if (next_code.type != TokenType.START_BLOCK and
366 (next_code.type != TokenType.KEYWORD or next_code.string != 'if')):
493 next_code = tokenutil.SearchExcept(token, TokenType.NON_CODE_TYPES)
497 not next_code or next_code.line_number != token.line_number)
501 next_code_is_operator = next_code and next_code.type == TokenType.OPERATO
    [all...]
indentation.py 203 next_code = tokenutil.SearchExcept(token, Type.NON_CODE_TYPES)
204 if next_code and next_code.type == Type.END_BLOCK:
205 next_code = tokenutil.SearchExcept(next_code, Type.NON_CODE_TYPES)
206 if next_code and next_code.string in ('else', 'case', 'default'):
ecmalintrules.py 248 next_code = tokenutil.GetNextCodeToken(token)
252 wrapped_after = next_code and next_code.line_number != token.line_number
683 next_code = tokenutil.SearchExcept(equal_operator, Type.NON_CODE_TYPES)
684 if next_code and (
685 next_code.type in (Type.START_BRACKET, Type.START_BLOCK) or
686 next_code.IsOperator('new')):
    [all...]
  /external/opencv3/3rdparty/libwebp/utils/
huffman_encode.c 399 uint32_t next_code[MAX_ALLOWED_CODE_LENGTH + 1]; local
410 next_code[0] = 0;
415 next_code[i] = code;
420 tree->codes[i] = ReverseBits(code_length, next_code[code_length]++);
  /external/webp/src/utils/
huffman_encode.c 378 uint32_t next_code[MAX_ALLOWED_CODE_LENGTH + 1]; local
389 next_code[0] = 0;
394 next_code[i] = code;
399 tree->codes[i] = ReverseBits(code_length, next_code[code_length]++);
  /external/zlib/src/doc/
rfc1951.txt 439 next_code[bits] = code;
451 tree[n].Code = next_code[len];
452 next_code[len]++;
476 Step 2 computes the following next_code values:
478 N next_code[N]
    [all...]
  /external/opencv3/3rdparty/zlib/
trees.c 580 ush next_code[MAX_BITS+1]; /* next code value for each bit length */ local
589 next_code[bits] = code = (code + bl_count[bits-1]) << 1;
602 tree[n].Code = bi_reverse(next_code[len]++, len);
605 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
    [all...]
  /external/pdfium/third_party/zlib_v128/
trees.c 580 ush next_code[MAX_BITS+1]; /* next code value for each bit length */ local
589 next_code[bits] = code = (code + bl_count[bits-1]) << 1;
602 tree[n].Code = bi_reverse(next_code[len]++, len);
605 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
    [all...]
  /external/zlib/src/
trees.c 580 ush next_code[MAX_BITS+1]; /* next code value for each bit length */ local
589 next_code[bits] = code = (code + bl_count[bits-1]) << 1;
602 tree[n].Code = bi_reverse(next_code[len]++, len);
605 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
    [all...]
  /external/pcre/dist/
pcre_compile.c 3128 const pcre_uchar *next_code; local
    [all...]
  /external/libgdx/gdx/jni/gdx2d/
stb_image.h 3495 int code, next_code[16], sizes[17]; local
    [all...]
  /prebuilts/android-emulator/linux-x86_64/
emulator-ranchu-arm64 
emulator-ranchu-mips64 
emulator-ranchu-x86 
emulator-ranchu-x86_64 
  /development/ndk/platforms/android-9/arch-x86/lib/
libz.a     [all...]
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/lib/
libz.a     [all...]
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/lib/
libz.a     [all...]
  /prebuilts/ndk/current/platforms/android-14/arch-x86/usr/lib/
libz.a     [all...]
  /prebuilts/ndk/current/platforms/android-15/arch-x86/usr/lib/
libz.a     [all...]
  /prebuilts/ndk/current/platforms/android-16/arch-x86/usr/lib/
libz.a     [all...]
  /prebuilts/ndk/current/platforms/android-17/arch-x86/usr/lib/
libz.a     [all...]
  /prebuilts/ndk/current/platforms/android-18/arch-x86/usr/lib/
libz.a     [all...]
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/lib/
libz.a     [all...]

Completed in 813 milliseconds

1 2 3