Home
last modified time | relevance | path

Searched refs:range (Results 626 - 650 of 2429) sorted by relevance

1...<<21222324252627282930>>...98

/third_party/icu/icu4c/source/test/intltest/
H A Dnumbertest_range.cpp155 u"Locale with custom range separator", in testBasic()
170 u"Locale that already has spaces around range separator", in testBasic()
713 // For comparison, run the non-range version of the formatter in testPlurals()
928 FormattedNumberRange range = lnf.formatFormattableRange(1, 5, status); in testGetDecimalNumbers() local
931 range.toString(status)); in testGetDecimalNumbers()
932 auto decimalNumbers = range.getDecimalNumbers<std::string>(status); in testGetDecimalNumbers()
945 FormattedNumberRange range = lnf.formatFormattableRange(3, 3, status); in testGetDecimalNumbers() local
948 range.toString(status)); in testGetDecimalNumbers()
949 auto decimalNumbers = range.getDecimalNumbers<std::string>(status); in testGetDecimalNumbers()
1010 assertEquals("Negative to positive range", in test21358_SignPosition()
[all...]
/third_party/libinput/src/
H A Dquirks.c91 struct quirk_range range; member
705 struct quirk_range range; in parse_attr() local
719 if (!parse_range_property(value, &range.upper, &range.lower)) in parse_attr()
722 p->value.range = range; in parse_attr()
763 if (!parse_range_property(value, &range.upper, &range.lower)) in parse_attr()
766 p->value.range = range; in parse_attr()
[all...]
/third_party/skia/third_party/externals/freetype/src/gxvalid/
H A Dgxvcommn.c536 GXV_TRACE(( "reverse ordered range specification at unit %d:" in gxv_LookupTable_fmt2_validate()
607 GXV_TRACE(( "reverse ordered range specification at unit %d:" in gxv_LookupTable_fmt4_validate()
693 GXV_TRACE(( " endmarker found within defined range" in gxv_LookupTable_fmt6_validate()
1387 /* XXX: check range? */ in gxv_XClassTable_lookupfmt4_transit()
1628 /* XXX: check range? */ in gxv_XStateTable_validate()
1708 odtect->range[odtect->nRanges].start = start; in gxv_odtect_add_range()
1709 odtect->range[odtect->nRanges].length = length; in gxv_odtect_add_range()
1710 odtect->range[odtect->nRanges].name = (FT_String*)name; in gxv_odtect_add_range()
1726 if ( 0 != gxv_compare_ranges( odtect->range[i].start, in gxv_odtect_validate()
1727 odtect->range[ in gxv_odtect_validate()
[all...]
/third_party/python/Lib/test/
H A Dtest_threading.py174 for i in range(NUMTASKS):
447 for i in range(1, 100):
601 for i in range(20):
795 for i in range(500):
804 for limit in range(1, 10):
807 for _ in range(limit)]
813 for _ in range(limit)]
854 for test in range(3):
1101 for _ in range(40):
1132 for i in range(1
[all...]
H A Dtest_complex.py95 simple_real = [float(i) for i in range(-5, 6)]
107 for i in range(100):
147 for i in range(1, 100):
176 for i in range(1, 10):
179 check(2 ** pow, range(1, 101), lambda delta: delta % mult == 0)
180 check(2 ** pow, range(1, 101), lambda delta: False, float(i))
181 check(2 ** 53, range(-100, 0), lambda delta: True)
301 for i in range(100):
545 for x in range(-30, 30):
551 nums = [complex(x/3., y/7.) for x in range(
[all...]
H A Dtest_calendar.py619 for firstweekday in range(7):
628 self.assertEqual(days, list(range(1, 29)))
631 for firstweekday in range(7):
640 week0 = list(range(7))
641 for firstweekday in range(7):
659 for i in range(len(weeks)):
819 # test when no range i.e. two identical years as args
823 # test when no leap years in range
827 # test no leap years in range, when upper boundary is a leap year
831 # test when one leap year in range, lowe
[all...]
/third_party/ffmpeg/libavfilter/
H A Daf_agate.c48 double range; member
74 { "range", "set max gain reduction", OFFSET(range), AV_OPT_TYPE_DOUBLE, {.dbl=0.06125}, 0, 1, A },
122 double range, int mode) in output_gain()
141 return FFMAX(range, exp(gain - slope)); in output_gain()
183 s->range, s->mode); in gate()
120 output_gain(double lin_slope, double ratio, double thres, double knee, double knee_start, double knee_stop, double range, int mode) output_gain() argument
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DTailoredSet.java58 Trie2.Range range; in forData()
59 while (trieIterator.hasNext() && !(range = trieIterator.next()).leadSurrogate) { in forData()
60 enumTailoredRange(range.startCodePoint, range.endCodePoint, range.value, this); in forData()
/third_party/icu/icu4c/source/i18n/
H A Duspoof_conf.cpp367 for (int32_t range=0; range<fKeySet->getRangeCount(); range++) { in build()
370 for (UChar32 keyChar=fKeySet->getRangeStart(range); in build()
371 keyChar <= fKeySet->getRangeEnd(range); keyChar++) { in build()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DTailoredSet.java60 Trie2.Range range; in forData()
61 while (trieIterator.hasNext() && !(range = trieIterator.next()).leadSurrogate) { in forData()
62 enumTailoredRange(range.startCodePoint, range.endCodePoint, range.value, this); in forData()
/third_party/node/lib/internal/crypto/
H A Drandom.js207 // Generates an integer in [min, max) range where min is inclusive and max is
238 // First we generate a random int between [0..range)
239 const range = max - min;
241 if (!(range <= RAND_MAX)) {
243 `<= ${RAND_MAX}`, range);
246 // For (x % range) to produce an unbiased value greater than or equal to 0 and
247 // less than range, x must be drawn randomly from the set of integers greater
249 const randLimit = RAND_MAX - (RAND_MAX % range);
264 const n = (x % range) + min;
/third_party/node/deps/icu-small/source/i18n/
H A Duspoof_conf.cpp367 for (int32_t range=0; range<fKeySet->getRangeCount(); range++) { in build()
370 for (UChar32 keyChar=fKeySet->getRangeStart(range); in build()
371 keyChar <= fKeySet->getRangeEnd(range); keyChar++) { in build()
/third_party/node/deps/v8/src/regexp/
H A Dregexp-compiler.h114 // sets of characters that can occur are [any, [f, o], [o]]. We find a range in
118 // [f, o] and [o]) then we can skip forwards by the range size (in this case 2).
279 explicit DeferredClearCaptures(Interval range) in DeferredClearCaptures() argument
280 : DeferredAction(ActionNode::CLEAR_CAPTURES, -1), range_(range) {} in DeferredClearCaptures()
281 Interval range() { return range_; } in range() function in v8::internal::Trace::DeferredClearCaptures
609 void AddRange(CharacterRange range);
619 bool RangeContainsLatin1Equivalents(CharacterRange range);
/third_party/node/deps/undici/src/lib/core/
H A Dutil.js469 // https://www.rfc-editor.org/rfc/rfc9110#field.content-range
470 function parseRangeHeader (range) {
471 if (range == null || range === '') return { start: 0, end: null, size: null }
473 const m = range ? range.match(/^bytes (\d+)-(\d+)\/(\d+)?$/) : null
/third_party/python/Lib/multiprocessing/
H A Dsynchronize.py39 RECURSIVE_MUTEX, SEMAPHORE = list(range(2))
55 for i in range(100):
256 for i in range(count):
267 for i in range(count):
289 for i in range(sleepers):
/third_party/skia/third_party/externals/icu/source/i18n/
H A Duspoof_conf.cpp368 for (int32_t range=0; range<fKeySet->getRangeCount(); range++) { in build()
371 for (UChar32 keyChar=fKeySet->getRangeStart(range); in build()
372 keyChar <= fKeySet->getRangeEnd(range); keyChar++) { in build()
/third_party/skia/third_party/externals/angle2/src/third_party/libXNVCtrl/
H A DNVCtrl.h431 * NV_CTRL_FRAMELOCK_SYNC_DELAY must be queried to get the range
727 * normally be in the range [0,32). Only available on GeForceFX or
2033 * channel range. This is a packed int that has the following format
2038 * To query the current values, pass the range # throught the display_mask
2044 #define NV_CTRL_GVO_COMPOSITE_MAKE_RANGE(range, enable, min, max) \
2046 (((range)&0x7FF) << 21))
2048 #define NV_CTRL_GVO_COMPOSITE_GET_RANGE(val, range, enable, min, max) \
2052 (range) = ((val) >> 21) & 0x7FF;
2056 * channel range. This is a packed int that has the following format
2061 * To query the current values, pass the range # through
4334 } range; global() member
[all...]
/third_party/pulseaudio/src/tests/
H A Dvolume-ui.py161 for i in range(cm.channels):
180 for i in range(cm.channels):
192 for i in range(cm.channels):
213 for i in range(cm.channels):
263 for i in range(cm.channels):
/third_party/vk-gl-cts/modules/gles2/scripts/
H A Dgen-conversions.py79 for ndx in range(len(comps[0])):
89 for ndx in range(len(comps[0])):
95 for ndx in range(len(comps[0])):
101 for ndx in range(len(comps[0])):
218 self.op = "out0 = %s(%s);" % (self.outType, ", ".join(["in%d" % x for x in range(len(inComps))]))
/third_party/ffmpeg/libavcodec/
H A Daudiotoolboxenc.c325 "VBR quality %d out of range, should be 0-14\n", q); in ffat_init_encoder()
351 AudioValueRange *range = &ranges[i]; in ffat_init_encoder() local
352 if (rate >= range->mMinimum && rate <= range->mMaximum) { in ffat_init_encoder()
355 } else if (rate > range->mMaximum) { in ffat_init_encoder()
356 new_rate = range->mMaximum; in ffat_init_encoder()
358 new_rate = range->mMinimum; in ffat_init_encoder()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DTrie2Test.java154 // Iteration over a leading surrogate range. in TestTrie2API()
181 // Iteration over a leading surrogate range with a ValueMapper. in TestTrie2API()
419 // The expected value range is from the previous boundary's limit to before
623 // High limit is first code point following the range in trieGettersTest()
701 for (Trie2.Range range: trie) { in trieGettersTest()
702 for (int cp=range.startCodePoint; cp<=range.endCodePoint; cp++) { in trieGettersTest()
703 if (range.leadSurrogate) { in trieGettersTest()
705 assertEquals(testName, range.value, trie.getFromU16SingleLead((char)cp)); in trieGettersTest()
707 assertEquals(testName, range in trieGettersTest()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTrie2Test.java151 // Iteration over a leading surrogate range. in TestTrie2API()
178 // Iteration over a leading surrogate range with a ValueMapper. in TestTrie2API()
416 // The expected value range is from the previous boundary's limit to before
620 // High limit is first code point following the range in trieGettersTest()
698 for (Trie2.Range range: trie) { in trieGettersTest()
699 for (int cp=range.startCodePoint; cp<=range.endCodePoint; cp++) { in trieGettersTest()
700 if (range.leadSurrogate) { in trieGettersTest()
702 assertEquals(testName, range.value, trie.getFromU16SingleLead((char)cp)); in trieGettersTest()
704 assertEquals(testName, range in trieGettersTest()
[all...]
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_lrz.c527 const VkImageSubresourceRange *range = NULL; in tu_lrz_clear_depth_image() local
531 range = &pRanges[i]; in tu_lrz_clear_depth_image()
536 if (!range) in tu_lrz_clear_depth_image()
545 .base_layer = range->baseArrayLayer, in tu_lrz_clear_depth_image()
546 .layer_count = vk_image_subresource_layer_count(&image->vk, range), in tu_lrz_clear_depth_image()
547 .base_mip_level = range->baseMipLevel, in tu_lrz_clear_depth_image()
/third_party/spirv-tools/source/opt/
H A Dconstants.cpp181 for (auto range = const_val_to_id_.equal_range(c); in FindDeclaredConstant()
182 range.first != range.second; ++range.first) { in FindDeclaredConstant()
184 context()->get_def_use_mgr()->GetDef(range.first->second); in FindDeclaredConstant()
186 return range.first->second; in FindDeclaredConstant()
/third_party/backends/backend/
H A Dma1509.c563 s->opt[OPT_TL_X].constraint.range = &s->hw->x_range; in init_options()
573 s->opt[OPT_TL_Y].constraint.range = &s->hw->y_range; in init_options()
583 s->opt[OPT_BR_X].constraint.range = &s->hw->x_range; in init_options()
593 s->opt[OPT_BR_Y].constraint.range = &s->hw->y_range; in init_options()
611 s->opt[OPT_THRESHOLD].constraint.range = &u8_range; in init_options()
631 s->opt[OPT_GAMMA_VECTOR_R].constraint.range = &u8_range; in init_options()
645 s->opt[OPT_GAMMA_VECTOR_G].constraint.range = &u8_range; in init_options()
659 s->opt[OPT_GAMMA_VECTOR_B].constraint.range = &u8_range; in init_options()
1624 s->opt[OPT_TL_X].constraint.range = &s->hw->x_trans_range; in sane_control_option()
1625 s->opt[OPT_TL_Y].constraint.range in sane_control_option()
[all...]

Completed in 29 milliseconds

1...<<21222324252627282930>>...98