/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/debug/ |
H A D | mali_kbase_debug_ktrace.c | 218 u32 start; in kbasep_ktrace_dump() local 226 start = kbdev->ktrace.first_out; in kbasep_ktrace_dump() 229 while (start != end) { in kbasep_ktrace_dump() 230 struct kbase_ktrace_msg *trace_msg = &kbdev->ktrace.rbuf[start]; in kbasep_ktrace_dump() 234 start = (start + 1) & KBASE_KTRACE_MASK; in kbasep_ktrace_dump() 246 u32 start; member 261 i = state->start + *pos; in kbasep_ktrace_seq_start() 262 if ((state->end >= state->start && i >= state->end) || in kbasep_ktrace_seq_start() 283 i = (state->start in kbasep_ktrace_seq_next() [all...] |
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/debug/ |
H A D | mali_kbase_debug_ktrace.c | 209 u32 start; in kbasep_ktrace_dump() local 217 start = kbdev->ktrace.first_out; in kbasep_ktrace_dump() 220 while (start != end) { in kbasep_ktrace_dump() 221 struct kbase_ktrace_msg *trace_msg = &kbdev->ktrace.rbuf[start]; in kbasep_ktrace_dump() 225 start = (start + 1) & KBASE_KTRACE_MASK; in kbasep_ktrace_dump() 237 u32 start; member 254 i = state->start + *pos; in kbasep_ktrace_seq_start() 255 if ((state->end >= state->start && i >= state->end) || i >= state->end + KBASE_KTRACE_SIZE) { in kbasep_ktrace_seq_start() 277 i = (state->start in kbasep_ktrace_seq_next() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/text_field/ |
H A D | on_text_changed_listener_impl.cpp | 75 auto start = value.selection.GetStart(); in DeleteForward() 80 textEditingValue->UpdateSelection(start, end); in DeleteForward() 81 textEditingValue->Delete(start, start == end ? end + length : end); in DeleteForward() 145 auto start = value.selection.GetStart(); in DeleteBackward() 150 textEditingValue->UpdateSelection(start, end); in DeleteBackward() 151 textEditingValue->Delete(start == end ? start - length : start, end); in DeleteBackward() 243 void OnTextChangedListenerImpl::HandleSetSelection(int32_t start, int32_ argument [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/test/unittest/ |
H A D | kvstore_datashare_bridge_test.cpp | 231 int32_t start = -1; in HWTEST_F() local 234 EXPECT_EQ(bridge->OnGo(start, target, writer), -1); in HWTEST_F() 237 start = 0; in HWTEST_F() 239 EXPECT_EQ(bridge->OnGo(start, target, writer), -1); in HWTEST_F() 242 start = 1; in HWTEST_F() 244 EXPECT_EQ(bridge->OnGo(start, target, writer), -1); in HWTEST_F() 247 start = 1; in HWTEST_F() 249 EXPECT_EQ(bridge->OnGo(start, target, writer), -1); in HWTEST_F() 269 int start = 0; in HWTEST_F() local 273 EXPECT_EQ(bridge->OnGo(start, targe in HWTEST_F() [all...] |
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
H A D | BreakIteratorPerformanceTest.java | 101 int start = iter.first(); in init() 102 for (int end = iter.next(); end != com.ibm.icu.text.BreakIterator.DONE; start = end, end = iter.next()) in init() 103 tokenList.add(fileContents.substring(start, end)); in init() 115 int start = iter.first(); in init() 116 for (int end = iter.next(); end != com.ibm.icu.text.BreakIterator.DONE; start = end, end = iter.next()) in init() 117 tokenList.add(fileContents.substring(start, end)); in init() 128 int start = iIter.first(); in createTestICU() 129 for (int end = iIter.next(); end != com.ibm.icu.text.BreakIterator.DONE; start = end, end = iIter in createTestICU() 131 if (!correct[k++].equals(fileContents.substring(start, end))) in createTestICU() 149 int start in createTestJava() [all...] |
/third_party/node/lib/ |
H A D | diagnostics_channel.js | 239 'start', 255 this.start = channel(`tracing:${nameOrChannels}:start`); 261 const { start, end, asyncStart, asyncEnd, error } = nameOrChannels; 263 assertChannel(start, 'nameOrChannels.start'); 269 this.start = start; 304 const { start, end, error } = this; 306 return start [all...] |
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_vec4_live_variables.cpp | 85 start[v] = MIN2(start[v], ip); in setup_def_use() 108 start[v] = MIN2(start[v], ip); in setup_def_use() 195 * Extend the start/end ranges for each variable to account for the 206 start[i] = MIN2(start[i], block->start_ip); in compute_start_end() 211 start[i] = MIN2(start[i], block->end_ip); in compute_start_end() 224 start in vec4_live_variables() [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
H A D | EOTWriter.java | 148 private int writeReservedFields(int start, WritableFontData writableFontData) { in writeReservedFields() argument 149 int index = start; in writeReservedFields() 153 return index - start; in writeReservedFields() 156 private int writeUnicodeRanges(int start, OS2Table os2Table, WritableFontData writableFontData) { in writeUnicodeRanges() argument 157 int index = start; in writeUnicodeRanges() 164 return index - start; in writeUnicodeRanges() 167 private int writeCodePages(int start, OS2Table os2Table, WritableFontData writableFontData) { in writeCodePages() argument 168 int index = start; in writeCodePages() 177 return index - start; in writeCodePages() 184 private int writeUTF16String(int start, byt argument [all...] |
/third_party/skia/third_party/externals/libwebp/src/utils/ |
H A D | bit_reader_utils.c | 25 const uint8_t* const start, in VP8BitReaderSetBuffer() 27 br->buf_ = start; in VP8BitReaderSetBuffer() 28 br->buf_end_ = start + size; in VP8BitReaderSetBuffer() 30 (size >= sizeof(lbit_t)) ? start + size - sizeof(lbit_t) + 1 in VP8BitReaderSetBuffer() 31 : start; in VP8BitReaderSetBuffer() 35 const uint8_t* const start, size_t size) { in VP8InitBitReader() 37 assert(start != NULL); in VP8InitBitReader() 43 VP8BitReaderSetBuffer(br, start, size); in VP8InitBitReader() 140 void VP8LInitBitReader(VP8LBitReader* const br, const uint8_t* const start, in VP8LInitBitReader() argument 145 assert(start ! in VP8LInitBitReader() 24 VP8BitReaderSetBuffer(VP8BitReader* const br, const uint8_t* const start, size_t size) VP8BitReaderSetBuffer() argument 34 VP8InitBitReader(VP8BitReader* const br, const uint8_t* const start, size_t size) VP8InitBitReader() argument [all...] |
H A D | huffman_utils.c | 225 root_table->curr_segment->start + root_table->curr_segment->size) { in VP8LBuildHuffmanTable() 238 next->start = in VP8LBuildHuffmanTable() 239 (HuffmanCode*)WebPSafeMalloc(next->size, sizeof(*next->start)); in VP8LBuildHuffmanTable() 240 if (next->start == NULL) { in VP8LBuildHuffmanTable() 244 next->curr_table = next->start; in VP8LBuildHuffmanTable() 271 root->start = (HuffmanCode*)WebPSafeMalloc(size, sizeof(*root->start)); in VP8LHuffmanTablesAllocate() 272 if (root->start == NULL) return 0; in VP8LHuffmanTablesAllocate() 273 root->curr_table = root->start; in VP8LHuffmanTablesAllocate() 285 WebPSafeFree(current->start); in VP8LHuffmanTablesDeallocate() [all...] |
/third_party/skia/third_party/externals/dawn/src/common/ |
H A D | SerialStorage.h | 38 Iterator(StorageIterator start); 55 ConstIterator(ConstStorageIterator start); 69 BeginEnd(StorageIterator start, StorageIterator end); 81 ConstBeginEnd(ConstStorageIterator start, ConstStorageIterator end); 194 SerialStorage<Derived>::BeginEnd::BeginEnd(typename SerialStorage<Derived>::StorageIterator start, in BeginEnd() argument 196 : mStartIt(start), mEndIt(end) { in BeginEnd() 212 SerialStorage<Derived>::Iterator::Iterator(typename SerialStorage<Derived>::StorageIterator start) in Iterator() argument 213 : mStorageIterator(start), mSerialIterator(nullptr) { in Iterator() 258 typename SerialStorage<Derived>::ConstStorageIterator start, in ConstBeginEnd() 260 : mStartIt(start), mEndI in ConstBeginEnd() 257 ConstBeginEnd( typename SerialStorage<Derived>::ConstStorageIterator start, typename SerialStorage<Derived>::ConstStorageIterator end) ConstBeginEnd() argument 277 ConstIterator( typename SerialStorage<Derived>::ConstStorageIterator start) ConstIterator() argument [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-shape-complex-thai.cc | 287 * when it's there to start with. The string <0E14, 0E4B, 0E4D> is probably in preprocess_text_thai() 345 unsigned int start = end - 2; in preprocess_text_thai() local 346 while (start > 0 && IS_TONE_MARK (buffer->out_info[start - 1].codepoint)) in preprocess_text_thai() 347 start--; in preprocess_text_thai() 349 if (start + 2 < end) in preprocess_text_thai() 352 buffer->merge_out_clusters (start, end); in preprocess_text_thai() 354 memmove (buffer->out_info + start + 1, in preprocess_text_thai() 355 buffer->out_info + start, in preprocess_text_thai() 356 sizeof (buffer->out_info[0]) * (end - start in preprocess_text_thai() [all...] |
/third_party/zlib/examples/ |
H A D | gzjoin.c | 286 unsigned char *start; /* start of compressed data in buffer */ in gzcopy() local 312 start = in->next; in gzcopy() 313 last = start[0] & 1; in gzcopy() 315 start[0] &= ~1; in gzcopy() 320 fwrite(start, 1, strm.next_in - start, out); in gzcopy() 321 start = in->buf; in gzcopy() 361 fwrite(start, 1, strm.next_in - start, ou in gzcopy() [all...] |
/foundation/arkui/ace_engine/test/unittest/core/manager/ |
H A D | safe_area_manager_test_ng.cpp | 145 Rect { res.left_.start, res.right_.end, res.top_.start, res.bottom_.end }, Rect { 0.0f, 0.0f, 0.0f, 0.0f }); in HWTEST_F() 148 Rect { res.left_.start, res.right_.end, res.top_.start, res.bottom_.end }, Rect { 0.0f, 0.0f, 0.0f, 0.0f }); in HWTEST_F() 151 Rect { res.left_.start, res.right_.end, res.top_.start, res.bottom_.end }, Rect { 0.0f, 0.0f, 0.0f, 0.0f }); in HWTEST_F() 154 Rect { res.left_.start, res.right_.end, res.top_.start, res.bottom_.end }, Rect { 0.0f, 0.0f, 0.0f, 0.0f }); in HWTEST_F() 201 CommonExpectEQ(Rect { sa.left_.start, sa.right_.end, sa.top_.start, s in HWTEST_F() [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | draw.c | 330 GLuint start, GLuint end, in _mesa_validate_DrawRangeElements() 335 if (end < start) { in _mesa_validate_DrawRangeElements() 1005 prim.start = draws[0].start; in _mesa_draw_gallium_fallback() 1011 min_index = draws[0].start; in _mesa_draw_gallium_fallback() 1012 max_index = draws[0].start + draws[0].count - 1; in _mesa_draw_gallium_fallback() 1038 prim[num_prims].start = draws[i].start; in _mesa_draw_gallium_fallback() 1044 min_index = MIN2(min_index, draws[i].start); in _mesa_draw_gallium_fallback() 1045 max_index = MAX2(max_index, draws[i].start in _mesa_draw_gallium_fallback() 329 _mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type) _mesa_validate_DrawRangeElements() argument 1208 check_draw_arrays_data(struct gl_context *ctx, GLint start, GLsizei count) check_draw_arrays_data() argument 1218 print_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start, GLsizei count) print_draw_arrays() argument 1289 _mesa_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start, GLsizei count, GLuint numInstances, GLuint baseInstance) _mesa_draw_arrays() argument 1515 _mesa_DrawArrays(GLenum mode, GLint start, GLsizei count) _mesa_DrawArrays() argument 1545 _mesa_DrawArraysInstancedARB(GLenum mode, GLint start, GLsizei count, GLsizei numInstances) _mesa_DrawArraysInstancedARB() argument 1728 _mesa_validated_drawrangeelements(struct gl_context *ctx, GLenum mode, bool index_bounds_valid, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex, GLuint numInstances, GLuint baseInstance) _mesa_validated_drawrangeelements() argument 1775 uintptr_t start = (uintptr_t) indices; _mesa_validated_drawrangeelements() local 1834 _mesa_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex) _mesa_DrawRangeElementsBaseVertex() argument 1927 _mesa_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices) _mesa_DrawRangeElements() argument [all...] |
/foundation/arkui/ui_lite/test/unittest/components/ |
H A D | ui_spannable_string_unit_test.cpp | 139 uint16_t start = 9; in HWTEST_F() local 141 spannableString_->SetSpannable(true, start, end); in HWTEST_F() 144 for (uint16_t i = 0; i < start; i++) { in HWTEST_F() 147 for (uint16_t i = start; i < end; i++) { in HWTEST_F() 164 uint16_t start = 0; in HWTEST_F() local 166 spannableString_->SetSpannable(true, start, end); in HWTEST_F() 169 for (uint16_t i = 0; i < start; i++) { in HWTEST_F() 172 for (uint16_t i = start; i < default_is_spannable_len; i++) { in HWTEST_F() 186 uint16_t start = 0; in HWTEST_F() local 188 spannableString_->SetSpannable(true, start, en in HWTEST_F() 202 uint16_t start = 10; HWTEST_F() local 221 uint16_t start = 9; HWTEST_F() local 272 uint16_t start = 2; HWTEST_F() local 289 uint16_t start = 2; HWTEST_F() local 315 uint16_t start = 2; HWTEST_F() local 799 uint16_t start = 6; HWTEST_F() local 824 uint16_t start = 6; HWTEST_F() local 843 uint16_t start = 6; HWTEST_F() local 871 uint16_t start = 6; HWTEST_F() local 890 uint16_t start = 6; HWTEST_F() local [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | normalizer2impl.cpp | 94 * Returns the last code point in [start, p[ if it is valid and in U+1000..U+D7FF. 97 UChar32 previousHangulOrJamo(const uint8_t *start, const uint8_t *p) { 98 if ((p - start) >= 3) { 174 start(str.getBuffer(8)), reorderStart(start), limit(start), 176 if (start == nullptr && U_SUCCESS(errorCode)) { 184 start=str.getBuffer(destCapacity); 185 if(start==NULL) { 190 limit=start [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | normalizer2impl.cpp | 94 * Returns the last code point in [start, p[ if it is valid and in U+1000..U+D7FF. 97 UChar32 previousHangulOrJamo(const uint8_t *start, const uint8_t *p) { 98 if ((p - start) >= 3) { 174 start(str.getBuffer(8)), reorderStart(start), limit(start), 176 if (start == nullptr && U_SUCCESS(errorCode)) { 184 start=str.getBuffer(destCapacity); 185 if(start==nullptr) { 190 limit=start [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | normalizer2impl.cpp | 94 * Returns the last code point in [start, p[ if it is valid and in U+1000..U+D7FF. 97 UChar32 previousHangulOrJamo(const uint8_t *start, const uint8_t *p) { 98 if ((p - start) >= 3) { 174 start(str.getBuffer(8)), reorderStart(start), limit(start), 176 if (start == nullptr && U_SUCCESS(errorCode)) { 184 start=str.getBuffer(destCapacity); 185 if(start==NULL) { 190 limit=start [all...] |
/foundation/arkui/ui_lite/interfaces/kits/common/ |
H A D | spannable_string.h | 23 uint16_t start; member 32 uint16_t start; member 38 uint16_t start; member 44 int16_t start; member 50 int16_t start; member 56 int16_t start; member 68 StyleSpan(TextStyle textStyle, uint16_t start, uint16_t end) in StyleSpan() argument 71 start_ = start; in StyleSpan() 184 (*tempSpan)->data_.start = endIndex; in UnequalInsert()
|
/foundation/graphic/graphic_2d/rosen/modules/texgine/src/opentype_parser/ |
H A D | cmap_parser.cpp | 166 uint32_t start = startCodes[i].Get(); in ParseFormat4() local 167 if (end < start) { in ParseFormat4() 174 ParseFormat4NoOffset(delta, start, end); in ParseFormat4() 177 for (uint32_t j = start; j <= end; j++) { in ParseFormat4() 178 const auto &gid = idRangeOffsets[idRangeOffset / 2 + i + j - start].Get(); in ParseFormat4() 187 void CmapParser::ParseFormat4NoOffset(int32_t delta, uint32_t start, uint32_t end) in ParseFormat4NoOffset() argument 189 if (((static_cast<uint32_t>(delta) + end) & 0xffff) > end - start) { in ParseFormat4NoOffset() 190 ranges_.AddRange({start, end + 1, delta}); in ParseFormat4NoOffset() 192 for (uint32_t j = start; j <= end; j++) { in ParseFormat4NoOffset()
|
/third_party/ffmpeg/libavcodec/ |
H A D | aaccoder_trellis.h | 63 int w, swb, cb, start, size; in codebook_trellis_rate() local 74 start = win*128; in codebook_trellis_rate() 126 bits += quantize_band_cost_bits(s, &sce->coeffs[start + w*128], in codebook_trellis_rate() 127 &s->scoefs[start + w*128], size, in codebook_trellis_rate() 152 start += sce->ics.swb_sizes[swb]; in codebook_trellis_rate() 172 start = 0; in codebook_trellis_rate() 177 memset(sce->zeroes + win*16 + start, !cb, count); in codebook_trellis_rate() 180 sce->band_type[win*16 + start] = cb; in codebook_trellis_rate() 181 start++; in codebook_trellis_rate()
|
/third_party/elfio/elfio/ |
H A D | elfio_utils.hpp | 171 address_translation( uint64_t start, uint64_t size, uint64_t mapped_to ) in address_translation() 172 : start( start ), size( size ), mapped_to( mapped_to ){}; in address_translation() 173 std::streampos start; member 190 return a.start < b.start; in set_address_translation() 202 if ( ( t.start <= value ) && ( ( value - t.start ) < t.size ) ) { in operator []() 203 return value - t.start + t.mapped_to; in operator []()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | uformattedvaluetst.c | 26 int32_t start, 140 int32_t start, in AssertAllPartsEqual() 166 assertIntEquals(AAPE_MSG("start"), start, _start); in AssertAllPartsEqual() 229 int32_t start, limit; in checkFormattedValue() local 230 ucfpos_getIndexes(ucfpos, &start, &limit, &ec); in checkFormattedValue() 231 assertIntEquals("start", in checkFormattedValue() 232 expectedFieldPositions[i].beginIndex, start); in checkFormattedValue() 261 int32_t start, limit; in checkMixedFormattedValue() local 262 ucfpos_getIndexes(ucfpos, &start, in checkMixedFormattedValue() 134 AssertAllPartsEqual( const char* messagePrefix, const UConstrainedFieldPosition* ucfpos, int32_t matching, UFieldCategory category, int32_t field, int32_t start, int32_t limit, int64_t context) AssertAllPartsEqual() argument [all...] |
/third_party/libuv/test/ |
H A D | runner-win.c | 245 DWORD start; in process_read_last_line() local 266 start = read; in process_read_last_line() 267 while (start-- > 0) { in process_read_last_line() 268 if (buffer[start] == '\n' || buffer[start] == '\r') in process_read_last_line() 272 if (start > 0) in process_read_last_line() 273 memmove(buffer, buffer + start, read - start); in process_read_last_line() 275 buffer[read - start] = '\0'; in process_read_last_line()
|