| /xsrc/external/mit/brotli/dist/c/enc/ |
| static_dict.h | 33 const uint8_t* data, size_t min_length, size_t max_length,
|
| static_dict.c | 43 DictWord w, const uint8_t* data, size_t max_length) { 44 if (w.len > max_length) { 79 size_t min_length, size_t max_length, uint32_t* matches) { 93 DictMatchLength(dictionary->words, data, id, l, max_length); 107 if (l + 2 < max_length && 125 if (matchlen < l || l + 6 >= max_length) { 282 if (!IsMatch(dictionary->words, w, data, max_length)) { 288 if (l + 1 >= max_length) { 325 if (max_length >= 5 && (data[0] == ' ' || data[0] == '.')) { 338 if (!IsMatch(dictionary->words, w, &data[1], max_length - 1)) [all...] |
| hash_to_binary_tree_inc.h | 115 const size_t cur_ix, const size_t ring_buffer_mask, const size_t max_length, 120 BROTLI_MIN(size_t, max_length, MAX_TREE_COMP_LENGTH); 122 TO_BROTLI_BOOL(max_length >= MAX_TREE_COMP_LENGTH); 160 max_length - cur_len); 195 length of max_length and stores the position cur_ix in the hash table. 206 const size_t max_length, const size_t max_backward, 232 max_length); 239 if (best_len < max_length) { 241 ring_buffer_mask, max_length, max_backward, &best_len, matches); 249 &data[cur_ix_masked], minlen, max_length, &dict_matches[0])) [all...] |
| backward_references_inc.h | 41 size_t max_length = pos_end - position; local 51 ringbuffer, ringbuffer_mask, dist_cache, position, max_length, 56 --max_length; 57 for (;; --max_length) { 61 BROTLI_MIN(size_t, sr.len - 1, max_length) : 0; 70 ringbuffer, ringbuffer_mask, dist_cache, position + 1, max_length, local
|
| hash_longest_match_quickly_inc.h | 140 up to the length of max_length and stores the position cur_ix in the 143 Does not look for matches longer than max_length. 152 const size_t cur_ix, const size_t max_length, const size_t max_backward, 171 &data[prev_ix], &data[cur_ix_masked], max_length); 206 max_length); 237 max_length); 253 self->common, &data[cur_ix_masked], max_length, dictionary_distance,
|
| hash_forgetful_chain_inc.h | 181 max_length and stores the position cur_ix in the hash table. 187 Does not look for matches longer than max_length. 196 const size_t cur_ix, const size_t max_length, const size_t max_backward, 226 max_length); 264 max_length); 284 self->common, &data[cur_ix_masked], max_length, dictionary_distance,
|
| hash_longest_match64_inc.h | 152 max_length and stores the position cur_ix in the hash table. 158 Does not look for matches longer than max_length. 167 const size_t max_length, const size_t max_backward, 200 max_length); 241 max_length); 262 self->common_, &data[cur_ix_masked], max_length, dictionary_distance,
|
| hash_longest_match_inc.h | 148 max_length and stores the position cur_ix in the hash table. 154 Does not look for matches longer than max_length. 163 const size_t max_length, const size_t max_backward, 196 max_length); 236 max_length); 257 self->common_, &data[cur_ix_masked], max_length, dictionary_distance,
|
| hash_composite_inc.h | 114 const size_t max_length, const size_t max_backward, 118 distance_cache, cur_ix, max_length, max_backward, dictionary_distance, 121 distance_cache, cur_ix, max_length, max_backward, dictionary_distance,
|
| hash_rolling_inc.h | 155 const size_t max_length, const size_t max_backward, 164 if (max_length < CHUNKLEN) return; 187 max_length);
|
| /src/external/apache2/llvm/dist/llvm/utils/lint/ |
| common_lint.py | 8 def VerifyLineLength(filename, lines, max_length): 15 max_length: maximum acceptable line length as number 25 if length > max_length: 27 'Line exceeds %d chars (%d)' % (max_length, length)))
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/trie_policy/ |
| prefix_search_node_update_imp.hpp | 121 size_type max_length = 0; local 128 if (common_range_length > max_length) 131 max_length = common_range_length;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/trie_policy/ |
| prefix_search_node_update_imp.hpp | 121 size_type max_length = 0; local 128 if (common_range_length > max_length) 131 max_length = common_range_length;
|
| /src/external/bsd/wpa/dist/src/utils/ |
| radiotap_iter.h | 91 int max_length, const struct ieee80211_radiotap_vendor_namespaces *vns);
|
| radiotap.c | 56 * @max_length: total length we can parse into (eg, whole packet length) 78 * iterator->max_length after executing ieee80211_radiotap_iterator_init() 93 int max_length, const struct ieee80211_radiotap_vendor_namespaces *vns) 96 if (max_length < (int)sizeof(struct ieee80211_radiotap_header)) 104 if (max_length < get_unaligned_le16(&radiotap_header->it_len)) 340 * max_length on the last arg, never exceeding it.
|
| /src/usr.bin/fmt/ |
| fmt.c | 66 /* LIZ@UOM 6/18/85 --New variables goal_length and max_length */ 68 #define MAX_LENGTH 75 70 static size_t max_length; /* Max line length in output */ variable 109 max_length = MAX_LENGTH; 128 (void)getnum(optarg, "max", &max_length, 1); 147 if (argc > 0 && getnum(*argv, "max", &max_length, 0)) { 153 if (max_length <= goal_length) { 155 "length (%zu)", max_length, goal_length); 462 if ((t <= goal_length) || ((t <= max_length) & [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/ |
| lldbDataFormatters.py | 158 max_length = 256 159 length = valobj.GetChildAtIndex(1).GetValueAsUnsigned(max_length) 162 if length < max_length:
|
| /src/external/gpl3/gcc/dist/gcc/ |
| spellcheck.cc | 190 size_t max_length = MAX (goal_len, candidate_len); local 193 gcc_assert (max_length >= min_length); 197 if (max_length <= 1) 201 if (max_length - min_length <= 1) 203 return BASE_COST * MAX (max_length / 3, 1); 207 return BASE_COST * (max_length + 2) / 3; 361 // dist == 2, max_length == 5, min_length == 3 364 // dist == 3, max_length == 7, min_length == 5 367 // dist == 7, max_length == 16, min_length = 19 370 // dist == 1, max_length == min_length = [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| spellcheck.cc | 190 size_t max_length = MAX (goal_len, candidate_len); local 193 gcc_assert (max_length >= min_length); 197 if (max_length <= 1) 201 if (max_length - min_length <= 1) 203 return BASE_COST * MAX (max_length / 3, 1); 207 return BASE_COST * (max_length + 2) / 3; 361 // dist == 2, max_length == 5, min_length == 3 364 // dist == 3, max_length == 7, min_length == 5 367 // dist == 7, max_length == 16, min_length = 19 370 // dist == 1, max_length == min_length = [all...] |
| /src/external/bsd/nsd/dist/ |
| edns.h | 95 void edns_init_data(edns_data_type *data, uint16_t max_length);
|
| edns.c | 31 edns_init_data(edns_data_type *data, uint16_t max_length) 38 data->ok[3] = (max_length & 0xff00) >> 8; /* size_hi */ 39 data->ok[4] = max_length & 0x00ff; /* size_lo */ 43 data->error[3] = (max_length & 0xff00) >> 8; /* size_hi */ 44 data->error[4] = max_length & 0x00ff; /* size_lo */
|
| /src/external/bsd/tcpdump/dist/ |
| print-rpki-rtr.c | 60 nd_uint8_t max_length; member in struct:rpki_rtr_pdu_ipv4_prefix_ 73 nd_uint8_t max_length; member in struct:rpki_rtr_pdu_ipv6_prefix_ 268 GET_U_1(pdu->prefix_length), GET_U_1(pdu->max_length), 283 GET_U_1(pdu->prefix_length), GET_U_1(pdu->max_length),
|
| print-hncp.c | 208 print_prefix(netdissect_options *ndo, const u_char *prefix, u_int max_length) 213 if (GET_U_1(prefix) >= 96 && max_length >= IPV4_MAPPED_HEADING_LEN + 1 && 221 max_length -= 1; 225 if (max_length < (u_int)plenbytes + IPV4_MAPPED_HEADING_LEN) 235 plenbytes = decode_prefix6(ndo, prefix, max_length, buf, sizeof(buf)); 246 const u_char *cp, u_int max_length, int print) 249 while (length < max_length) { 256 if (length+lab_length > max_length) { 258 nd_printjnp(ndo, cp+length, max_length-length);
|
| /xsrc/external/mit/brotli/dist/c/dec/ |
| huffman.c | 185 int max_length = -1; local 193 while (symbol_lists[max_length] == 0xFFFF) max_length--; 194 max_length += BROTLI_HUFFMAN_MAX_CODE_LENGTH + 1; 203 if (table_bits > max_length) { 204 table_bits = max_length; 234 for (len = root_bits + 1, step = 2; len <= max_length; ++len) {
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_symbolizer_internal.h | 92 virtual bool ReadFromSymbolizer(char *buffer, uptr max_length);
|