HomeSort by: relevance | last modified time | path
    Searched refs:maxcode (Results 1 - 5 of 5) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
codecvt.cc 54 // The functions below rely on maxcode < incomplete_mb_character
248 // Updates from.next if the codepoint is not greater than maxcode.
252 read_utf8_code_point(range<const C>& from, unsigned long maxcode)
274 if (c <= maxcode)
293 if (c <= maxcode)
297 else if (c1 < 0xF5 && maxcode > 0xFFFF) // 4-byte sequence
319 if (c <= maxcode)
398 // Updates from.next if the codepoint is not greater than maxcode.
403 unsigned long maxcode, codecvt_mode mode)
425 if (c <= maxcode)
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
codecvt.cc 54 // The functions below rely on maxcode < incomplete_mb_character
248 // Updates from.next if the codepoint is not greater than maxcode.
252 read_utf8_code_point(range<const C>& from, unsigned long maxcode)
274 if (c <= maxcode)
295 if (c <= maxcode)
299 else if (c1 < 0xF5 && maxcode > 0xFFFF) // 4-byte sequence
321 if (c <= maxcode)
400 // Updates from.next if the codepoint is not greater than maxcode.
405 unsigned long maxcode, codecvt_mode mode)
427 if (c <= maxcode)
    [all...]
  /src/usr.bin/compress/
zopen.c 96 #define MAXCODE(n_bits) ((1 << (n_bits)) - 1)
148 #define maxcode zs->zs_maxcode macro
270 maxcode = MAXCODE(n_bits = INIT_BITS);
413 if (free_ent > maxcode || (clear_flg > 0)) {
426 maxcode = MAXCODE(n_bits = INIT_BITS);
431 maxcode = maxmaxcode;
433 maxcode = MAXCODE(n_bits)
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_filter_compress.c 109 int maxcode; /* Largest code. */ member in struct:private_data
249 state->maxcode = (1 << state->maxcode_bits);
390 if (code < state->maxcode && state->oldcode >= 0) {
399 state->section_end_code = state->maxcode;
  /src/sys/dev/stbi/
stb_image.c 1118 unsigned int maxcode[18]; member in struct:__anon3675
1182 h->maxcode[j] = code << (16-j);
1185 h->maxcode[j] = 0xffffffff;
1244 // valid, then test against maxcode. To speed this up, we've
1245 // preshifted maxcode left so that it has (16-k) 0s at the
1251 if (temp < h->maxcode[k])
2194 int maxcode[17]; member in struct:__anon3679
2238 z->maxcode[i] = code << (16-i); // preshift for inner loop
2242 z->maxcode[16] = 0x10000; // sentinel
2323 if (k < z->maxcode[s]
    [all...]

Completed in 47 milliseconds