Home
last modified time | relevance | path

Searched refs:min_length (Results 1 - 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/brotli/research/
H A Dfind_opt_references.cc27 "for small values of min_length.");
28 DEFINE_int32(min_length, 1, "Minimal length of found backward references.");
132 int min_length = FLAGS_min_length; in ProcessReferences() local
156 if ((left_ix >= 0 && left_lcp >= min_length) || in ProcessReferences()
157 (right_ix < size - 1 && right_lcp >= min_length)) { in ProcessReferences()
/third_party/node/deps/brotli/c/enc/
H A Dstatic_dict.h33 const uint8_t* data, size_t min_length, size_t max_length,
H A Dstatic_dict.c79 size_t min_length, size_t max_length, uint32_t* matches) { in BrotliFindAllStaticDictionaryMatches()
115 minlen = min_length; in BrotliFindAllStaticDictionaryMatches()
77 BrotliFindAllStaticDictionaryMatches( const BrotliEncoderDictionary* dictionary, const uint8_t* data, size_t min_length, size_t max_length, uint32_t* matches) BrotliFindAllStaticDictionaryMatches() argument
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dstatic_dict.h33 const uint8_t* data, size_t min_length, size_t max_length,
H A Dstatic_dict.c79 size_t min_length, size_t max_length, uint32_t* matches) { in BrotliFindAllStaticDictionaryMatches()
115 minlen = min_length; in BrotliFindAllStaticDictionaryMatches()
77 BrotliFindAllStaticDictionaryMatches( const BrotliEncoderDictionary* dictionary, const uint8_t* data, size_t min_length, size_t max_length, uint32_t* matches) BrotliFindAllStaticDictionaryMatches() argument
/third_party/cups-filters/cupsfilters/
H A Dppdgenerator.h80 int *min_length,
H A Dppdgenerator.c1168 int* min_length, in generate_sizes()
1373 if (lower < *min_length) in generate_sizes()
1374 *min_length = lower; in generate_sizes()
1431 if (lower < *min_length) in generate_sizes()
1432 *min_length = lower; in generate_sizes()
1454 if (pwg->length < *min_length) in generate_sizes()
1455 *min_length = pwg->length; in generate_sizes()
1607 min_length = INT_MAX, in ppdCreateFromIPP2() local
2218 printer_sizes = generate_sizes(response, &defattr, &min_length, &min_width, in ppdCreateFromIPP2()
2385 min_length < INT_MA in ppdCreateFromIPP2()
1166 generate_sizes(ipp_t *response, ipp_attribute_t **defattr, int* min_length, int* min_width, int* max_length, int* max_width, int* bottom, int* left, int* right, int* top, char* ppdname) generate_sizes() argument
[all...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftstroke.c996 FT_Fixed min_length; in ft_stroker_inside() local
1000 min_length = in ft_stroker_inside()
1003 intersect = FT_BOOL( min_length && in ft_stroker_inside()
1004 stroker->line_length >= min_length && in ft_stroker_inside()
1005 line_length >= min_length ); in ft_stroker_inside()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dcord.cc76 // length(t) >= min_length[depth(t)]
79 static constexpr uint64_t min_length[] = { member
95 static const int kMinLengthSize = ABSL_ARRAYSIZE(min_length);
112 return (node->length >= min_length[node->concat()->depth() / 2]); in IsRootBalanced()
1100 concat_node->length < min_length[concat_node->depth()]) { in Build()
1145 for (; node->length > min_length[i + 1]; ++i) { in AddNode()
1156 for (; sum->length >= min_length[i]; ++i) { in AddNode()
1164 // min_length[0] == 1, which means sum->length >= min_length[0] in AddNode()
/third_party/python/Python/
H A Dast_unparse.c625 body_writer.min_length = 256; in build_fstring_body()
931 writer.min_length = 256; in expr_as_unicode()
/third_party/python/Objects/
H A Dtupleobject.c241 writer.min_length = 1 + 1 + (2 + 1) * (Py_SIZE(v) - 1) + 1; in tuplerepr()
245 writer.min_length = 4; in tuplerepr()
H A Dstructseq.c248 writer.min_length = (PyUnicode_GET_LENGTH(type_name) + 1 in structseq_repr()
H A Dunicodeobject.c3092 writer.min_length = strlen(format) + 100; in PyUnicode_FromFormatV()
4568 writer->min_length += replen - 1; in unicode_decode_call_errorhandler_writer()
4578 writer->min_length += *inend - new_inptr - remain; in unicode_decode_call_errorhandler_writer()
4583 if (_PyUnicodeWriter_Prepare(writer, writer->min_length - writer->pos, in unicode_decode_call_errorhandler_writer()
4726 writer.min_length = size; in PyUnicode_DecodeUTF7Stateful()
5712 writer.min_length = (e - q + 3) / 4; in PyUnicode_DecodeUTF32Stateful()
5713 if (_PyUnicodeWriter_Prepare(&writer, writer.min_length, 127) == -1) in PyUnicode_DecodeUTF32Stateful()
6028 writer.min_length = (e - q + 1) / 2; in PyUnicode_DecodeUTF16Stateful()
6029 if (_PyUnicodeWriter_Prepare(&writer, writer.min_length, 127) == -1) in PyUnicode_DecodeUTF16Stateful()
6328 writer.min_length in _PyUnicode_DecodeUnicodeEscapeInternal()
[all...]
H A Dlistobject.c398 writer.min_length = 1 + 1 + (2 + 1) * (Py_SIZE(v) - 1) + 1; in list_repr()
H A Ddictobject.c2420 writer.min_length = 1 + 4 + (2 + 4) * (mp->ma_used - 1) + 1; in dict_repr()
/third_party/python/Include/cpython/
H A Dunicodeobject.h727 Py_ssize_t min_length; member
743 * disabled. Set min_length, min_char and overallocate attributes to control
/third_party/python/Objects/stringlib/
H A Dunicode_format.h925 writer.min_length = PyUnicode_GET_LENGTH(input->str) + 100; in build_string()
/third_party/python/Modules/cjkcodecs/
H A Dmultibytecodec.c678 buf.writer.min_length = datalen; in _multibytecodec_MultibyteCodec_decode_impl()
871 buf->writer.min_length += size; in decoder_prepare_buffer()
/third_party/node/test/fixtures/wpt/resources/
H A Didlharness.js1652 var min_length = minOverloadLength([constructor]);
1737 assert_equals(desc.value, min_length, "wrong value for " + name + ".length");
/third_party/cups-filters/utils/
H A Dcups-browsed.c2069 int min_length = INT_MAX, min_width = INT_MAX, in get_pagesize() local
2075 sizes = generate_sizes(printer_attributes, &defattr, &min_length, &min_width, in get_pagesize()
2687 int min_length, min_width, max_length, max_width, in get_cluster_sizes() local
2704 min_length = INT_MAX; in get_cluster_sizes()
2712 sizes = generate_sizes(p->prattrs, &defattr, &min_length, &min_width, in get_cluster_sizes()
2962 int min_length = INT_MAX, min_width = INT_MAX, in get_cluster_default_attributes() local
3006 sizes = generate_sizes(def_printer->prattrs, &defattr, &min_length, in get_cluster_default_attributes()
/third_party/node/deps/v8/tools/
H A Dgrokdump.py2148 def FindFirstAsciiString(self, start, end=None, min_length=32):
2154 if len(message) > min_length:

Completed in 66 milliseconds