HomeSort by relevance Sort by last modified time
    Searched refs:Resize (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /art/dexlayout/
dex_container.h 43 // Resize the backing storage.
44 virtual void Resize(size_t size) = 0;
68 void Resize(size_t size) OVERRIDE {
69 data_.resize(size, 0u);
  /device/google/cuttlefish_common/common/libs/auto_resources/
auto_resources.cpp 67 bool AutoFreeBuffer::Resize(size_t newsize) {
84 if (!Resize(newsz)) return false;
91 if (!Resize(offset + new_data_size)) return false;
100 // If reservation is not long enough, resize and try again.
115 if (!Resize(printf_size + 1)) return 0;
auto_free_buffer_test.cpp 50 buffer_.Resize(kImmutableReserveSize);
92 buffer_.Resize(kTruncLength);
95 buffer_.Resize(kTruncLength + 1);
  /frameworks/base/media/mca/filterfw/native/core/
native_frame.h 52 // Resize the frame. You can only resize to a size that fits within the frame's capacity.
53 // Returns true if the resize was successful.
54 bool Resize(int newSize);
native_frame.cpp 52 bool NativeFrame::Resize(int newSize) {
  /external/webrtc/webrtc/test/linux/
glx_renderer.h 36 void Resize(size_t width, size_t height);
  /system/core/libunwindstack/tests/
MemoryBufferTest.cpp 45 memory_->Resize(256);
65 memory_->Resize(100);
75 memory_->Resize(100);
82 memory_->Resize(256);
  /system/nvram/messages/include/nvram/messages/
blob.h 57 // Resize the blob to |size|. Existing data within the new |size| limit is
63 // backing this |Blob|. You must call |data()| after |Resize()| returns to
65 bool Resize(size_t size) NVRAM_WARN_UNUSED_RESULT;
  /system/vold/fs/
Ext4.h 35 status_t Resize(const std::string& source, unsigned long numSectors);
  /system/nvram/core/tests/
nvram_manager_test.cpp 42 ASSERT_TRUE(header.allocated_indices.Resize(1));
84 ASSERT_TRUE(space.contents.Resize(10));
88 ASSERT_TRUE(space_blob.Resize(space_blob.size() + 10));
94 ASSERT_TRUE(header.allocated_indices.Resize(1));
99 ASSERT_TRUE(header_blob.Resize(header_blob.size() + 10));
124 ASSERT_TRUE(space.contents.Resize(10));
126 ASSERT_TRUE(space.contents.Resize(20));
133 ASSERT_TRUE(header.allocated_indices.Resize(3));
169 ASSERT_TRUE(space.contents.Resize(10));
179 ASSERT_TRUE(header.allocated_indices.Resize(2))
    [all...]
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Resize.java 22 public class Resize extends TestBase {
29 public Resize(boolean useIntrinsic) {
  /external/libbrillo/brillo/streams/
memory_containers.cc 64 if (GetSize() < new_size && !Resize(new_size, error))
84 bool ContiguousReadOnlyBufferBase::Resize(size_t /* new_size */,
106 bool StringPtr::Resize(size_t new_size, ErrorPtr* /* error */) {
107 string_ptr_->resize(new_size);
memory_containers_unittest.cc 29 MOCK_METHOD2(Resize, bool(size_t, ErrorPtr*));
144 EXPECT_CALL(container_, Resize(130, _)).WillOnce(Return(true));
159 EXPECT_CALL(container_, Resize(160, _)).WillOnce(Return(true));
172 Error::AddTo(error, FROM_HERE, "domain", "write_error", "resize error");
178 EXPECT_CALL(container_, Resize(160, _))
188 EXPECT_EQ("resize error", error->GetMessage());
199 EXPECT_CALL(container_, Resize(160, _)).WillOnce(Return(true));
  /external/libmojo/mojo/public/cpp/bindings/
array_traits_wtf_vector.h 39 static bool Resize(WTF::Vector<U>& input, size_t size) {
40 input.resize(size);
  /external/tensorflow/tensorflow/core/lib/random/
weighted_picker.h 85 // Resize the weighted picker so that it has "N" elements.
92 // It is efficient to use repeated calls to Resize(num_elements() + 1)
94 void Resize(int N);
weighted_picker_test.cc 66 picker.Resize(10);
75 picker.Resize(10);
83 picker.Resize(5);
85 picker.Resize(2);
87 picker.Resize(1);
weighted_picker.cc 156 Resize(N);
178 Resize(num_elements() + 1);
182 void WeightedPicker::Resize(int new_size) {
  /external/webrtc/webrtc/test/win/
d3d_renderer.h 39 void Resize(size_t width, size_t height);
  /development/vndk/tools/header-checker/header-abi-dumper/src/
fixed_argv.h 47 void Resize(int argc) {
49 argv_.resize(argc);
102 fixed_argv_.Resize(argc_);
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
matrix.h 72 Resize();
73 scratch_data_.resize(num_rows_ * num_columns_);
74 scratch_elements_.resize(num_rows_);
81 scratch_data_.resize(num_rows_ * num_columns_);
82 scratch_elements_.resize(num_rows_);
94 Resize(num_rows, num_columns);
101 Resize(1, num_rows);
109 void Resize(size_t num_rows, size_t num_columns) {
113 Resize();
136 Resize(num_columns_, num_rows_)
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
thread_local_buffer.h 58 static void Resize(std::size_t size) {
59 PDX_TRACE_NAME("ThreadLocalBuffer::Resize");
61 buffer_->resize(size);
87 Resize(size);
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Resize.java 31 public class Resize extends TestBase {
40 public Resize(boolean useIntrinsic) {
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Resize.java 31 public class Resize extends TestBase {
40 public Resize(boolean useIntrinsic) {
  /external/gemmlowp/test/
benchmark_all_sizes.cc 64 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); }
69 Resize(other.rows_, other.cols_);
79 void Resize(int rows, int cols) {
83 storage.resize(size());
118 lhs.Resize(rows, depth);
119 rhs.Resize(depth, cols);
120 result.Resize(rows, cols);
170 lhs.Resize(rows, depth);
171 rhs.Resize(depth, cols);
172 result.Resize(rows, cols)
    [all...]
test.h 62 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); }
67 Resize(other.rows_, other.cols_);
77 void Resize(int rows, int cols) {
81 storage.resize(size());

Completed in 880 milliseconds

1 2 3 4 5 6 7