/third_party/node/deps/v8/src/base/ |
D | small-vector.h | 59 size_t other_size = other.size(); 60 if (capacity() < other_size) { 63 begin_ = AllocateDynamicStorage(other_size); 64 end_of_storage_ = begin_ + other_size; 66 memcpy(begin_, other.begin_, sizeof(T) * other_size); 67 end_ = begin_ + other_size; 81 size_t other_size = other.size(); 82 memcpy(begin_, other.begin_, sizeof(T) * other_size); 83 end_ = begin_ + other_size;
|
/third_party/vixl/benchmarks/aarch64/ |
D | bench-utils.cc | 362 unsigned other_size = PickBool() ? size * 2 : size / 2; in GenerateFPSequence() local 363 if (other_size < kHRegSize) other_size = kDRegSize; in GenerateFPSequence() 364 if (other_size > kDRegSize) other_size = kHRegSize; in GenerateFPSequence() 368 __ Fcvt(PickV(other_size), PickV(size)); in GenerateFPSequence()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | charconv_bigint.h | 268 int other_size, int step); 270 void MultiplyBy(int other_size, const uint32_t* other_words) { in MultiplyBy() argument 273 (std::min)(original_size + other_size - 2, max_words - 1); in MultiplyBy() 275 MultiplyStep(original_size, other_words, other_size, step); in MultiplyBy()
|
D | charconv_bigint.cc | 318 int other_size, int step) { in MultiplyStep() argument 324 for (; this_i >= 0 && other_i < other_size; --this_i, ++other_i) { in MultiplyStep()
|
/third_party/node/deps/v8/src/heap/base/ |
D | worklist.h | 173 size_t other_size = 0; in Merge() local 178 other_size = other->size_.load(std::memory_order_relaxed); in Merge() 190 size_.fetch_add(other_size, std::memory_order_relaxed); in Merge() 202 size_t other_size = other->size_.exchange( in Swap() local 204 size_.store(other_size, std::memory_order_relaxed); in Swap()
|
/third_party/node/deps/v8/src/heap/ |
D | memory-measurement.cc | 156 size_t other_size = context_and_size.second; in MeasurementComplete() local 157 result_builder.AddOther(other_size, other_size, in MeasurementComplete() 158 other_size + shared_size); in MeasurementComplete()
|
/third_party/protobuf/src/google/protobuf/ |
D | reflection_internal.h | 310 int other_size = other_mutator->Size(other_data); in Swap() local 311 for (int i = 0; i < other_size; ++i) { in Swap()
|
D | repeated_field.h | 1811 int other_size = other.current_size_; 1813 void** new_elements = InternalExtend(other_size); 1815 (this->*inner_loop)(new_elements, other_elements, other_size, 1817 current_size_ += other_size;
|
/third_party/python/Objects/ |
D | bytearrayobject.c | 1007 Py_ssize_t self_size, other_size; in bytearray_richcompare() local 1034 other_size = other_bytes.len; in bytearray_richcompare() 1036 if (self_size != other_size && (op == Py_EQ || op == Py_NE)) { in bytearray_richcompare() 1044 Py_MIN(self_size, other_size)); in bytearray_richcompare() 1054 Py_RETURN_RICHCOMPARE(self_size, other_size, op); in bytearray_richcompare()
|
D | setobject.c | 1488 Py_ssize_t pos = 0, other_size; in set_difference() local 1492 other_size = PySet_GET_SIZE(other); in set_difference() 1495 other_size = PyDict_GET_SIZE(other); in set_difference() 1503 if ((PySet_GET_SIZE(so) >> 2) > other_size) { in set_difference()
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_fs_copy_propagation.cpp | 507 unsigned other_size = inst->src[other_src].file == VGRF ? in try_copy_propagate() local 511 if (other_size + prop_src_size > 15) in try_copy_propagate()
|
/third_party/json/tests/thirdparty/doctest/ |
D | doctest.h | 3277 const unsigned other_size = other.size(); 3278 const unsigned total_size = my_old_size + other_size; 3283 memcpy(buf + my_old_size, other.c_str(), other_size + 1); 3297 memcpy(data.ptr + my_old_size, other.c_str(), other_size + 1); 3303 memcpy(data.ptr + my_old_size, other.c_str(), other_size + 1); 3319 memcpy(data.ptr + my_old_size, other.c_str(), other_size + 1);
|
/third_party/ffmpeg/fftools/ |
D | ffmpeg.c | 1587 uint64_t video_size = 0, audio_size = 0, extra_size = 0, other_size = 0; in print_final_stats() local 1600 default: other_size += ost->data_size; break; in print_final_stats() 1616 other_size / 1024.0, in print_final_stats()
|