HomeSort by: relevance | last modified time | path
    Searched defs:nice_match (Results 1 - 4 of 4) sorted by relevancy

  /src/common/dist/zlib/contrib/gcc_gvmat64/
gvmat64.S 138 printf("#define dsNiceMatch %u\n",(int)(((char*)&(s->nice_match))-((char*)s)));
166 #define nice_match [ rcx + dsNiceMatch] macro
238 //;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
242 mov eax, nice_match
515 ;;; if (len >= nice_match) break;
  /src/common/dist/zlib/
deflate.c 684 s->nice_match = configuration_table[s->level].nice_length;
791 s->nice_match = configuration_table[level].nice_length;
807 s->nice_match = nice_length;
1356 int nice_match = s->nice_match; /* stop if match long enough */ local in function:longest_match
1390 if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
1478 if (len >= nice_match) break;
deflate.h 200 int nice_match; /* Stop searching when current match exceeds this */ member in struct:internal_state
  /src/sys/net/
zlib.c 461 int nice_match; /* Stop searching when current match exceeds this */ member in struct:deflate_state
999 s->nice_match = configuration_table[level].nice_length;
1322 s->nice_match = configuration_table[s->level].nice_length;
1358 int nice_match = s->nice_match; /* stop if match long enough */ local in function:longest_match
1392 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1472 if (len >= nice_match) break;

Completed in 22 milliseconds