Home
last modified time | relevance | path

Searched refs:cut2 (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Objects/stringlib/
Dfastsearch.h267 Py_ssize_t cut1, period1, cut2, period2, cut, period; in STRINGLIB() local
269 cut2 = STRINGLIB(_lex_search)(needle, len_needle, &period2, 1); in STRINGLIB()
272 if (cut1 > cut2) { in STRINGLIB()
278 cut = cut2; in STRINGLIB()
Dstringlib_find_two_way_notes.txt380 cut2 = len(needle) - len(suffix2)
381 cut = max(cut1, cut2) # the later cut
383 For cut2, "invert the alphabet" is different than saying min(...),
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
DCalendarRegressionTest.java1066 Date cut2 = new Date(cut.getTime() + 100*24*60*60*1000L); // 100 days in Test4141665() local
1071 cal2.setGregorianChange(cut2); in Test4141665()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DCalendarRegressionTest.java1063 Date cut2 = new Date(cut.getTime() + 100*24*60*60*1000L); // 100 days in Test4141665() local
1068 cal2.setGregorianChange(cut2); in Test4141665()
/third_party/icu/icu4c/source/test/intltest/
Dcalregts.cpp1529 UDate cut2 = cut + 100*24*60*60*1000.0; // 100 days later in test4141665() local
1533 cal2->setGregorianChange(cut2,status); in test4141665()