/third_party/node/deps/icu-small/source/common/ |
H A D | utrie2_builder.cpp | 84 /** The start of allocated index-2 blocks. */ 94 /** The start of allocated data blocks. */ 98 * The start of data blocks for U+0800 and above. 351 copyEnumRange(const void *context, UChar32 start, UChar32 end, uint32_t value) { in copyEnumRange() argument 357 if(start==end) { in copyEnumRange() 358 utrie2_set32(nt->trie, start, value, &nt->errorCode); in copyEnumRange() 360 utrie2_setRange32(nt->trie, start, end, value, true, &nt->errorCode); in copyEnumRange() 716 fillBlock(uint32_t *block, UChar32 start, UChar32 limit, in fillBlock() argument 721 block+=start; in fillBlock() 738 UChar32 start, UChar3 in utrie2_setRange32() 737 utrie2_setRange32(UTrie2 *trie, UChar32 start, UChar32 end, uint32_t value, UBool overwrite, UErrorCode *pErrorCode) utrie2_setRange32() argument 1035 int32_t start, newStart, movedStart; compactData() local 1148 int32_t i, start, newStart, movedStart, overlap; compactIndex2() local [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | rbt_pars.cpp | 210 int32_t start = pos.getIndex(); in parseReference() local 211 int32_t i = start; in parseReference() 215 if ((i==start && !u_isIDStart(c)) || !u_isIDPart(c)) { in parseReference() 220 if (i == start) { // No valid name chars in parseReference() 224 text.extractBetween(start, i, result); in parseReference() 278 // must be at the start or end, and they cannot move the cursor past 332 int32_t start, in syntaxError() 334 return parser.syntaxError(code, rule, start, status); in syntaxError() 365 int32_t start = pos; in parse() local 370 return syntaxError(U_MISPLACED_CURSOR_OFFSET, rule, start, statu in parse() 330 syntaxError(UErrorCode code, const UnicodeString& rule, int32_t start, UErrorCode& status) syntaxError() argument 403 int32_t start = pos; parseSection() local 1165 setVariableRange(int32_t start, int32_t end, UErrorCode& status) setVariableRange() argument 1289 int32_t start = pos; parseRule() local 1501 int32_t start = uprv_max(pos - LEN, 0); syntaxError() local [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | rbt_pars.cpp | 210 int32_t start = pos.getIndex(); in parseReference() local 211 int32_t i = start; in parseReference() 215 if ((i==start && !u_isIDStart(c)) || !u_isIDPart(c)) { in parseReference() 220 if (i == start) { // No valid name chars in parseReference() 224 text.extractBetween(start, i, result); in parseReference() 278 // must be at the start or end, and they cannot move the cursor past 332 int32_t start, in syntaxError() 334 return parser.syntaxError(code, rule, start, status); in syntaxError() 365 int32_t start = pos; in parse() local 370 return syntaxError(U_MISPLACED_CURSOR_OFFSET, rule, start, statu in parse() 330 syntaxError(UErrorCode code, const UnicodeString& rule, int32_t start, UErrorCode& status) syntaxError() argument 403 int32_t start = pos; parseSection() local 1147 setVariableRange(int32_t start, int32_t end, UErrorCode& status) setVariableRange() argument 1271 int32_t start = pos; parseRule() local 1483 int32_t start = uprv_max(pos - LEN, 0); syntaxError() local [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | utrie2_builder.cpp | 84 /** The start of allocated index-2 blocks. */ 94 /** The start of allocated data blocks. */ 98 * The start of data blocks for U+0800 and above. 351 copyEnumRange(const void *context, UChar32 start, UChar32 end, uint32_t value) { in copyEnumRange() argument 357 if(start==end) { in copyEnumRange() 358 utrie2_set32(nt->trie, start, value, &nt->errorCode); in copyEnumRange() 360 utrie2_setRange32(nt->trie, start, end, value, TRUE, &nt->errorCode); in copyEnumRange() 716 fillBlock(uint32_t *block, UChar32 start, UChar32 limit, in fillBlock() argument 721 block+=start; in fillBlock() 738 UChar32 start, UChar3 in utrie2_setRange32() 737 utrie2_setRange32(UTrie2 *trie, UChar32 start, UChar32 end, uint32_t value, UBool overwrite, UErrorCode *pErrorCode) utrie2_setRange32() argument 1035 int32_t start, newStart, movedStart; compactData() local 1148 int32_t i, start, newStart, movedStart, overlap; compactIndex2() local [all...] |
/kernel/linux/linux-5.10/arch/mips/include/asm/ |
H A D | r4kcache.h | 210 unsigned long start = INDEX_BASE; \ 211 unsigned long end = start + current_cpu_data.desc.waysize; \ 218 for (addr = start; addr < end; addr += lsize * 32) \ 225 unsigned long start = page; \ 229 cache_unroll(32, kernel_cache, hitop, start, lsize); \ 230 start += lsize * 32; \ 231 } while (start < end); \ 237 unsigned long start = INDEX_BASE + (page & indexmask); \ 238 unsigned long end = start + PAGE_SIZE; \ 245 for (addr = start; add [all...] |
/kernel/linux/linux-5.10/arch/powerpc/mm/book3s64/ |
H A D | hash_pgtable.c | 105 int __meminit hash__vmemmap_create_mapping(unsigned long start, in hash__vmemmap_create_mapping() argument 111 if ((start + page_size) >= H_VMEMMAP_END) { in hash__vmemmap_create_mapping() 116 rc = htab_bolt_mapping(start, start + page_size, phys, in hash__vmemmap_create_mapping() 120 int rc2 = htab_remove_mapping(start, start + page_size, in hash__vmemmap_create_mapping() 129 void hash__vmemmap_remove_mapping(unsigned long start, in hash__vmemmap_remove_mapping() argument 132 int rc = htab_remove_mapping(start, start + page_size, in hash__vmemmap_remove_mapping() 403 static bool hash__change_memory_range(unsigned long start, unsigne argument 431 unsigned long start, end; hash__mark_rodata_ro() local 441 unsigned long start, end, pp; hash__mark_initmem_nx() local [all...] |
/kernel/linux/linux-6.6/arch/loongarch/kernel/ |
H A D | numa.c | 151 static int __init numa_add_memblk_to(int nid, u64 start, u64 end, in numa_add_memblk_to() argument 155 if (start == end) in numa_add_memblk_to() 159 if (start > end || nid < 0 || nid >= MAX_NUMNODES) { in numa_add_memblk_to() 161 nid, start, end - 1); in numa_add_memblk_to() 170 mi->blk[mi->nr_blks].start = PFN_ALIGN(start); in numa_add_memblk_to() 180 * @start: Start address of the new memblk 188 int __init numa_add_memblk(int nid, u64 start, u64 end) in numa_add_memblk() argument 190 return numa_add_memblk_to(nid, start, end, &numa_meminfo); in numa_add_memblk() 240 u64 s = mi->blk[i].start >> PAGE_SHIF in numa_meminfo_cover_memory() 255 add_node_intersection(u32 node, u64 start, u64 size, u32 type) add_node_intersection() argument 276 add_numamem_region(u64 start, u64 end, u32 type) add_numamem_region() argument 365 phys_addr_t start = memblock_start_of_DRAM(); fake_numa_init() local [all...] |
/kernel/linux/linux-5.10/drivers/infiniband/hw/mthca/ |
H A D | mthca_profile.c | 71 u64 start; in mthca_make_profile() member 144 profile[i].start = mem_base + total_size; in mthca_make_profile() 160 (unsigned long long) profile[i].start, in mthca_make_profile() 176 init_hca->qpc_base = profile[i].start; in mthca_make_profile() 181 init_hca->eec_base = profile[i].start; in mthca_make_profile() 186 init_hca->srqc_base = profile[i].start; in mthca_make_profile() 191 init_hca->cqc_base = profile[i].start; in mthca_make_profile() 195 init_hca->eqpc_base = profile[i].start; in mthca_make_profile() 198 init_hca->eeec_base = profile[i].start; in mthca_make_profile() 202 init_hca->eqc_base = profile[i].start; in mthca_make_profile() [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/hw/mthca/ |
H A D | mthca_profile.c | 69 u64 start; in mthca_make_profile() member 142 profile[i].start = mem_base + total_size; in mthca_make_profile() 158 (unsigned long long) profile[i].start, in mthca_make_profile() 174 init_hca->qpc_base = profile[i].start; in mthca_make_profile() 179 init_hca->eec_base = profile[i].start; in mthca_make_profile() 184 init_hca->srqc_base = profile[i].start; in mthca_make_profile() 189 init_hca->cqc_base = profile[i].start; in mthca_make_profile() 193 init_hca->eqpc_base = profile[i].start; in mthca_make_profile() 196 init_hca->eeec_base = profile[i].start; in mthca_make_profile() 200 init_hca->eqc_base = profile[i].start; in mthca_make_profile() [all...] |
/third_party/python/Lib/multiprocessing/ |
H A D | heap.py | 132 # - map each block size to a list of `(Arena, start, stop)` blocks 134 # - map `(Arena, start)` tuple to the `(Arena, start, stop)` block 137 # - map `(Arena, stop)` tuple to the `(Arena, start, stop)` block 141 # Map arenas to their `(Arena, start, stop)` blocks in use 200 (arena, start, stop) = block 201 del self._start_to_block[(arena, start)] 207 (arena, start, stop) = block 210 prev_block = self._stop_to_block[(arena, start)] 214 start, [all...] |
/third_party/rust/crates/syn/src/ |
H A D | error.rs | 118 start: Span, 165 start: span, in new() 194 let start = iter.next().map_or_else(Span::call_site, |t| t.span()); in new_spanned() 195 let end = iter.last().map_or(start, |t| t.span()); in new_spanned() 198 span: ThreadBound::new(SpanRange { start, end }), in new_spanned() 211 let SpanRange { start, end } = match self.messages[0].span.get() { in span() 215 start.join(end).unwrap_or(start) in span() 277 let (start, end) = match self.span.get() { in to_compile_error() 278 Some(range) => (range.start, rang in to_compile_error() [all...] |
/third_party/node/benchmark/buffers/ |
H A D | buffer-write-string.js | 15 let start = 0; 21 start = len - string.length; 23 bench.start(); 25 buf.write(string, start, encoding); 29 bench.start(); 31 buf.write(string, start); 39 bench.start(); 45 bench.start(); 55 bench.start(); 61 bench.start(); [all...] |
/third_party/icu/icu4c/source/tools/ctestfw/unicode/ |
H A D | utimer.h | 80 * UTimer start; 109 * utimer_getTime(&start); 121 * return utimer_getElapsedSeconds(&start); 138 * UTimer start,timer1, timer2, timer3, timer4; 142 * utimer_getTime(start); 144 * NFDTimeTaken = utimer_getDeltaSeconds(start,timer1); 146 * timer_getTime(start); 148 * NFCTimeTaken = utimer_getDeltaSeconds(start,timer2); 168 LARGE_INTEGER start; member 178 QueryPerformanceCounter(&timer->start); in uprv_start() 190 struct timeval start; global() member [all...] |
/third_party/python/Include/ |
H A D | sliceobject.h | 17 A slice object containing start, stop, and step data members (the 24 PyObject *start, *stop, *step; /* not NULL */ member 33 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop, 36 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop); 42 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step); 45 Py_ssize_t *start, Py_ssize_t *stop, 50 #define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \ 51 PySlice_Unpack((slice), (start), (stop), (step)) < 0 ? \ 53 ((*(slicelen) = PySlice_AdjustIndices((length), (start), (stop), *(step))), \ 56 Py_ssize_t *start, Py_ssize_ [all...] |
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/unicode/ |
H A D | utimer.h | 80 * UTimer start; 109 * utimer_getTime(&start); 121 * return utimer_getElapsedSeconds(&start); 138 * UTimer start,timer1, timer2, timer3, timer4; 142 * utimer_getTime(start); 144 * NFDTimeTaken = utimer_getDeltaSeconds(start,timer1); 146 * timer_getTime(start); 148 * NFCTimeTaken = utimer_getDeltaSeconds(start,timer2); 168 LARGE_INTEGER start; member 178 QueryPerformanceCounter(&timer->start); in uprv_start() 190 struct timeval start; global() member [all...] |
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/ |
H A D | Utils.java | 33 static void fillBytesWithZeroes(byte[] dest, int start, int end) { in fillBytesWithZeroes() argument 34 int cursor = start; in fillBytesWithZeroes() 52 static void fillIntsWithZeroes(int[] dest, int start, int end) { in fillIntsWithZeroes() argument 53 int cursor = start; in fillIntsWithZeroes() 61 static void copyBytes(byte[] dst, int target, byte[] src, int start, int end) { in copyBytes() argument 62 System.arraycopy(src, start, dst, target, end - start); in copyBytes() 65 static void copyBytesWithin(byte[] bytes, int target, int start, int end) { in copyBytesWithin() argument 66 System.arraycopy(bytes, start, bytes, target, end - start); in copyBytesWithin() [all...] |
/kernel/linux/linux-5.10/drivers/vdpa/mlx5/core/ |
H A D | mr.c | 71 MLX5_SET64(mkc, mkc, len, mr->end - mr->start); in create_direct_mr() 74 get_octo_len(mr->end - mr->start, mr->log_size)); in create_direct_mr() 76 get_octo_len(mr->end - mr->start, mr->log_size)); in create_direct_mr() 95 return max_t(u64, map->start, mr->start); in map_start() 119 return s->start; in indir_start_addr() 133 return e->end - s->start; in indir_len() 159 preve = dmr->start; in fill_indir() 163 if (preve == dmr->start) { in fill_indir() 165 klm->bcount = cpu_to_be32(klm_bcount(dmr->end - dmr->start)); in fill_indir() 187 u64 start; create_indirect_key() local 229 u64 start = 0; map_direct_mr() local 303 add_direct_chain(struct mlx5_vdpa_dev *mvdev, u64 start, u64 size, u8 perm, struct vhost_iotlb *iotlb) add_direct_chain() argument 368 u64 start = 0; _mlx5_vdpa_create_mr() local [all...] |
/kernel/linux/linux-5.10/arch/xtensa/include/asm/ |
H A D | cacheflush.h | 100 void flush_icache_range(unsigned long start, unsigned long end); 119 #define flush_cache_vmap(start,end) flush_cache_all() 120 #define flush_cache_vunmap(start,end) flush_cache_all() 126 unsigned long start, unsigned long end); 136 #define flush_cache_vmap(start,end) do { } while (0) 137 #define flush_cache_vunmap(start,end) do { } while (0) 144 #define flush_cache_range(vma, start, end) do { } while (0) 151 #define local_flush_icache_range(start, end) \ 153 __flush_dcache_range(start, (end) - (start)); \ [all...] |
/kernel/linux/linux-5.10/arch/arm/mach-iop32x/ |
H A D | adma.c | 28 .start = IOP3XX_DMA_PHYS_BASE(0), 33 .start = IRQ_DMA0_EOT, 38 .start = IRQ_DMA0_EOC, 43 .start = IRQ_DMA0_ERR, 51 .start = IOP3XX_DMA_PHYS_BASE(1), 56 .start = IRQ_DMA1_EOT, 61 .start = IRQ_DMA1_EOC, 66 .start = IRQ_DMA1_ERR, 75 .start = IOP3XX_AAU_PHYS_BASE, 80 .start [all...] |
/kernel/linux/linux-5.10/arch/powerpc/include/asm/book3s/64/ |
H A D | tlbflush.h | 51 unsigned long start, unsigned long end) in flush_pmd_tlb_range() 54 return radix__flush_pmd_tlb_range(vma, start, end); in flush_pmd_tlb_range() 55 return hash__flush_tlb_range(vma, start, end); in flush_pmd_tlb_range() 60 unsigned long start, in flush_hugetlb_tlb_range() 64 return radix__flush_hugetlb_tlb_range(vma, start, end); in flush_hugetlb_tlb_range() 65 return hash__flush_tlb_range(vma, start, end); in flush_hugetlb_tlb_range() 69 unsigned long start, unsigned long end) in flush_tlb_range() 72 return radix__flush_tlb_range(vma, start, end); in flush_tlb_range() 73 return hash__flush_tlb_range(vma, start, end); in flush_tlb_range() 76 static inline void flush_tlb_kernel_range(unsigned long start, in flush_tlb_kernel_range() argument 50 flush_pmd_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) flush_pmd_tlb_range() argument 59 flush_hugetlb_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) flush_hugetlb_tlb_range() argument 68 flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) flush_tlb_range() argument [all...] |
/kernel/linux/linux-5.10/arch/sh/mm/ |
H A D | tlbflush_32.c | 39 void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start, in local_flush_tlb_range() argument 50 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT; in local_flush_tlb_range() 60 start &= PAGE_MASK; in local_flush_tlb_range() 67 while (start < end) { in local_flush_tlb_range() 68 local_flush_tlb_one(asid, start); in local_flush_tlb_range() 69 start += PAGE_SIZE; in local_flush_tlb_range() 78 void local_flush_tlb_kernel_range(unsigned long start, unsigned long end) in local_flush_tlb_kernel_range() argument 85 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT; in local_flush_tlb_kernel_range() 93 start &= PAGE_MASK; in local_flush_tlb_kernel_range() 97 while (start < en in local_flush_tlb_kernel_range() [all...] |
/kernel/linux/linux-5.10/arch/x86/pci/ |
H A D | bus_numa.c | 15 if (info->busn.start == bus) in x86_find_pci_root_info() 84 info->busn.start = bus_min; in alloc_pci_root_info() 95 void update_res(struct pci_root_info *info, resource_size_t start, in update_res() argument 101 if (start > end) in update_res() 104 if (start == MAX_RESOURCE) in update_res() 119 common_start = max(res->start, start); in update_res() 124 final_start = min(res->start, start); in update_res() 127 res->start in update_res() [all...] |
/kernel/linux/linux-6.6/arch/sh/mm/ |
H A D | tlbflush_32.c | 39 void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start, in local_flush_tlb_range() argument 50 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT; in local_flush_tlb_range() 60 start &= PAGE_MASK; in local_flush_tlb_range() 67 while (start < end) { in local_flush_tlb_range() 68 local_flush_tlb_one(asid, start); in local_flush_tlb_range() 69 start += PAGE_SIZE; in local_flush_tlb_range() 78 void local_flush_tlb_kernel_range(unsigned long start, unsigned long end) in local_flush_tlb_kernel_range() argument 85 size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT; in local_flush_tlb_kernel_range() 93 start &= PAGE_MASK; in local_flush_tlb_kernel_range() 97 while (start < en in local_flush_tlb_kernel_range() [all...] |
/kernel/linux/linux-5.10/drivers/vhost/ |
H A D | iotlb.c | 16 #define START(map) ((map)->start) 41 * @start: start of the IOVA range 43 * @addr: the address that is mapped to @start 46 * Returns an error last is smaller than start or memory allocation 50 u64 start, u64 last, in vhost_iotlb_add_range() 55 if (last < start) in vhost_iotlb_add_range() 69 map->start = start; in vhost_iotlb_add_range() 70 map->size = last - start in vhost_iotlb_add_range() 49 vhost_iotlb_add_range(struct vhost_iotlb *iotlb, u64 start, u64 last, u64 addr, unsigned int perm) vhost_iotlb_add_range() argument 91 vhost_iotlb_del_range(struct vhost_iotlb *iotlb, u64 start, u64 last) vhost_iotlb_del_range() argument 155 vhost_iotlb_itree_first(struct vhost_iotlb *iotlb, u64 start, u64 last) vhost_iotlb_itree_first() argument 168 vhost_iotlb_itree_next(struct vhost_iotlb_map *map, u64 start, u64 last) vhost_iotlb_itree_next() argument [all...] |
/kernel/linux/linux-5.10/lib/ |
H A D | find_bit.c | 33 unsigned long start, unsigned long invert, unsigned long le) in _find_next_bit() 37 if (unlikely(start >= nbits)) in _find_next_bit() 40 tmp = addr1[start / BITS_PER_LONG]; in _find_next_bit() 42 tmp &= addr2[start / BITS_PER_LONG]; in _find_next_bit() 46 mask = BITMAP_FIRST_WORD_MASK(start); in _find_next_bit() 52 start = round_down(start, BITS_PER_LONG); in _find_next_bit() 55 start += BITS_PER_LONG; in _find_next_bit() 56 if (start >= nbits) in _find_next_bit() 59 tmp = addr1[start / BITS_PER_LON in _find_next_bit() 31 _find_next_bit(const unsigned long *addr1, const unsigned long *addr2, unsigned long nbits, unsigned long start, unsigned long invert, unsigned long le) _find_next_bit() argument [all...] |