/third_party/skia/demos.skia.org/demos/textedit/ |
H A D | textapi_utils.js | 164 function string_del(str, start, end) { 165 return str.slice(0, start) + str.slice(end, str.length); 247 _index: { start: 0, end: 0 }, 273 const b = this._index.end; 284 this._index.start = this._index.end = i; 290 this._index.end = b; 295 if (this._index.start == this._index.end) { 300 index = dx < 0 ? this._index.start : this._index.end; 305 let index = (dy < 0) ? this._index.start : this._index.end; 355 r.textRange = { start: r.offsets[0], end [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | SmallVector.h | 119 iterator end() { return (iterator)this->EndX; } in end() function in llvm::SmallVectorTemplateCommon 121 const_iterator end() const { return (const_iterator)this->EndX; } in end() function in llvm::SmallVectorTemplateCommon 129 reverse_iterator rbegin() { return reverse_iterator(end()); } in rbegin() 130 const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); } in rbegin() 135 size_type size() const { return end()-begin(); } in size() 168 return end()[-1]; 172 return end()[-1]; 214 ::new ((void*) this->end()) T(Elt); 215 this->setEnd(this->end()+1); 221 ::new ((void*) this->end()) in push_back() [all...] |
/third_party/cJSON/tests/ |
H A D | readme_examples.c | 63 goto end; in create_monitor() 69 goto end; in create_monitor() 78 goto end; in create_monitor() 87 goto end; in create_monitor() 94 goto end; in create_monitor() 101 goto end; in create_monitor() 112 end: in create_monitor() 132 goto end; in create_monitor_with_helpers() 138 goto end; in create_monitor_with_helpers() 147 goto end; in create_monitor_with_helpers() [all...] |
/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | animatable_data.cpp | 22 const Dimension& start, const Dimension& end, float process) in Blend() 29 return start * scaleB + end * scaleA; in Blend() 34 const Color& start, const Color& end, float process) in Blend() 40 uint8_t alpha = static_cast<uint8_t>(startA + (end.GetAlpha() - startA) * process); in Blend() 41 uint8_t red = static_cast<uint8_t>(startR + (end.GetRed() - startR) * process); in Blend() 42 uint8_t green = static_cast<uint8_t>(startG + (end.GetGreen() - startG) * process); in Blend() 43 uint8_t blue = static_cast<uint8_t>(startB + (end.GetBlue() - startB) * process); in Blend() 48 BorderStyle AnimatableData<BorderStyle>::Blend(const BorderStyle& start, const BorderStyle& end, float process) in Blend() argument 51 return end; in Blend() 57 Shadow AnimatableData<Shadow>::Blend(const Shadow& start, const Shadow& end, floa argument 21 Blend( const Dimension& start, const Dimension& end, float process) Blend() argument 33 Blend( const Color& start, const Color& end, float process) Blend() argument 63 Blend( const BackgroundImageSize& start, const BackgroundImageSize& end, float process) Blend() argument [all...] |
/kernel/linux/linux-6.6/arch/x86/kernel/ |
H A D | resource.c | 8 resource_size_t end) in resource_clip() 12 if (res->end < start || res->start > end) in resource_clip() 18 if (res->end > end) in resource_clip() 19 high = res->end - end; in resource_clip() 23 res->end = start - 1; in resource_clip() 25 res->start = end + 1; in resource_clip() 44 if (orig.start != avail->start || orig.end ! in remove_e820_regions() 7 resource_clip(struct resource *res, resource_size_t start, resource_size_t end) resource_clip() argument [all...] |
/third_party/node/test/parallel/ |
H A D | test-fs-read-stream-throw-type-error.js | 37 // Case 0: Should not throw if either start or end is undefined 38 [{}, { start: 0 }, { end: Infinity }].forEach((opts) => 42 // Case 1: Should throw TypeError if either start or end is not of type 'number' 45 { end: 'invalid' }, 46 { start: 'invalid', end: 'invalid' }, 49 // Case 2: Should throw RangeError if either start or end is NaN 50 [{ start: NaN }, { end: NaN }, { start: NaN, end: NaN }].forEach((opts) => 54 // Case 3: Should throw RangeError if either start or end is negative 55 [{ start: -1 }, { end [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/stdlib/ |
H A D | wcstold.c | 38 wchar_t *end = NULL; in wcstold_0100() local 41 long double val = wcstold(str0, &end); in wcstold_0100() 43 if (wcscmp(end, str1)) { in wcstold_0100() 50 * @tc.desc : Convert wide string to long double type with no end string characters 56 wchar_t *end = NULL; in wcstold_0200() local 58 long double val = wcstold(str, &end); in wcstold_0200() 70 wchar_t *end = NULL; in wcstold_0300() local 72 long double val = wcstold(str, &end); in wcstold_0300() 84 wchar_t *end = NULL; in wcstold_0400() local 86 long double val = wcstold(str, &end); in wcstold_0400() 100 wchar_t *end = NULL; wcstold_0500() local 115 wchar_t *end = NULL; wcstold_0600() local [all...] |
/base/startup/init/interfaces/innerkits/fs_manager/libfs_hvb/ |
H A D | fs_hvb.c | 215 struct hvb_cert_data *end = p + vd->num_loaded_certs; in FsHvbGetCert() local 217 for (; p < end; p++) { in FsHvbGetCert() 227 if (p == end) { in FsHvbGetCert() 241 static int FsHvbVerityTargetAppendString(char **p, char *end, char *str, size_t len) in FsHvbVerityTargetAppendString() argument 246 if (*p + len >= end || *p + len < *p) { in FsHvbVerityTargetAppendString() 251 err = memcpy_s(*p, end - *p, str, len); in FsHvbVerityTargetAppendString() 259 if (*p + 1 >= end || *p + 1 < *p) { in FsHvbVerityTargetAppendString() 272 static int FsHvbVerityTargetAppendOctets(char **p, char *end, char *octs, size_t octs_len) in FsHvbVerityTargetAppendOctets() argument 290 rc = FsHvbVerityTargetAppendString(p, end, str, str_len); in FsHvbVerityTargetAppendOctets() 299 static int FsHvbVerityTargetAppendNum(char **p, char *end, uint64_ argument 364 FsHvbVerityTargetAddFecArgs(struct hvb_cert *cert, char *devPath, char **str, char *end) FsHvbVerityTargetAddFecArgs() argument 407 char *end = NULL; FsHvbConstructVerityTarget() local [all...] |
/foundation/multimedia/av_session/frameworks/native/ohavsession/src/ |
H A D | OHAVSessionCallbackImpl.cpp | 26 for (auto it = playCallbacks_.begin(); it != playCallbacks_.end(); ++it) { in OnPlay() 33 for (auto it = pauseCallbacks_.begin(); it != pauseCallbacks_.end(); ++it) { in OnPause() 40 for (auto it = stopCallbacks_.begin(); it != stopCallbacks_.end(); ++it) { in OnStop() 47 for (auto it = playNextCallbacks_.begin(); it != playNextCallbacks_.end(); ++it) { in OnPlayNext() 54 for (auto it = playPreviousCallbacks_.begin(); it != playPreviousCallbacks_.end(); ++it) { in OnPlayPrevious() 61 for (auto it = forwardCallbacks_.begin(); it != forwardCallbacks_.end(); ++it) { in OnFastForward() 68 for (auto it = rewindCallbacks_.begin(); it != rewindCallbacks_.end(); ++it) { in OnRewind() 75 for (auto it = seekCallbacks_.begin(); it != seekCallbacks_.end(); ++it) { in OnSeek() 82 for (auto it = setLoopModeCallbacks_.begin(); it != setLoopModeCallbacks_.end(); ++it) { in OnSetLoopMode() 89 for (auto it = toggleFavoriteCallbacks_.begin(); it != toggleFavoriteCallbacks_.end(); in OnToggleFavorite() [all...] |
/kernel/linux/linux-5.10/mm/ |
H A D | pagewalk.c | 24 unsigned long end, struct mm_walk *walk) in walk_pte_range_inner() 33 if (addr >= end - PAGE_SIZE) in walk_pte_range_inner() 41 static int walk_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end, in walk_pte_range() argument 50 err = walk_pte_range_inner(pte, addr, end, walk); in walk_pte_range() 54 err = walk_pte_range_inner(pte, addr, end, walk); in walk_pte_range() 61 static int walk_pmd_range(pud_t *pud, unsigned long addr, unsigned long end, in walk_pmd_range() argument 73 next = pmd_addr_end(addr, end); in walk_pmd_range() 114 } while (pmd++, addr = next, addr != end); in walk_pmd_range() 119 static int walk_pud_range(p4d_t *p4d, unsigned long addr, unsigned long end, in walk_pud_range() argument 131 next = pud_addr_end(addr, end); in walk_pud_range() 23 walk_pte_range_inner(pte_t *pte, unsigned long addr, unsigned long end, struct mm_walk *walk) walk_pte_range_inner() argument 168 walk_p4d_range(pgd_t *pgd, unsigned long addr, unsigned long end, struct mm_walk *walk) walk_p4d_range() argument 201 walk_pgd_range(unsigned long addr, unsigned long end, struct mm_walk *walk) walk_pgd_range() argument 238 hugetlb_entry_end(struct hstate *h, unsigned long addr, unsigned long end) hugetlb_entry_end() argument 245 walk_hugetlb_range(unsigned long addr, unsigned long end, struct mm_walk *walk) walk_hugetlb_range() argument 274 walk_hugetlb_range(unsigned long addr, unsigned long end, struct mm_walk *walk) walk_hugetlb_range() argument 288 walk_page_test(unsigned long start, unsigned long end, struct mm_walk *walk) walk_page_test() argument 314 __walk_page_range(unsigned long start, unsigned long end, struct mm_walk *walk) __walk_page_range() argument 379 walk_page_range(struct mm_struct *mm, unsigned long start, unsigned long end, const struct mm_walk_ops *ops, void *private) walk_page_range() argument 443 walk_page_range_novma(struct mm_struct *mm, unsigned long start, unsigned long end, const struct mm_walk_ops *ops, pgd_t *pgd, void *private) walk_page_range_novma() argument [all...] |
/kernel/linux/linux-5.10/net/ceph/ |
H A D | cls_lock_client.c | 34 void *p, *end; in ceph_cls_lock() local 55 end = p + lock_op_buf_size; in ceph_cls_lock() 60 ceph_encode_string(&p, end, lock_name, name_len); in ceph_cls_lock() 62 ceph_encode_string(&p, end, cookie, cookie_len); in ceph_cls_lock() 63 ceph_encode_string(&p, end, tag, tag_len); in ceph_cls_lock() 64 ceph_encode_string(&p, end, desc, desc_len); in ceph_cls_lock() 97 void *p, *end; in ceph_cls_unlock() local 112 end = p + unlock_op_buf_size; in ceph_cls_unlock() 117 ceph_encode_string(&p, end, lock_name, name_len); in ceph_cls_unlock() 118 ceph_encode_string(&p, end, cooki in ceph_cls_unlock() 148 void *p, *end; ceph_cls_break_lock() local 195 void *p, *end; ceph_cls_set_cookie() local 245 decode_locker(void **p, void *end, struct ceph_locker *locker) decode_locker() argument 282 decode_lockers(void **p, void *end, u8 *type, char **tag, struct ceph_locker **lockers, u32 *num_lockers) decode_lockers() argument 338 void *p, *end; ceph_cls_lock_info() local 391 void *p, *end; ceph_cls_assert_locked() local [all...] |
/kernel/linux/linux-6.6/net/ceph/ |
H A D | cls_lock_client.c | 36 void *p, *end; in ceph_cls_lock() local 57 end = p + lock_op_buf_size; in ceph_cls_lock() 62 ceph_encode_string(&p, end, lock_name, name_len); in ceph_cls_lock() 64 ceph_encode_string(&p, end, cookie, cookie_len); in ceph_cls_lock() 65 ceph_encode_string(&p, end, tag, tag_len); in ceph_cls_lock() 66 ceph_encode_string(&p, end, desc, desc_len); in ceph_cls_lock() 101 void *p, *end; in ceph_cls_unlock() local 116 end = p + unlock_op_buf_size; in ceph_cls_unlock() 121 ceph_encode_string(&p, end, lock_name, name_len); in ceph_cls_unlock() 122 ceph_encode_string(&p, end, cooki in ceph_cls_unlock() 154 void *p, *end; ceph_cls_break_lock() local 201 void *p, *end; ceph_cls_set_cookie() local 251 decode_locker(void **p, void *end, struct ceph_locker *locker) decode_locker() argument 288 decode_lockers(void **p, void *end, u8 *type, char **tag, struct ceph_locker **lockers, u32 *num_lockers) decode_lockers() argument 344 void *p, *end; ceph_cls_lock_info() local 397 void *p, *end; ceph_cls_assert_locked() local [all...] |
H A D | decode.c | 10 ceph_decode_entity_addr_versioned(void **p, void *end, in ceph_decode_entity_addr_versioned() argument 18 ret = ceph_start_decoding(p, end, 1, "entity_addr_t", &struct_v, in ceph_decode_entity_addr_versioned() 26 ceph_decode_copy_safe(p, end, &addr->type, sizeof(addr->type), bad); in ceph_decode_entity_addr_versioned() 28 ceph_decode_copy_safe(p, end, &addr->nonce, sizeof(addr->nonce), bad); in ceph_decode_entity_addr_versioned() 30 ceph_decode_32_safe(p, end, addr_len, bad); in ceph_decode_entity_addr_versioned() 36 ceph_decode_copy_safe(p, end, &addr->in_addr, addr_len, bad); in ceph_decode_entity_addr_versioned() 50 ceph_decode_entity_addr_legacy(void **p, void *end, in ceph_decode_entity_addr_legacy() argument 56 ceph_decode_skip_n(p, end, 3, bad); in ceph_decode_entity_addr_legacy() 63 ceph_decode_copy_safe(p, end, &addr->nonce, sizeof(addr->nonce), bad); in ceph_decode_entity_addr_legacy() 65 ceph_decode_copy_safe(p, end, in ceph_decode_entity_addr_legacy() 75 ceph_decode_entity_addr(void **p, void *end, struct ceph_entity_addr *addr) ceph_decode_entity_addr() argument 95 ceph_decode_entity_addrvec(void **p, void *end, bool msgr2, struct ceph_entity_addr *addr) ceph_decode_entity_addrvec() argument [all...] |
/third_party/json/tests/src/ |
H A D | unit-capacity.cpp | 32 CHECK(j.empty() == (j.begin() == j.end())); 33 CHECK(j_const.empty() == (j_const.begin() == j_const.end())); 50 CHECK(j.empty() == (j.begin() == j.end())); 51 CHECK(j_const.empty() == (j_const.begin() == j_const.end())); 70 CHECK(j.empty() == (j.begin() == j.end())); 71 CHECK(j_const.empty() == (j_const.begin() == j_const.end())); 88 CHECK(j.empty() == (j.begin() == j.end())); 89 CHECK(j_const.empty() == (j_const.begin() == j_const.end())); 109 CHECK(j.empty() == (j.begin() == j.end())); 110 CHECK(j_const.empty() == (j_const.begin() == j_const.end())); [all...] |
/base/powermgr/battery_manager/charger/src/ |
H A D | animation_config.cpp | 64 if (component.find("id") != component.end()) { in ParseAnimationLabel() 67 if (component.find("text") != component.end()) { in ParseAnimationLabel() 70 if (component.find("x") != component.end()) { in ParseAnimationLabel() 73 if (component.find("y") != component.end()) { in ParseAnimationLabel() 76 if (component.find("w") != component.end()) { in ParseAnimationLabel() 79 if (component.find("h") != component.end()) { in ParseAnimationLabel() 82 if (component.find("fontSize") != component.end()) { in ParseAnimationLabel() 85 if (component.find("fontColor") != component.end()) { in ParseAnimationLabel() 88 if (component.find("bgColor") != component.end()) { in ParseAnimationLabel() 91 if (component.find("align") != component.end()) { in ParseAnimationLabel() [all...] |
/third_party/curl/lib/ |
H A D | strtok.c | 33 Curl_strtok_r(char *ptr, const char *sep, char **end) in Curl_strtok_r() argument 37 ptr = *end; in Curl_strtok_r() 47 /* set the end pointer to the first byte after the start */ in Curl_strtok_r() 48 *end = start + 1; in Curl_strtok_r() 52 while(**end && !strchr(sep, **end)) in Curl_strtok_r() 53 ++*end; in Curl_strtok_r() 55 if(**end) { in Curl_strtok_r() 56 /* the end is not a null byte */ in Curl_strtok_r() 57 **end in Curl_strtok_r() [all...] |
/kernel/linux/linux-5.10/arch/c6x/platforms/ |
H A D | cache.c | 130 unsigned int *end, in cache_block_operation() 136 (L2_CACHE_ALIGN_CNT((unsigned int) end) in cache_block_operation() 175 unsigned int *end, in cache_block_operation_nowait() 181 (L2_CACHE_ALIGN_CNT((unsigned int) end) in cache_block_operation_nowait() 322 void enable_caching(unsigned long start, unsigned long end) in enable_caching() argument 325 unsigned int mar_e = IMCR_MAR_BASE + ((end >> 24) << 2); in enable_caching() 331 void disable_caching(unsigned long start, unsigned long end) in disable_caching() argument 334 unsigned int mar_e = IMCR_MAR_BASE + ((end >> 24) << 2); in disable_caching() 344 void L1P_cache_block_invalidate(unsigned int start, unsigned int end) in L1P_cache_block_invalidate() argument 347 (unsigned int *) end, in L1P_cache_block_invalidate() 129 cache_block_operation(unsigned int *start, unsigned int *end, unsigned int bar_reg, unsigned int wc_reg) cache_block_operation() argument 174 cache_block_operation_nowait(unsigned int *start, unsigned int *end, unsigned int bar_reg, unsigned int wc_reg) cache_block_operation_nowait() argument 352 L1D_cache_block_invalidate(unsigned int start, unsigned int end) L1D_cache_block_invalidate() argument 359 L1D_cache_block_writeback_invalidate(unsigned int start, unsigned int end) L1D_cache_block_writeback_invalidate() argument 366 L1D_cache_block_writeback(unsigned int start, unsigned int end) L1D_cache_block_writeback() argument 377 L2_cache_block_invalidate(unsigned int start, unsigned int end) L2_cache_block_invalidate() argument 384 L2_cache_block_writeback(unsigned int start, unsigned int end) L2_cache_block_writeback() argument 391 L2_cache_block_writeback_invalidate(unsigned int start, unsigned int end) L2_cache_block_writeback_invalidate() argument 398 L2_cache_block_invalidate_nowait(unsigned int start, unsigned int end) L2_cache_block_invalidate_nowait() argument 405 L2_cache_block_writeback_nowait(unsigned int start, unsigned int end) L2_cache_block_writeback_nowait() argument 412 L2_cache_block_writeback_invalidate_nowait(unsigned int start, unsigned int end) L2_cache_block_writeback_invalidate_nowait() argument [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | mmu_notifier.h | 32 * page table (from the end callback). 35 * access flags). User should soft dirty the page in the end callback to make 97 * Start-end is necessary in case the secondary MMU is mapping the page 103 unsigned long end); 113 unsigned long end); 146 * invalidate_range_begin/end for the whole duration of the 147 * invalidate_range_begin/end critical section. 192 * invalidate_range_start()/end() callbacks should not be implemented as 210 unsigned long end); 274 unsigned long end; member 416 mmu_notifier_clear_flush_young(struct mm_struct *mm, unsigned long start, unsigned long end) mmu_notifier_clear_flush_young() argument 425 mmu_notifier_clear_young(struct mm_struct *mm, unsigned long start, unsigned long end) mmu_notifier_clear_young() argument 486 mmu_notifier_arch_invalidate_secondary_tlbs(struct mm_struct *mm, unsigned long start, unsigned long end) mmu_notifier_arch_invalidate_secondary_tlbs() argument 505 mmu_notifier_range_init(struct mmu_notifier_range *range, enum mmu_notifier_event event, unsigned flags, struct mm_struct *mm, unsigned long start, unsigned long end) mmu_notifier_range_init() argument 519 mmu_notifier_range_init_owner( struct mmu_notifier_range *range, enum mmu_notifier_event event, unsigned int flags, struct mm_struct *mm, unsigned long start, unsigned long end, void *owner) mmu_notifier_range_init_owner() argument 601 unsigned long end; global() member 604 _mmu_notifier_range_init(struct mmu_notifier_range *range, unsigned long start, unsigned long end) _mmu_notifier_range_init() argument 633 mmu_notifier_clear_flush_young(struct mm_struct *mm, unsigned long start, unsigned long end) mmu_notifier_clear_flush_young() argument 667 mmu_notifier_arch_invalidate_secondary_tlbs(struct mm_struct *mm, unsigned long start, unsigned long end) mmu_notifier_arch_invalidate_secondary_tlbs() argument [all...] |
/kernel/linux/linux-5.10/arch/sh/mm/ |
H A D | cache-sh2a.c | 53 unsigned long begin, end; in sh2a__flush_wback_region() local 58 end = ((unsigned long)start + size + L1_CACHE_BYTES-1) in sh2a__flush_wback_region() 66 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) { in sh2a__flush_wback_region() 68 end = begin + (nr_ways * current_cpu_data.dcache.way_size); in sh2a__flush_wback_region() 70 for (v = begin; v < end; v += L1_CACHE_BYTES) { in sh2a__flush_wback_region() 78 for (v = begin; v < end; v += L1_CACHE_BYTES) in sh2a__flush_wback_region() 94 unsigned long begin, end; in sh2a__flush_purge_region() local 98 end = ((unsigned long)start + size + L1_CACHE_BYTES-1) in sh2a__flush_purge_region() 104 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2a__flush_purge_region() 124 unsigned long begin, end; in sh2a__flush_invalidate_region() local 153 unsigned long start, end; sh2a_flush_icache_range() local [all...] |
/kernel/linux/linux-5.10/arch/m68k/include/asm/ |
H A D | cacheflush_mm.h | 31 static inline void clear_cf_icache(unsigned long start, unsigned long end) in clear_cf_icache() argument 40 static inline void clear_cf_dcache(unsigned long start, unsigned long end) in clear_cf_dcache() argument 49 static inline void clear_cf_bcache(unsigned long start, unsigned long end) in clear_cf_bcache() argument 60 * The start and end addresses are cache line numbers not memory addresses. 62 static inline void flush_cf_icache(unsigned long start, unsigned long end) in flush_cf_icache() argument 66 for (set = start; set <= end; set += (0x10 - 3)) { in flush_cf_icache() 80 static inline void flush_cf_dcache(unsigned long start, unsigned long end) in flush_cf_dcache() argument 84 for (set = start; set <= end; set += (0x10 - 3)) { in flush_cf_dcache() 98 static inline void flush_cf_bcache(unsigned long start, unsigned long end) in flush_cf_bcache() argument 102 for (set = start; set <= end; se in flush_cf_bcache() 206 flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) flush_cache_range() argument 226 unsigned long addr, start, end; __flush_page_to_ram() local [all...] |
/kernel/linux/linux-6.6/arch/sh/mm/ |
H A D | cache-sh2a.c | 53 unsigned long begin, end; in sh2a__flush_wback_region() local 58 end = ((unsigned long)start + size + L1_CACHE_BYTES-1) in sh2a__flush_wback_region() 66 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) { in sh2a__flush_wback_region() 68 end = begin + (nr_ways * current_cpu_data.dcache.way_size); in sh2a__flush_wback_region() 70 for (v = begin; v < end; v += L1_CACHE_BYTES) { in sh2a__flush_wback_region() 78 for (v = begin; v < end; v += L1_CACHE_BYTES) in sh2a__flush_wback_region() 94 unsigned long begin, end; in sh2a__flush_purge_region() local 98 end = ((unsigned long)start + size + L1_CACHE_BYTES-1) in sh2a__flush_purge_region() 104 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2a__flush_purge_region() 124 unsigned long begin, end; in sh2a__flush_invalidate_region() local 153 unsigned long start, end; sh2a_flush_icache_range() local [all...] |
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | buffer.c | 70 int end; in speex_buffer_write() local 78 end = st->write_ptr + len; in speex_buffer_write() 79 end1 = end; in speex_buffer_write() 83 if (end > st->size) in speex_buffer_write() 85 end -= st->size; in speex_buffer_write() 86 SPEEX_COPY(st->data, data+end1 - st->write_ptr, end); in speex_buffer_write() 104 int end; in speex_buffer_writezeros() local 110 end = st->write_ptr + len; in speex_buffer_writezeros() 111 end1 = end; in speex_buffer_writezeros() 115 if (end > s in speex_buffer_writezeros() 134 int end, end1; speex_buffer_read() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/ |
H A D | intel_uncore.c | 915 else if (offset > entry->end) in fw_range_cmp() 992 { .start = 0x2030, .end = 0x2030 }, 993 { .start = 0xA008, .end = 0xA00C }, 994 { .start = 0x12030, .end = 0x12030 }, 995 { .start = 0x1a030, .end = 0x1a030 }, 996 { .start = 0x22030, .end = 0x22030 }, 1000 { .start = 0x2030, .end = 0x2030 }, 1001 { .start = 0x2550, .end = 0x2550 }, 1002 { .start = 0xA008, .end = 0xA00C }, 1003 { .start = 0x22030, .end [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/ |
H A D | Mf2Parser.java | 17 private int begin, end, offending, expected, state; field in Mf2Parser.ParseException 22 end = e; in ParseException() 41 public int getEnd() {return end;} in getEnd() 52 public void endNonterminal(String name, int end); in endNonterminal() argument 53 public void terminal(String name, int begin, int end); in terminal() argument 54 public void whitespace(int begin, int end); in whitespace() argument 80 public void endNonterminal(String name, int end) in endNonterminal() argument 82 stack[top].end = end; in endNonterminal() 87 public void terminal(String name, int begin, int end) in terminal() argument 93 whitespace(int begin, int end) whitespace() argument 115 public int end; global() field in Mf2Parser.Symbol 117 Symbol(String name, int begin, int end) Symbol() argument 129 Terminal(String name, int begin, int end) Terminal() argument 145 Nonterminal(String name, int begin, int end, Symbol[] children) Nonterminal() argument 565 private int end = 0; global() field in Mf2Parser [all...] |
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
H A D | json.cc | 350 out_->insert(out_->end(), str, str + strlen(str)); in Emit() 353 out_->insert(out_->end(), str.begin(), str.end()); in Emit() 408 const Char* end = start + length; in Parse() local 410 ParseValue(start, end, &tokenEnd, 0); in Parse() 413 if (tokenEnd != end) { in Parse() 437 const Char* end, in ParseConstToken() 441 while (start < end && *token != '\0' && *start++ == *token++) { in ParseConstToken() 450 const Char* end, in ReadInt() 453 if (start == end) in ReadInt() 436 ParseConstToken(const Char* start, const Char* end, const Char** token_end, const char* token) ParseConstToken() argument 449 ReadInt(const Char* start, const Char* end, const Char** token_end, bool allow_leading_zeros) ReadInt() argument 469 ParseNumberToken(const Char* start, const Char* end, const Char** token_end) ParseNumberToken() argument 519 ReadHexDigits(const Char* start, const Char* end, const Char** token_end, int digits) ReadHexDigits() argument 535 ParseStringToken(const Char* start, const Char* end, const Char** token_end) ParseStringToken() argument 575 SkipComment(const Char* start, const Char* end, const Char** comment_end) SkipComment() argument 620 SkipWhitespaceAndComments(const Char* start, const Char* end, const Char** whitespace_end) SkipWhitespaceAndComments() argument 638 ParseToken(const Char* start, const Char* end, const Char** tokenStart, const Char** token_end) ParseToken() argument 712 DecodeString(const Char* start, const Char* end, std::vector<uint16_t>* output) DecodeString() argument 831 ParseValue(const Char* start, const Char* end, const Char** value_token_end, int depth) ParseValue() argument [all...] |