HomeSort by relevance Sort by last modified time
    Searched refs:array_copy (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
nada.cc 130 std::vector<int64_t> array_copy(last_delays_ms, last_delays_ms + size);
131 std::nth_element(array_copy.begin(), array_copy.begin() + size / 2,
132 array_copy.end());
135 return array_copy.at(size / 2);
137 int64_t right = array_copy.at(size / 2);
138 std::nth_element(array_copy.begin(), array_copy.begin() + (size - 1) / 2,
139 array_copy.end());
140 int64_t left = array_copy.at((size - 1) / 2)
    [all...]
  /art/compiler/driver/
compiled_method_storage.cc 38 LengthPrefixedArray<T>* array_copy = new(storage) LengthPrefixedArray<T>(array.size()); local
39 std::copy(array.begin(), array.end(), array_copy->begin());
40 return array_copy;

Completed in 1104 milliseconds