Home
last modified time | relevance | path

Searched refs:minlength (Results 1 – 25 of 29) sorted by relevance

12

/third_party/glib/glib/pcre/
Dpcre_byte_order.c145 study->minlength = swap_uint32(study->minlength); in pcre_pattern_to_host_byte_order()
Dpcre_fullinfo.c149 (int)(study->minlength) : -1; in pcre_fullinfo()
Dpcre_study.c1470 study->minlength = min; in pcre_study()
1472 else study->minlength = 0; in pcre_study()
Dpcre_internal.h2002 pcre_uint32 minlength; /* Minimum subject length */ member
Dpcre_jit_compile.c7099 …if (mode == JIT_COMPILE && study != NULL && study->minlength > 1 && (re->options & PCRE_NO_START_O… in PRIV()
7101 OP2(SLJIT_ADD, TMP1, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(study->minlength + 1)); in PRIV()
7110 …if (mode == JIT_COMPILE && study != NULL && study->minlength > 1 && (re->options & PCRE_NO_START_O… in PRIV()
7112 OP2(SLJIT_ADD, TMP1, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(study->minlength + 1)); in PRIV()
Dpcre_dfa_exec.c3502 (pcre_uint32)(end_subject - current_subject) < study->minlength) in pcre_dfa_exec()
/third_party/ltp/testcases/kernel/fs/doio/
Diogen.c581 int minlength, maxlength, laststart, lastend; in form_iorequest() local
657 minlength = (Mintrans > mult) ? Mintrans : mult; in form_iorequest()
668 if (minlength > fptr->f_length - offset) in form_iorequest()
675 length = random_range(minlength, maxlength, mult, &errp); in form_iorequest()
679 TagName, minlength, maxlength, mult); in form_iorequest()
691 if (minlength > maxlength) { in form_iorequest()
697 length = random_range(minlength, maxlength, mult, &errp); in form_iorequest()
701 TagName, minlength, maxlength, mult); in form_iorequest()
/third_party/mindspore/tests/st/networks/models/deeplabv3/src/
Dmiou_precision.py22 return np.bincount(n * target[k].astype(int) + pred[k], minlength=n ** 2).reshape(n, n)
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DUTF16.java2469 int minlength = length1; in compareCaseSensitive() local
2475 minlength = length2; in compareCaseSensitive()
2481 for (; index < minlength; index++) { in compareCaseSensitive()
2490 if (index == minlength) { in compareCaseSensitive()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUTF16.java2554 int minlength = length1; in compareCaseSensitive() local
2560 minlength = length2; in compareCaseSensitive()
2566 for (; index < minlength; index++) { in compareCaseSensitive()
2575 if (index == minlength) { in compareCaseSensitive()
/third_party/pcre2/pcre2/src/
Dpcre2_pattern_info.c221 *((uint32_t *)where) = re->minlength; in pcre2_pattern_info()
Dpcre2_intmodedep.h637 uint16_t minlength; /* Minimum length of match */ member
Dpcre2_study.c1817 re->minlength = (min > UINT16_MAX)? UINT16_MAX : min; in PRIV()
Dpcre2_compile.c10190 re->minlength = 0; in pcre2_compile()
10491 if (re->minlength < minminlength) re->minlength = minminlength; in pcre2_compile()
Dpcre2_dfa_match.c3822 if (end_subject - start_match < re->minlength) goto NOMATCH_EXIT; in pcre2_dfa_match()
Dpcre2test.c4431 depth_limit, heap_limit, match_limit, minlength, nameentrysize, namecount, in show_pattern_info() local
4497 pattern_info(PCRE2_INFO_MINLENGTH, &minlength, FALSE) + in show_pattern_info()
4736 fprintf(outfile, "Subject length lower bound = %d\n", minlength); in show_pattern_info()
Dpcre2_match.c6961 if (end_subject - start_match < re->minlength) in pcre2_match()
/third_party/mindspore/mindspore/nn/metrics/
Dconfusion_matrix.py114 bincount = np.bincount(trans, minlength=self.num_classes ** 2)
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtp/
Dgstrtcpbuffer.c416 guint minlength; in read_packet_header() local
450 minlength = (minsize - 4) >> 2; in read_packet_header()
453 if (packet->length < minlength) in read_packet_header()
/third_party/skia/third_party/externals/icu/source/i18n/
Dusearch.cpp555 int16_t minlength = cesize > expandlength in initialize() local
557 pattern->defaultShiftSize = minlength; in initialize()
559 cesize, expandlength, minlength, minlength); in initialize()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dusearch.cpp555 int16_t minlength = cesize > expandlength in initialize() local
557 pattern->defaultShiftSize = minlength; in initialize()
559 cesize, expandlength, minlength, minlength); in initialize()
/third_party/icu/icu4c/source/i18n/
Dusearch.cpp555 int16_t minlength = cesize > expandlength in initialize() local
557 pattern->defaultShiftSize = minlength; in initialize()
559 cesize, expandlength, minlength, minlength); in initialize()
/third_party/python/Tools/scripts/
Dtexi2html.py1937 def splitwords(str, minlength): argument
1947 while len(words) < minlength: words.append('')
/third_party/mindspore/tests/st/numpy_native/
Dtest_math_ops.py2144 match_res(mnp.bincount, onp.bincount, x, minlength=25, dtype=mnp.int32)
2147 match_all_arrays(mnp.bincount(to_tensor(x), to_tensor(weights), minlength=25),
2148 onp.bincount(x, weights, minlength=25), error=3)
/third_party/mindspore/mindspore/numpy/
Dmath_ops.py4588 def bincount(x, weights=None, minlength=0, length=None): argument
4642 … length = int(maximum(F.reduce_max(x.astype(mstype.float32)), minlength - 1).asnumpy()) + 1

12