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

1 2 3

  /external/libmojo/mojo/public/cpp/bindings/
array_traits_standard.h 35 static bool Resize(Array<T>& input, size_t size) {
36 input.resize(size);
array_traits_stl.h 45 static bool Resize(std::vector<T>& input, size_t size) {
array_traits_wtf.h 32 static bool Resize(WTFArray<U>& input, size_t size) {
33 input.resize(size);
array_traits_wtf_vector.h 39 static bool Resize(WTF::Vector<U>& input, size_t size) {
40 input.resize(size);
array_traits_carray.h 42 static bool Resize(CArray<T>& input, size_t size) {
  /frameworks/base/media/mca/filterfw/native/core/
native_frame.cpp 52 bool NativeFrame::Resize(int newSize) {
  /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);
payload.h 40 void Resize(std::size_t size) {
41 buffer_.resize(size);
53 buffer_.resize(offset + size);
  /system/nvram/messages/
blob.cpp 66 bool Blob::Resize(size_t size) {
  /external/compiler-rt/lib/tsan/rtl/
tsan_vector.h 80 void Resize(uptr size) {
tsan_clock.cc 173 // Check if we need to resize dst.
175 dst->Resize(c, nclk_);
220 // Check if we need to resize dst.
222 dst->Resize(c, nclk_);
300 void SyncClock::Resize(ClockCache *c, uptr nclk) {
  /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);
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTArray.h 198 EPVRTError Resize(const unsigned int uiSize)
  /external/v8/src/compiler/
node-cache.cc 32 bool NodeCache<Key, Hash, Pred>::Resize(Zone* zone) {
91 if (!Resize(zone)) break; // Don't grow past the maximum size.
  /external/webrtc/webrtc/test/linux/
glx_renderer.cc 89 Resize(width_, height_);
119 void GlxRenderer::Resize(size_t width, size_t height) {
150 Resize(static_cast<size_t>(frame.width()),
  /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/
test.h 67 Matrix(int rows, int cols) : Map(nullptr, 0, 0, 0) { Resize(rows, cols); }
72 Resize(other.rows_, other.cols_);
82 void Resize(int rows, int cols) {
86 storage.resize(size());
  /external/v8/src/
identity-map.cc 77 Resize(); // Should only have to resize once, since we grow 4x.
166 void IdentityMapBase::Resize() {
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Resize.java 22 public class Resize extends TestBase {
29 public Resize(boolean useIntrinsic) {
  /system/core/libunwindstack/
Memory.h 59 void Resize(size_t size) { raw_.resize(size); }
  /system/vold/fs/
Ext4.cpp 158 status_t Resize(const std::string& source, unsigned long numSectors) {
  /art/runtime/gc/accounting/
atomic_stack.h 181 void Resize(size_t new_capacity) {
  /art/runtime/
indirect_reference_table.cc 203 bool IndirectReferenceTable::Resize(size_t new_size, std::string* error_msg) {
251 if (!Resize(max_entries_ * 2, &error_msg)) {
  /external/skia/src/core/
SkBitmapScaler.cpp 19 // resize operation.
208 bool SkBitmapScaler::Resize(const SkPixmap& result, const SkPixmap& source, ResizeMethod method) {
232 bool SkBitmapScaler::Resize(SkBitmap* resultPtr, const SkPixmap& source, ResizeMethod method,
247 if (!result.peekPixels(&resultPM) || !Resize(resultPM, source, method)) {

Completed in 1983 milliseconds

1 2 3