Home
last modified time | relevance | path

Searched refs:other_size (Results 1 - 12 of 12) sorted by relevance

/third_party/node/deps/v8/src/base/
H A 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(); variable
82 memcpy(begin_, other.begin_, sizeof(T) * other_size);
83 end_ = begin_ + other_size;
/third_party/vixl/benchmarks/aarch64/
H A Dbench-utils.cc363 unsigned other_size = PickBool() ? size * 2 : size / 2; in GenerateFPSequence() local
364 if (other_size < kHRegSize) other_size = kDRegSize; in GenerateFPSequence()
365 if (other_size > kDRegSize) other_size = kHRegSize; in GenerateFPSequence()
369 __ Fcvt(PickV(other_size), PickV(size)); in GenerateFPSequence()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcharconv_bigint.h265 // MultiplyStep(). `other_words` and `other_size` are the contents of our
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()
H A Dcharconv_bigint.cc318 int other_size, int step) { in MultiplyStep()
324 for (; this_i >= 0 && other_i < other_size; --this_i, ++other_i) { in MultiplyStep()
316 MultiplyStep(int original_size, const uint32_t* other_words, int other_size, int step) MultiplyStep() argument
/third_party/node/deps/v8/src/heap/base/
H A 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/
H A 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/
H A Dreflection_internal.h310 int other_size = other_mutator->Size(other_data); variable
311 for (int i = 0; i < other_size; ++i) {
H A Drepeated_field.h1811 int other_size = other.current_size_; in MergeFromInternal() local
1813 void** new_elements = InternalExtend(other_size); in MergeFromInternal()
1815 (this->*inner_loop)(new_elements, other_elements, other_size, in MergeFromInternal()
1817 current_size_ += other_size; in MergeFromInternal()
/third_party/python/Objects/
H A Dsetobject.c1500 Py_ssize_t pos = 0, other_size; in set_difference() local
1504 other_size = PySet_GET_SIZE(other); in set_difference()
1507 other_size = PyDict_GET_SIZE(other); in set_difference()
1515 if ((PySet_GET_SIZE(so) >> 2) > other_size) { in set_difference()
/third_party/mesa3d/src/intel/compiler/
H A 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/
H A 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/
H A Dffmpeg.c1392 uint64_t video_size = 0, audio_size = 0, extra_size = 0, other_size = 0; in print_final_stats() local
1405 default: other_size += ost->data_size; break; in print_final_stats()
1421 other_size / 1024.0, in print_final_stats()

Completed in 35 milliseconds