HomeSort by relevance Sort by last modified time
    Searched refs:ncode (Results 1 - 17 of 17) sorted by null

  /external/zlib/src/contrib/infback9/
inflate9.h 39 unsigned ncode; /* number of code length code lengths */ member in struct:inflate_state
infback9.c 351 state->ncode = BITS(4) + 4;
362 while (state->have < state->ncode) {
  /external/chromium_org/third_party/zlib/
inflate.h 111 unsigned ncode; /* number of code length code lengths */ member in struct:inflate_state
infback.c 356 state->ncode = BITS(4) + 4;
369 while (state->have < state->ncode) {
inflate.c 887 state->ncode = BITS(4) + 4;
900 while (state->have < state->ncode) {
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
inflate.h 111 unsigned ncode; /* number of code length code lengths */ member in struct:inflate_state
fx_zlib_infback.c 365 state->ncode = BITS(4) + 4;
378 while (state->have < state->ncode) {
fx_zlib_inflate.c 903 state->ncode = BITS(4) + 4;
916 while (state->have < state->ncode) {
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
inflate.h 111 unsigned ncode; /* number of code length code lengths */ member in struct:inflate_state
infback.c 365 state->ncode = BITS(4) + 4;
378 while (state->have < state->ncode) {
inflate.c 903 state->ncode = BITS(4) + 4;
916 while (state->have < state->ncode) {
    [all...]
  /external/zlib/src/
inflate.h 111 unsigned ncode; /* number of code length code lengths */ member in struct:inflate_state
infback.c 365 state->ncode = BITS(4) + 4;
378 while (state->have < state->ncode) {
inflate.c 903 state->ncode = BITS(4) + 4;
916 while (state->have < state->ncode) {
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 667 int nlen, ndist, ncode; /* number of lengths in descriptor */ local
686 ncode = bits(s, 4) + 4;
691 for (index = 0; index < ncode; index++)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 11 'bltin-code-objects': '\nCode Objects\n************\n\nCode objects are used by the implementation to represent "pseudo-\ncompiled" executable Python code such as a function body. They differ\nfrom function objects because they don\'t contain a reference to their\nglobal execution environment. Code objects are returned by the built-\nin ``compile()`` function and can be extracted from function objects\nthrough their ``func_code`` attribute. See also the ``code`` module.\n\nA code object can be executed or evaluated by passing it (instead of a\nsource string) to the ``exec`` statement or the built-in ``eval()``\nfunction.\n\nSee *The standard type hierarchy* for more information.\n',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 11 'bltin-code-objects': '\nCode Objects\n************\n\nCode objects are used by the implementation to represent "pseudo-\ncompiled" executable Python code such as a function body. They differ\nfrom function objects because they don\'t contain a reference to their\nglobal execution environment. Code objects are returned by the built-\nin ``compile()`` function and can be extracted from function objects\nthrough their ``func_code`` attribute. See also the ``code`` module.\n\nA code object can be executed or evaluated by passing it (instead of a\nsource string) to the ``exec`` statement or the built-in ``eval()``\nfunction.\n\nSee *The standard type hierarchy* for more information.\n',
    [all...]

Completed in 157 milliseconds