Home
last modified time | relevance | path

Searched refs:other_size (Results 1 – 13 of 13) sorted by relevance

/third_party/node/deps/v8/src/base/
Dsmall-vector.h59 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/
Dbench-utils.cc362 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/
Dcharconv_bigint.h268 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()
Dcharconv_bigint.cc318 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/
Dworklist.h173 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/
Dmemory-measurement.cc156 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/
Dreflection_internal.h310 int other_size = other_mutator->Size(other_data); in Swap() local
311 for (int i = 0; i < other_size; ++i) { in Swap()
Drepeated_field.h1811 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/
Dbytearrayobject.c1007 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()
Dsetobject.c1488 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/
Dbrw_fs_copy_propagation.cpp507 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/
Ddoctest.h3277 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/
Dffmpeg.c1587 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()