Home
last modified time | relevance | path

Searched refs:range (Results 2851 - 2875 of 3942) sorted by relevance

1...<<111112113114115116117118119120>>...158

/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/
H A Dwire_format_test.py58 for expected_wire_type in range(6): # Highest-numbered wiretype is 5.
/third_party/python/Lib/ctypes/test/
H A Dtest_numbers.py248 items = range(rep)
/third_party/python/Lib/
H A Dpoplib.py477 for i in range(1, numMsgs + 1):
/third_party/python/Lib/json/
H A Dencoder.py30 for i in range(0x20):
241 "Out of range float values are not JSON compliant: " +
/third_party/python/Lib/test/
H A Dtest_type_comments.py232 for version in range(self.lowest, self.highest + 1):
H A Dtest_shelve.py203 for proto in range(pickle.HIGHEST_PROTOCOL + 1):
H A Dtest_timeout.py72 # Test range checking by settimeout()
127 for i in range(count):
H A Dtest_userdict.py117 for i in range(20):
/third_party/python/Lib/unittest/test/
H A Dtest_assertions.py181 one = ''.join(chr(i) for i in range(255))
/third_party/vk-gl-cts/scripts/android/
H A Dinstall_apk.py234 for i in range(0, len(devices)):
/third_party/backends/backend/
H A Dhp-option.c116 * in y-range 0.0,...,1.0)
249 DBG(3, "probed_choice: value %d out of range (%d,%d)\n", choice->val, in hp_probed_choice_isSupported()
720 SANE_Range * range = sanei_hp_alloc(sizeof(*range)); /* FIXME: leak? */ in _set_range() local
722 if (! range) in _set_range()
725 range->min = min; in _set_range()
726 range->max = max; in _set_range()
727 range->quant = quant; in _set_range()
728 optd->constraint.range = range; in _set_range()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUCharacterTest.java1303 errln("Fail, expected iterator to return false when range is set outside the meaningful range"); in TestNameIteration()
1307 errln("Fail, expected iterator to return false when range is set outside the meaningful range"); in TestNameIteration()
1311 errln("Fail, expected exception when encountered invalid range"); in TestNameIteration()
1317 errln("Fail, expected iterator to return 0 when range start limit is set outside the meaningful range"); in TestNameIteration()
1326 errln("Fail, expected iterator to return 0x10FFFF when range end limit is set outside the meaningful range"); in TestNameIteration()
1598 { 0x1E800, UCharacterDirection.LEFT_TO_RIGHT }, /* new default-R range i in TestIteration()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterTest.java1300 errln("Fail, expected iterator to return false when range is set outside the meaningful range"); in TestNameIteration()
1304 errln("Fail, expected iterator to return false when range is set outside the meaningful range"); in TestNameIteration()
1308 errln("Fail, expected exception when encountered invalid range"); in TestNameIteration()
1314 errln("Fail, expected iterator to return 0 when range start limit is set outside the meaningful range"); in TestNameIteration()
1323 errln("Fail, expected iterator to return 0x10FFFF when range end limit is set outside the meaningful range"); in TestNameIteration()
1603 { 0x1E800, UCharacterDirection.LEFT_TO_RIGHT }, /* new default-R range i in TestIteration()
[all...]
/third_party/openGLES/xml/
H A Dreadme.tex278 <kind name="Clamped[0; 1]" desc="This parameter will get clamped to the 0 to 1 range." />
390 a reserved range of enumerants for a particular vendor or purpose.
396 reserved range of enumerants is allocated.
474 Each \tag{unused} tag defines a range of enumerants which is allocated,
482 an unused range of enumerants. \attr{start} must be $\leq$
483 \attr{end}. This range should not exceed the range reserved by the
486 reserved range of enumerants is allocated. Usually identical to
/third_party/typescript/tests/baselines/reference/
H A Dparserharness.js1569 // Store edit range + new length of script
1698 var range = this.scripts[scriptIndex].getEditRangeSinceVersion(scriptVersion);
1699 var result = (range.minChar + "," + range.limChar + "," + range.delta);
3439 // Store edit range + new length of script
3547 var range = this.scripts[scriptIndex].getEditRangeSinceVersion(scriptVersion);
3548 var result = (range.minChar + "," + range.limChar + "," + range
[all...]
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dgen_framework_sc.py312 range = self.contains(self.type, platformType)
313 if range != None:
314 self.type = self.type[:range[0]]+[PLATFORM_TYPE_NAMESPACE + '::' + substitute[0]] + substitute[1:] + self.type[range[1]:]
325 for i in range(len(big)-len(small)+1):
326 for j in range(len(small)):
674 for ndx in range(1, len(parts), 2):
905 for i in range(1, len(enum.name)):
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs1512 black_box(map.range(f(i, j))); in bench_range()
3816 // orthogonally from range types; therefore, it is worth testing
3824 ($s:expr, $range:expr, $expected:expr) => {
3831 assert_eq!(&s[$range], expected, "(in assertion for: index)");
3832 assert_eq!(s.get($range), Some(expected), "(in assertion for: get)");
3835 s.get_unchecked($range),
3845 assert_eq!(&mut s[$range], expected, "(in assertion for: index_mut)",);
3847 s.get_mut($range),
3853 s.get_unchecked_mut($range),
3895 // output str. This helps validate "critical points" where an input range
30832 pub fn range<T: ?Sized, R>(&self, range: R) -> Range<'_, K, V> range() functions
32437 pub fn range<K: ?Sized, R>(&self, range: R) -> Range<'_, T> range() functions
34819 fn range<'a, 'new>(v: Range<'a, &'static str>) -> Range<'a, &'new str> { into_iter() functions
34839 fn range<T: Sync + Ord>(v: &BTreeSet<T>) -> impl Sync + '_ { range() functions
34878 fn range<T: Send + Sync + Ord>(v: &BTreeSet<T>) -> impl Send + '_ { range() functions
36818 fn range<T: Ord>(v: &BTreeMap<Box<T>, ()>, t: T) { test_borrow() functions
37209 fn range<T: Sync + Ord>(v: &BTreeMap<T, T>) -> impl Sync + '_ { drain_filter() functions
37278 fn range<T: Send + Sync + Ord>(v: &BTreeMap<T, T>) -> impl Send + '_ { iter() functions
41451 pub fn range<R>(&self, range: R) -> Iter<'_, T> range() functions
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/
H A Dice_flow.c1080 seg->range |= bit; in ice_flow_set_fld_ext()
1100 * @range: indicate if field being matched is to be in a range
1112 u16 val_loc, u16 mask_loc, u16 last_loc, bool range) in ice_flow_set_fld()
1114 enum ice_flow_fld_match_type t = range ? in ice_flow_set_fld()
1111 ice_flow_set_fld(struct ice_flow_seg_info *seg, enum ice_flow_field fld, u16 val_loc, u16 mask_loc, u16 last_loc, bool range) ice_flow_set_fld() argument
/kernel/linux/linux-5.10/drivers/hv/
H A Dhv_balloon.c134 * The PFN number of the first page in the range.
140 * The number of pages in the range.
294 * range_count: The number of ranges in the range array.
317 * range_count: The number of ranges in the range array.
345 * mem_range: Memory range to hot add.
351 union dm_mem_page_range range; member
421 * The range start_pfn : end_pfn specifies the range
422 * that the host has asked us to hot add. The range
423 * start_pfn : ha_end_pfn specifies the range tha
[all...]
/kernel/linux/linux-5.10/drivers/s390/scsi/
H A Dzfcp_fc.c242 static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range, in _zfcp_fc_incoming_rscn() argument
251 if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range)) in _zfcp_fc_incoming_rscn()
/kernel/linux/linux-5.10/drivers/pinctrl/intel/
H A Dpinctrl-baytrail.c757 struct pinctrl_gpio_range *range, in byt_gpio_request_enable()
794 struct pinctrl_gpio_range *range, in byt_gpio_disable_free()
819 struct pinctrl_gpio_range *range, in byt_gpio_set_direction()
1545 dev_err(dev, "failed to add GPIO pin range\n"); in byt_gpio_add_pin_ranges()
756 byt_gpio_request_enable(struct pinctrl_dev *pctl_dev, struct pinctrl_gpio_range *range, unsigned int offset) byt_gpio_request_enable() argument
793 byt_gpio_disable_free(struct pinctrl_dev *pctl_dev, struct pinctrl_gpio_range *range, unsigned int offset) byt_gpio_disable_free() argument
818 byt_gpio_set_direction(struct pinctrl_dev *pctl_dev, struct pinctrl_gpio_range *range, unsigned int offset, bool input) byt_gpio_set_direction() argument
/kernel/linux/linux-5.10/include/linux/
H A Dnfs_xdr.h255 struct pnfs_layout_range range; member
268 struct pnfs_layout_range range; member
326 struct pnfs_layout_range range; member
/kernel/linux/linux-5.10/fs/nfs/filelayout/
H A Dfilelayout.c463 /* Retrieve the correct rpc_client for the byte range */ in filelayout_read_pagelist()
506 /* Retrieve the correct rpc_client for the byte range */ in filelayout_write_pagelist()
609 if (lgr->range.offset != 0 || in filelayout_check_layout()
610 lgr->range.length != NFS4_MAX_UINT64) { in filelayout_check_layout()
616 if (fl->pattern_offset > lgr->range.offset) { in filelayout_check_layout()
/kernel/linux/linux-5.10/fs/
H A Ddax.c166 * the range covered by the PMD map to the same bit lock. in dax_entry_waitqueue()
465 * This will happen if there are any PTE entries within the PMD range
814 struct mmu_notifier_range range; in dax_entry_mkclean() local
825 * follow_invalidate_pte() will use the range to call in dax_entry_mkclean()
829 if (follow_invalidate_pte(vma->vm_mm, address, &range, &ptep, in dax_entry_mkclean()
873 mmu_notifier_invalidate_range_end(&range); in dax_entry_mkclean()
964 * Flush the mapping to the persistent domain within the byte range of [start,
1514 * that a PMD range in the page table overlaps exactly with a PMD in dax_iomap_pmd_fault()
1515 * range in the page cache. in dax_iomap_pmd_fault()
1728 * This function ensures that the file range touche
[all...]
/kernel/linux/linux-5.10/kernel/dma/
H A Ddebug.c355 unsigned int range = 0; in bucket_find_contain() local
357 while (range <= max_range) { in bucket_find_contain()
367 range += (1 << HASH_FN_SHIFT); in bucket_find_contain()
1119 " DMA memory outside allocated range " in check_sync()

Completed in 61 milliseconds

1...<<111112113114115116117118119120>>...158