Home
last modified time | relevance | path

Searched refs:start (Results 2326 - 2350 of 19274) sorted by relevance

1...<<919293949596979899100>>...771

/third_party/python/Lib/
H A Dtokenize.py19 operators. Additionally, all token lists start with an ENCODING token
46 class TokenInfo(collections.namedtuple('TokenInfo', 'type string start end line')):
49 return ('TokenInfo(type=%s, string=%r, start=%r, end=%r, line=%r)' %
174 def add_whitespace(self, start):
175 row, col = start
177 raise ValueError("start ({},{}) precedes previous end ({},{})"
195 tok_type, token, start, end, line = t
212 if start[1] >= len(indent):
216 self.add_whitespace(start)
531 start, en
[all...]
/foundation/arkui/ace_engine_lite/frameworks/tools/qt/simulator/jsfwk/targets/simulator/mock/
H A Dmock_services.cpp23 amsThread_.start(); in StartAll()
26 vsyncThread_.start(); in StartAll()
29 timerThread_.start(); in StartAll()
/kernel/linux/linux-5.10/arch/ia64/include/asm/
H A Dpatch.h22 extern void ia64_patch_mckinley_e9 (unsigned long start, unsigned long end);
23 extern void ia64_patch_vtop (unsigned long start, unsigned long end);
25 extern void ia64_patch_rse (unsigned long start, unsigned long end);
/kernel/linux/linux-5.10/arch/mips/cobalt/
H A Dtime.c17 u32 start, end; in plat_time_init() local
31 start = read_c0_count(); in plat_time_init()
39 mips_hpt_frequency = (end - start) * 10; in plat_time_init()
/kernel/linux/linux-5.10/arch/x86/include/asm/
H A Diommu.h18 u64 start = rmrr->base_address; in arch_rmrr_sanity_check() local
22 entry_type = e820__get_entry_type(start, end); in arch_rmrr_sanity_check()
27 start, end - 1); in arch_rmrr_sanity_check()
/kernel/linux/linux-5.10/arch/sparc/include/asm/
H A Dtlbflush_32.h11 #define flush_tlb_range(vma, start, end) \
12 sparc32_cachetlb_ops->tlb_range(vma, start, end)
19 static inline void flush_tlb_kernel_range(unsigned long start, in flush_tlb_kernel_range() argument
/kernel/linux/linux-6.6/arch/mips/cobalt/
H A Dtime.c17 u32 start, end; in plat_time_init() local
31 start = read_c0_count(); in plat_time_init()
39 mips_hpt_frequency = (end - start) * 10; in plat_time_init()
/kernel/linux/linux-6.6/arch/ia64/include/asm/
H A Dpatch.h22 extern void ia64_patch_mckinley_e9 (unsigned long start, unsigned long end);
23 extern void ia64_patch_vtop (unsigned long start, unsigned long end);
25 extern void ia64_patch_rse (unsigned long start, unsigned long end);
/kernel/linux/linux-6.6/arch/sparc/include/asm/
H A Dtlbflush_32.h11 #define flush_tlb_range(vma, start, end) \
12 sparc32_cachetlb_ops->tlb_range(vma, start, end)
19 static inline void flush_tlb_kernel_range(unsigned long start, in flush_tlb_kernel_range() argument
/kernel/linux/linux-5.10/mm/
H A Drodata_test.c18 unsigned long start, end; in rodata_test() local
24 pr_err("test 1 fails (start data)\n"); in rodata_test()
42 start = (unsigned long)__start_rodata; in rodata_test()
44 if (start & (PAGE_SIZE - 1)) { in rodata_test()
45 pr_err("start of .rodata is not page size aligned\n"); in rodata_test()
/kernel/linux/linux-5.10/include/linux/
H A Dinterval_tree.h9 unsigned long start; /* Start of interval */ member
24 unsigned long start, unsigned long last);
28 unsigned long start, unsigned long last);
/kernel/linux/linux-6.6/arch/x86/include/asm/
H A Dsparsemem.h36 extern int phys_to_target_node(phys_addr_t start);
38 extern int memory_add_physaddr_to_nid(u64 start);
40 extern int numa_fill_memblks(u64 start, u64 end);
H A Dunaccepted_memory.h8 static inline void arch_accept_memory(phys_addr_t start, phys_addr_t end) in arch_accept_memory() argument
12 if (!tdx_accept_memory(start, end)) in arch_accept_memory()
15 snp_accept_memory(start, end); in arch_accept_memory()
/third_party/curl/lib/
H A Dstrtok.c45 char *start = ptr; in Curl_strtok_r() local
47 /* set the end pointer to the first byte after the start */ in Curl_strtok_r()
48 *end = start + 1; in Curl_strtok_r()
61 return start; /* return the position where the string starts */ in Curl_strtok_r()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DReplaceable.java26 * <p><code>Replaceable</code> specifies ranges using a start
28 * includes the characters at offset start..limit-1. That is, the
29 * start offset is inclusive, and the limit offset is exclusive.
42 * <li>If there is no previous character (i.e. start == 0), use the
99 * &lt;= start &lt;= limit</code>.
101 * <code>start &lt;= limit &lt;= length()</code>.
103 * @param dstStart the start offset in the destination array.
111 * <p>Subclasses must ensure that if the text between start and
118 * @param start the beginning index, inclusive; <code>0 &lt;= start
126 replace(int start, int limit, String text) replace() argument
149 replace(int start, int limit, char[] chars, int charsStart, int charsLen) replace() argument
175 copy(int start, int limit, int dest) copy() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DReplaceable.java27 * <p><code>Replaceable</code> specifies ranges using a start
29 * includes the characters at offset start..limit-1. That is, the
30 * start offset is inclusive, and the limit offset is exclusive.
43 * <li>If there is no previous character (i.e. start == 0), use the
96 * &lt;= start &lt;= limit</code>.
98 * <code>start &lt;= limit &lt;= length()</code>.
100 * @param dstStart the start offset in the destination array.
107 * <p>Subclasses must ensure that if the text between start and
114 * @param start the beginning index, inclusive; <code>0 &lt;= start
121 replace(int start, int limit, String text) replace() argument
143 replace(int start, int limit, char[] chars, int charsStart, int charsLen) replace() argument
168 copy(int start, int limit, int dest) copy() argument
[all...]
/third_party/node/deps/npm/node_modules/diff/lib/util/
H A Ddistance-iterator.js1 /*istanbul ignore start*/
11 // by distance from a given start position. I.e. for [0, 4], with
12 // start of 2, this will iterate 2, 3, 1, 4, 0.
14 /*istanbul ignore start*/
17 (start, minLine, maxLine) {
32 if (start + localOffset <= maxLine) {
46 if (minLine <= start - localOffset) {
/third_party/ltp/testcases/kernel/mce-test/kvm/host/
H A Dguest_init9 start() { function
25 start)
26 start
32 echo $"Usage: $0 {start|stop}"
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_index_modify.h37 unsigned start,
45 unsigned start, unsigned count,
52 unsigned start, unsigned count,
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
H A Dtest_stacksave.h19 uint32_t PREFIX##test_basic_vla(uint32_t size, uint32_t start, \
21 uint32_t PREFIX##test_vla_in_loop(uint32_t size, uint32_t start, \
23 uint32_t PREFIX##test_two_vlas_in_loops(uint32_t size, uint32_t start, \
/third_party/skia/docs/examples/
H A DPath_rArcTo.cpp10 for (auto start : starts) { in REG_FIDDLE()
11 path.moveTo(start.fX, start.fY); in REG_FIDDLE()
/kernel/linux/linux-5.10/fs/ext4/
H A Dmballoc.c64 * pa_lstart -> the logical start block for this prealloc space
65 * pa_pstart -> the physical start block for this prealloc space
69 * The inode preallocation space is used looking at the _logical_ start
426 static inline int mb_find_next_zero_bit(void *addr, int max, int start) in mb_find_next_zero_bit() argument
431 start += fix; in mb_find_next_zero_bit()
433 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix; in mb_find_next_zero_bit()
439 static inline int mb_find_next_bit(void *addr, int max, int start) in mb_find_next_bit() argument
444 start += fix; in mb_find_next_bit()
446 ret = ext4_find_next_bit(addr, tmpmax, start) - fix; in mb_find_next_bit()
1589 /* calc difference from given start */ in mb_find_extent()
1631 int start = ex->fe_start; mb_mark_used() local
1925 ext4_fsblk_t start; ext4_mb_find_by_goal() local
3543 ext4_lblk_t start; ext4_mb_normalize_request() local
3810 ext4_fsblk_t start; ext4_mb_use_inode_pa() local
4015 ext4_grpblk_t start; ext4_mb_generate_from_pa() local
4644 ext4_grpblk_t start; ext4_mb_show_pa() local
5938 ext4_try_to_trim_range(struct super_block *sb, struct ext4_buddy *e4b, ext4_grpblk_t start, ext4_grpblk_t max, ext4_grpblk_t minblocks) ext4_try_to_trim_range() argument
6012 ext4_trim_all_free(struct super_block *sb, ext4_group_t group, ext4_grpblk_t start, ext4_grpblk_t max, ext4_grpblk_t minblocks) ext4_trim_all_free() argument
6063 uint64_t start, end, minlen, trimmed = 0; ext4_trim_fs() local
6149 ext4_mballoc_query_range( struct super_block *sb, ext4_group_t group, ext4_grpblk_t start, ext4_grpblk_t end, ext4_mballoc_query_range_fn formatter, void *priv) ext4_mballoc_query_range() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/
H A Dcoredump.c803 .start = 0x400000,
815 .start = 0x0,
830 .start = 0x27000,
846 .start = 0x400000,
856 .start = 0xa0000,
866 .start = 0x800,
879 .start = 0x400000,
889 .start = 0xa0000,
899 .start = 0x00980000,
909 .start
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath10k/
H A Dcoredump.c803 .start = 0x400000,
815 .start = 0x0,
830 .start = 0x27000,
846 .start = 0x400000,
856 .start = 0xa0000,
866 .start = 0x800,
879 .start = 0x400000,
889 .start = 0xa0000,
899 .start = 0x00980000,
909 .start
[all...]
/foundation/CastEngine/castengine_cast_plus_stream/src/stream/src/local/src/
H A Dlocal_data_source.cpp88 int64_t start; in SolveReqData() local
90 int isNeedReq = cache->IsNeedReqData(start, end); in SolveReqData()
95 cache = GetBestCache(start); in SolveReqData()
99 if (cache->IsNeedReqData(start, end) != Cache::NEED_REQ_IN_CURR_CACHE) { in SolveReqData()
103 CLOGD("request data, start:%{public}" PRId64 " end:%{public}" PRId64 " pos:%{public}" PRId64, start, end, pos); in SolveReqData()
104 channelClient_->RequestByteData(start, end, fileId_); in SolveReqData()
220 int Cache::IsNeedReqData(int64_t &start, int64_t &end) in IsNeedReqData() argument
230 start = endPos_; in IsNeedReqData()
238 start in IsNeedReqData()
[all...]

Completed in 16 milliseconds

1...<<919293949596979899100>>...771