/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-color-cbdt-table.hh | 68 unsigned int new_len = cbdt_prime->length + length; in _copy_data_to_cbdt() local 69 if (unlikely (!cbdt_prime->alloc (new_len))) return false; in _copy_data_to_cbdt() 71 cbdt_prime->length = new_len; in _copy_data_to_cbdt()
|
H A D | hb-ot-layout-gsubgpos.hh | 1388 unsigned int new_len = buffer->backtrack_len () + buffer->lookahead_len (); in apply_lookup() local 1389 int delta = new_len - orig_len; in apply_lookup()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-array-prototype.c | 1400 const uint32_t new_len = len - delete_count + item_count; in ecma_builtin_array_prototype_object_splice() local 1445 for (k = len; k > new_len; k--) in ecma_builtin_array_prototype_object_splice() 1514 ecma_value_t set_length_value = ecma_builtin_array_prototype_helper_set_length (obj_p, ((ecma_number_t) new_len)); in ecma_builtin_array_prototype_object_splice() 1622 ecma_number_t new_len = ((ecma_number_t) len) + ((ecma_number_t) args_number); in ecma_builtin_array_prototype_object_unshift() local 1623 ecma_value_t set_length_value = ecma_builtin_array_prototype_helper_set_length (obj_p, new_len); in ecma_builtin_array_prototype_object_unshift() 1630 return ecma_make_number_value (new_len); in ecma_builtin_array_prototype_object_unshift()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_drm.c | 216 uint32_t new_len = idx + 64; in tu_bo_init() local 218 vk_realloc(&dev->vk.alloc, dev->bo_list, new_len * sizeof(*dev->bo_list), in tu_bo_init() 224 dev->bo_list_size = new_len; in tu_bo_init()
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory.cc | 2041 int new_len = old_len + grow_by; in CopyArrayAndGrow() local 2042 HeapObject new_object = AllocateRawFixedArray(new_len, allocation); in CopyArrayAndGrow() 2046 initialize_length(result, new_len); in CopyArrayAndGrow() 2144 int new_len, in CopyFixedArrayUpTo() 2146 DCHECK_LE(0, new_len); in CopyFixedArrayUpTo() 2147 DCHECK_LE(new_len, array->length()); in CopyFixedArrayUpTo() 2148 if (new_len == 0) return empty_fixed_array(); in CopyFixedArrayUpTo() 2149 HeapObject heap_object = AllocateRawFixedArray(new_len, allocation); in CopyFixedArrayUpTo() 2153 result.set_length(new_len); in CopyFixedArrayUpTo() 2156 result.CopyElements(isolate(), 0, *array, 0, new_len, mod in CopyFixedArrayUpTo() local 2143 CopyFixedArrayUpTo(Handle<FixedArray> array, int new_len, AllocationType allocation) CopyFixedArrayUpTo() argument [all...] |
H A D | factory.h | 494 Handle<FixedArray> array, int new_len,
|
/third_party/node/deps/brotli/c/dec/ |
H A D | decode.c | 552 uint32_t new_len = 0; /* for BROTLI_REPEAT_ZERO_CODE_LENGTH */ in ProcessRepeatedCodeLength() local 554 new_len = *prev_code_len; in ProcessRepeatedCodeLength() 557 if (*repeat_code_len != new_len) { in ProcessRepeatedCodeLength() 559 *repeat_code_len = new_len; in ProcessRepeatedCodeLength()
|
/third_party/skia/third_party/externals/brotli/c/dec/ |
H A D | decode.c | 552 uint32_t new_len = 0; /* for BROTLI_REPEAT_ZERO_CODE_LENGTH */ in ProcessRepeatedCodeLength() local 554 new_len = *prev_code_len; in ProcessRepeatedCodeLength() 557 if (*repeat_code_len != new_len) { in ProcessRepeatedCodeLength() 559 *repeat_code_len = new_len; in ProcessRepeatedCodeLength()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/literal/ |
H A D | mod.rs | 205 let new_len = lit.len() - num_bytes; in trim_suffix() 206 lit.truncate(new_len); in trim_suffix()
|
/third_party/node/deps/v8/src/objects/ |
H A D | objects.cc | 3400 uint32_t new_len = 0; in ArraySetLength() local 3401 if (!AnythingToArrayLength(isolate, desc->value(), &new_len)) { in ArraySetLength() 3418 if (new_len >= old_len) { in ArraySetLength() 3421 new_len_desc->set_value(isolate->factory()->NewNumberFromUint(new_len)); in ArraySetLength() 3453 MAYBE_RETURN(JSArray::SetLength(a, new_len), Nothing<bool>()); in ArraySetLength() 3467 bool result = actual_new_len == new_len; in ArraySetLength()
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 17280 /// If `new_len` is greater than the string's current length, this has no 17288 /// Panics if `new_len` does not lie on a [`char`] boundary. 17303 pub fn truncate(&mut self, new_len: usize) { in truncate() 17304 if new_len <= self.len() { in truncate() 17305 assert!(self.is_char_boundary(new_len)); in truncate() 17306 self.vec.truncate(new_len) in truncate() 17471 let new_len = self.idx - self.del_bytes; in drop() 17472 debug_assert!(new_len <= self.s.len()); in drop() 17473 unsafe { self.s.vec.set_len(new_len) }; in drop() [all...] |
/third_party/python/Objects/ |
H A D | unicodeobject.c | 11429 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Concat() local 11459 new_len = left_len + right_len; in PyUnicode_Concat() 11466 result = PyUnicode_New(new_len, maxchar); in PyUnicode_Concat() 11480 Py_ssize_t left_len, right_len, new_len; in PyUnicode_Append() local 11519 new_len = left_len + right_len; in PyUnicode_Append() 11531 if (unicode_resize(p_left, new_len) != 0) in PyUnicode_Append() 11543 res = PyUnicode_New(new_len, maxchar); in PyUnicode_Append()
|
/third_party/rust/crates/libc/src/unix/linux_like/emscripten/ |
H A D | mod.rs | 1825 new_len: ::size_t, in mremap()
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 4068 new_len: ::size_t, in mremap()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |