Home
last modified time | relevance | path

Searched refs:current_length (Results 1 - 21 of 21) sorted by relevance

/third_party/icu/icu4c/source/common/
H A Dcaniter.cpp75 current_length(0), in CanonicalIterator()
107 current_length = 0; in cleanPieces()
123 for (int i = 0; i < current_length; ++i) { in reset()
152 for (i = current_length - 1; ; --i) { in next()
189 current_length = 1; in setSource()
235 current_length = list_length; in setSource()
241 for (i = 0; i < current_length; i++) { in setSource()
/third_party/node/deps/icu-small/source/common/
H A Dcaniter.cpp75 current_length(0), in CanonicalIterator()
107 current_length = 0; in cleanPieces()
123 for (int i = 0; i < current_length; ++i) { in reset()
152 for (i = current_length - 1; ; --i) { in next()
189 current_length = 1; in setSource()
235 current_length = list_length; in setSource()
241 for (i = 0; i < current_length; i++) { in setSource()
/third_party/skia/third_party/externals/icu/source/common/
H A Dcaniter.cpp75 current_length(0), in CanonicalIterator()
107 current_length = 0; in cleanPieces()
123 for (int i = 0; i < current_length; ++i) { in reset()
152 for (i = current_length - 1; ; --i) { in next()
189 current_length = 1; in setSource()
235 current_length = list_length; in setSource()
241 for (i = 0; i < current_length; i++) { in setSource()
/third_party/ffmpeg/libavcodec/
H A Dmss2.c250 int current_length = 0, read_codes = 0, next_code = 0, current_codes = 0; in decode_rle() local
293 bits[symbol] = current_length; in decode_rle()
297 current_length++; in decode_rle()
299 remaining_codes = (1 << current_length) - next_code; in decode_rle()
301 if (current_length > 22 || current_codes > remaining_codes) in decode_rle()
308 while ((surplus_codes = (2 << current_length) - in decode_rle()
310 current_length++; in decode_rle()
318 current_length++; in decode_rle()
321 bits[i] = current_length; in decode_rle()
325 if (next_code != 1 << current_length) in decode_rle()
[all...]
H A Dvorbisdec.c324 unsigned current_length = get_bits(gb, 5) + 1; in vorbis_parse_setup_hdr_codebooks() local
326 ff_dlog(NULL, " ordered, current length: %u\n", current_length); //FIXME in vorbis_parse_setup_hdr_codebooks()
329 for (; current_entry < used_entries && current_length <= 32; ++current_length) { in vorbis_parse_setup_hdr_codebooks()
340 tmp_vlc_bits[i] = current_length; in vorbis_parse_setup_hdr_codebooks()
/third_party/curl/lib/vtls/
H A Dschannel_verify.c428 size_t current_length = 0; in cert_get_name_string() local
437 current_length = wcslen(entry->pwszDNSName) + 1; in cert_get_name_string()
439 actual_length += (DWORD)current_length; in cert_get_name_string()
443 if((actual_length + current_length) > length) { in cert_get_name_string()
454 actual_length += (DWORD)current_length; in cert_get_name_string()
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-string.cc303 int current_length = i + char_length + next_length; in ConvertCaseHelper() local
313 current_length += char_length; in ConvertCaseHelper()
314 if (current_length > String::kMaxLength) { in ConvertCaseHelper()
322 return (overflows && !ignore_overflow) ? Smi::FromInt(-current_length) in ConvertCaseHelper()
323 : Smi::FromInt(current_length); in ConvertCaseHelper()
H A Dbuiltins-array.cc786 uint32_t current_length = static_cast<uint32_t>(current_storage->length()); in SetDictionaryMode() local
788 isolate_, uint32_t, i = 0, i, i < current_length, i++, { in SetDictionaryMode()
/third_party/icu/icu4c/source/common/unicode/
H A Dcaniter.h180 int32_t current_length; member in U_FINAL
/third_party/node/deps/icu-small/source/common/unicode/
H A Dcaniter.h180 int32_t current_length; member in final
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dcaniter.h180 int32_t current_length; member in U_FINAL
/third_party/node/deps/v8/src/parsing/
H A Dpreparse-data.cc175 int current_length = length(); in SaveCurrentSizeAtFirstUint32() local
178 WriteUint32(current_length); in SaveCurrentSizeAtFirstUint32()
179 index_ = current_length; in SaveCurrentSizeAtFirstUint32()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-objects.cc260 uint32_t old_size = table->current_length(); in Grow()
320 return entry_index < static_cast<uint32_t>(table->current_length()); in IsInBounds()
468 DCHECK_LE(start, table->current_length()); in Fill()
469 DCHECK_LE(count, table->current_length()); in Fill()
470 DCHECK_LE(start + count, table->current_length()); in Fill()
654 DCHECK_LT(entry_index, table->current_length()); in GetFunctionTableEntry()
1334 uint32_t max_dst = table_dst->current_length(); in CopyTableEntries()
1335 uint32_t max_src = table_src->current_length(); in CopyTableEntries()
H A Dmodule-instantiate.cc1221 int imported_table_size = table_object->current_length(); in InitializeImportedIndirectFunctionTable()
1282 static_cast<uint32_t>(table_object->current_length()); in ProcessImportedTable()
2014 if (!base::IsInBounds<uint64_t>(dst, count, table_object->current_length()) || in LoadElemSegmentImpl()
H A Dc-api.cc1967 uint32_t min = table->current_length();
1986 if (index >= static_cast<size_t>(table->current_length())) return own<Ref>();
2003 if (index >= static_cast<size_t>(table->current_length())) return false;
2018 return impl(this)->v8_object()->current_length();
H A Dwasm-js.cc1982 v8::Number::New(isolate, receiver->current_length())); in WebAssemblyTableGetLength()
2113 table->current_length(), max_size); in WebAssemblyTableType()
/third_party/node/deps/ada/
H A Dada.h5860 uint32_t current_length = end - start; in replace_and_resize() local
5862 uint32_t new_difference = input_size - current_length; in replace_and_resize()
5864 if (current_length == 0) { in replace_and_resize()
5866 } else if (input_size == current_length) { in replace_and_resize()
5868 } else if (input_size < current_length) { in replace_and_resize()
5869 buffer.erase(start, current_length - input_size); in replace_and_resize()
5872 buffer.replace(start, current_length, input.substr(0, current_length)); in replace_and_resize()
5873 buffer.insert(start + current_length, input.substr(current_length)); in replace_and_resize()
6210 uint32_t current_length = update_base_password() local
[all...]
/third_party/node/deps/v8/src/runtime/
H A Druntime-wasm.cc538 uint32_t table_size = table->current_length(); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/objects/
H A Delements.cc3749 size_t current_length; in TryCopyElementsFastNumber() local
3751 TryNumberToSize(source.length(), &current_length) && in TryCopyElementsFastNumber()
3752 length <= current_length); in TryCopyElementsFastNumber()
3753 USE(current_length); in TryCopyElementsFastNumber()
3913 size_t current_length; in CopyElementsHandleImpl() local
3915 if (TryNumberToSize(source_js_array->length(), &current_length) && in CopyElementsHandleImpl()
3916 length <= current_length) { in CopyElementsHandleImpl()
/third_party/node/deps/v8/src/debug/
H A Ddebug-wasm-objects.cc1089 int length = table->current_length(); in AddWasmTableObjectInternalProperties()
/third_party/node/deps/simdutf/
H A Dsimdutf.cpp20750 size_t current_length = static_cast<size_t>(buf - start);
20751 if (current_length != length) {
20753 (1ULL << (length - current_length)) - 1, (const __m512i *)buf);
[all...]

Completed in 91 milliseconds