/third_party/python/Objects/ |
H A D | tupleobject.c | 12 [clinic start generated code]*/ 553 start: slice_index(accept={int}) = 0 560 [clinic start generated code]*/ 563 tuple_index_impl(PyTupleObject *self, PyObject *value, Py_ssize_t start, in tuple_index_impl() argument 569 if (start < 0) { in tuple_index_impl() 570 start += Py_SIZE(self); in tuple_index_impl() 571 if (start < 0) in tuple_index_impl() 572 start = 0; in tuple_index_impl() 580 for (i = start; i < stop; i++) { in tuple_index_impl() 598 [clinic start generate 790 Py_ssize_t start, stop, step, slicelength, i; tuplesubscript() local [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | tedcaptionsdec.c | 36 { "start_time", "set the start time (offset) of the subtitles, in ms", 188 int64_t pos, start, duration; in parse_file() local 204 start = duration = AV_NOPTS_VALUE; in parse_file() 222 ret = parse_int(pb, &cur_byte, &start); in parse_file() 242 if (!content.size || start == AV_NOPTS_VALUE || in parse_file() 253 pkt->pts = start; in parse_file()
|
/third_party/ffmpeg/libavutil/ |
H A D | timecode.c | 59 framenum += tc->start; in av_timecode_get_smpte_from_framenum() 109 framenum += tc->start; in av_timecode_make_string() 224 tc->start = frame_start; in av_timecode_init() 244 tc->start = (hh*3600 + mm*60 + ss) * tc->fps + ff; in av_timecode_init_from_components() 247 tc->start -= (tc->fps / 30 * 2) * (tmins - tmins/10); in av_timecode_init_from_components()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | fldset.cpp | 81 int32_t start = 0; in split() local 85 while((end = src.indexOf(ch, start)) >= 0) { in split() 86 src.extractBetween(start, end, result[split++]); in split() 87 start = end + 1; in split() 90 src.extractBetween(start, src.length(), result[split]); in split()
|
H A D | canittst.cpp | 124 expectEqual("Characters with 'a' at the start of their decomposition: ", "", CanonicalIterator.getStarts('a'), in TestBasic() 307 UnicodeString start("ljubav"); in TestAPI() 309 logln("Instantiating canonical iterator with string "+start); in TestAPI() 310 CanonicalIterator can(start, status); in TestAPI() 317 if(start != source) { in TestAPI() 318 errln("CanonicalIterator.getSource() didn't return the starting string. Expected "+start+", got "+source); in TestAPI()
|
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | TransliterationRule.java | 133 * @param postContextPos offset into input to start of post context, or -1 150 * the context start 392 // A mismatch in the ante context, or with the start anchor, in matchAndReplace() 407 // Start reverse match at char before pos.start in matchAndReplace() 408 intRef[0] = posBefore(text, pos.start); in matchAndReplace() 429 intRef[0] = pos.start; in matchAndReplace() 470 // We have a full match. The key is between pos.start and in matchAndReplace() 473 int newLength = output.replace(text, pos.start, keyLimit, intRef); in matchAndReplace() 474 int lenDelta = newLength - (keyLimit - pos.start); in matchAndReplace() 480 // Restrict new value of start t in matchAndReplace() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | TransliterationRule.java | 134 * @param postContextPos offset into input to start of post context, or -1 151 * the context start 393 // A mismatch in the ante context, or with the start anchor, in matchAndReplace() 408 // Start reverse match at char before pos.start in matchAndReplace() 409 intRef[0] = posBefore(text, pos.start); in matchAndReplace() 430 intRef[0] = pos.start; in matchAndReplace() 471 // We have a full match. The key is between pos.start and in matchAndReplace() 474 int newLength = output.replace(text, pos.start, keyLimit, intRef); in matchAndReplace() 475 int lenDelta = newLength - (keyLimit - pos.start); in matchAndReplace() 481 // Restrict new value of start t in matchAndReplace() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | PluralFormatTest.java | 218 public <T> void put(int base, int start, int end, T value, Map<Integer, T> m) { in put() argument 219 for (int i = start; i <= end; ++i) { in put() 227 public <T> void put(int base, int start, T value, Map<Integer, T> m) { in put() argument 228 put(base, start, start, value, m); in put()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/compression/ |
H A D | DecompressionTest.java | 21 private void log(char [] chars, int start, int count) { in log() argument 23 for(int i = start; i < start + count; ++i) { in log() 30 private void logln(char [] chars, int start, int count) in logln() argument 32 log(chars, start, count); in logln()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | PluralFormatTest.java | 215 public <T> void put(int base, int start, int end, T value, Map<Integer, T> m) { in put() argument 216 for (int i = start; i <= end; ++i) { in put() 224 public <T> void put(int base, int start, T value, Map<Integer, T> m) { in put() argument 225 put(base, start, start, value, m); in put()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/compression/ |
H A D | DecompressionTest.java | 24 private void log(char [] chars, int start, int count) { in log() argument 26 for(int i = start; i < start + count; ++i) { in log() 33 private void logln(char [] chars, int start, int count) in logln() argument 35 log(chars, start, count); in logln()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | tznames_impl.h | 140 void search(const UnicodeString &text, int32_t start, 160 void search(CharacterNode *node, const UnicodeString &text, int32_t start, 190 TimeZoneNames::MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const override; 223 const UnicodeString& text, int32_t start, UErrorCode& status) const; 250 TimeZoneNames::MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const override;
|
H A D | rbt_rule.cpp | 40 * @param postContextPos offset into input to start of post context, or -1 54 * the context start 207 * there is a start anchor. The one character anchor gap is 375 // A mismatch in the ante context, or with the start anchor, in matchAndReplace() 391 // Start reverse match at char before pos.start in matchAndReplace() 392 oText = posBefore(text, pos.start); in matchAndReplace() 411 oText = pos.start; in matchAndReplace() 450 // We have a full match. The key is between pos.start and in matchAndReplace() 454 int32_t newLength = output->toReplacer()->replace(text, pos.start, keyLimit, newStart); in matchAndReplace() 455 int32_t lenDelta = newLength - (keyLimit - pos.start); in matchAndReplace() [all...] |
/third_party/icu/icu4c/source/common/unicode/ |
H A D | stringtriebuilder.h | 95 int32_t writeNode(int32_t start, int32_t limit, int32_t unitIndex); 97 int32_t writeBranchSubNode(int32_t start, int32_t limit, int32_t unitIndex, int32_t length); 104 Node *makeNode(int32_t start, int32_t limit, int32_t unitIndex, UErrorCode &errorCode); 106 Node *makeBranchSubNode(int32_t start, int32_t limit, int32_t unitIndex, 124 virtual int32_t countElementUnits(int32_t start, int32_t limit, int32_t unitIndex) const = 0;
|
/third_party/libdrm/amdgpu/ |
H A D | amdgpu_vamgr.c | 34 uint64_t *start, uint64_t *end) in amdgpu_va_range_query() 39 *start = dev->dev_info.virtual_address_offset; in amdgpu_va_range_query() 44 drm_private void amdgpu_vamgr_init(struct amdgpu_bo_va_mgr *mgr, uint64_t start, in amdgpu_vamgr_init() argument 56 n->size = mgr->va_max - start; in amdgpu_vamgr_init() 57 n->offset = start; in amdgpu_vamgr_init() 32 amdgpu_va_range_query(amdgpu_device_handle dev, enum amdgpu_gpu_va_range type, uint64_t *start, uint64_t *end) amdgpu_va_range_query() argument
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_pipe_draw.c | 62 enum pipe_prim_type prim, unsigned start, unsigned count, in retry_draw_arrays() 70 SVGA_RETRY_OOM(svga, ret, svga_hwtnl_draw_arrays(svga->hwtnl, prim, start, in retry_draw_arrays() 119 0, /* start instance */ in retry_draw_auto() 130 * Indirect draw (get vertex count, start index, etc. from a buffer object. 263 * always start from 0 for DrawArrays and does not include baseVertex for in svga_draw_vbo() 267 if (svga->curr.vertex_id_bias != (draws[0].start + index_bias)) { in svga_draw_vbo() 268 svga->curr.vertex_id_bias = draws[0].start + index_bias; in svga_draw_vbo() 370 ret = retry_draw_arrays(svga, info->mode, draws[0].start, count, in svga_draw_vbo() 61 retry_draw_arrays( struct svga_context *svga, enum pipe_prim_type prim, unsigned start, unsigned count, unsigned start_instance, unsigned instance_count, ubyte vertices_per_patch) retry_draw_arrays() argument
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_fs_register_coalesce.cpp | 107 int dst_start = live.start[dst_var]; in can_coalesce_vars() 109 int src_start = live.start[src_var]; in can_coalesce_vars() 322 live.start[dst_var[i]] = MIN2(live.start[dst_var[i]], in register_coalesce() 323 live.start[src_var[i]]); in register_coalesce()
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | stringtriebuilder.h | 95 int32_t writeNode(int32_t start, int32_t limit, int32_t unitIndex); 97 int32_t writeBranchSubNode(int32_t start, int32_t limit, int32_t unitIndex, int32_t length); 104 Node *makeNode(int32_t start, int32_t limit, int32_t unitIndex, UErrorCode &errorCode); 106 Node *makeBranchSubNode(int32_t start, int32_t limit, int32_t unitIndex, 124 virtual int32_t countElementUnits(int32_t start, int32_t limit, int32_t unitIndex) const = 0;
|
/third_party/node/deps/base64/base64/bin/ |
H A D | base64.c | 368 char *start = buf->enc; in decode() local 379 size_t outlen, len = find_newline(start, avail); in decode() 383 start++; in decode() 389 if (base64_stream_decode(&state, start, len, in decode() 405 // Move the start pointer past the newline. in decode() 406 start += len + 1; in decode()
|
/third_party/mesa3d/src/mesa/math/ |
H A D | m_debug_xform.c | 140 GLfloat *s = (GLfloat *)src->start; in ref_transform() 141 GLfloat (*d)[4] = (GLfloat (*)[4])dst->start; in ref_transform() 222 source->start = (GLfloat *)s; in test_transform_function() 229 dest->start = (GLfloat *)d; in test_transform_function() 236 ref->start = (GLfloat *)r; in test_transform_function()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | rbt_rule.cpp | 40 * @param postContextPos offset into input to start of post context, or -1 54 * the context start 207 * there is a start anchor. The one character anchor gap is 375 // A mismatch in the ante context, or with the start anchor, in matchAndReplace() 391 // Start reverse match at char before pos.start in matchAndReplace() 392 oText = posBefore(text, pos.start); in matchAndReplace() 411 oText = pos.start; in matchAndReplace() 450 // We have a full match. The key is between pos.start and in matchAndReplace() 454 int32_t newLength = output->toReplacer()->replace(text, pos.start, keyLimit, newStart); in matchAndReplace() 455 int32_t lenDelta = newLength - (keyLimit - pos.start); in matchAndReplace() [all...] |
H A D | tznames_impl.h | 140 void search(const UnicodeString &text, int32_t start, 160 void search(CharacterNode *node, const UnicodeString &text, int32_t start, 190 TimeZoneNames::MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const override; 223 const UnicodeString& text, int32_t start, UErrorCode& status) const; 250 TimeZoneNames::MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const override;
|
/third_party/libwebsockets/lib/roles/ws/ext/ |
H A D | extension.c | 75 oa.start = NULL; in lws_ext_parse_options() 138 oa.start = in; in lws_ext_parse_options() 152 if (oa.start) in lws_ext_parse_options() 153 oa.len = lws_ptr_diff(in, oa.start); in lws_ext_parse_options() 375 oa.start = opt_val; in lws_set_extension_option()
|
/third_party/node/deps/v8/src/heap/ |
H A D | spaces-inl.h | 35 PageRange::PageRange(Address start, Address limit) in PageRange() argument 36 : begin_(Page::FromAddress(start)), in PageRange() 40 SemiSpace::AssertValidRange(start, limit); in PageRange() 267 DCHECK_LE(allocation_info_->start(), allocation_info_->top()); in AllocateRawUnaligned() 287 DCHECK_LE(allocation_info_->start(), allocation_info_->top()); in AllocateRawAligned()
|
/third_party/node/deps/v8/src/snapshot/embedded/ |
H A D | embedded-data.h | 28 // to uint32 by calculating offset from the embedded code blob start and 82 Address start = reinterpret_cast<Address>(code_); in IsInCodeRange() local 83 return (start <= pc) && (pc < start + code_size_); in IsInCodeRange() 157 Address start = reinterpret_cast<Address>(code_); in AddressForHashing() local 158 return static_cast<uint32_t>(addr - start); in AddressForHashing() 184 // from the start of the embedded code section. 188 // from the start of the embedded data section. 192 // The offsets describing inline metadata tables, relative to the start
|