Searched defs:resize (Results 26 - 50 of 158) sorted by relevance

1234567

/external/eigen/test/
H A Darray_for_matrix.cpp183 template<typename MatrixTraits> void resize(const MatrixTraits& t) function
199 m.array().resize(rows+1,cols+1);
201 a2.matrix().resize(rows+1,cols+1);
203 v.array().resize(cols);
205 a1.matrix().resize(cols);
248 CALL_SUBTEST_4( resize(MatrixXcf(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
249 CALL_SUBTEST_5( resize(MatrixXf(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
250 CALL_SUBTEST_6( resize(MatrixXi(internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
/external/llvm/include/llvm/ADT/
H A DPackedVector.h108 void resize(unsigned N) { Bits.resize(N << (BitNum-1)); } function in class:llvm::PackedVector
118 resize(size()+1);
/external/qemu/android/base/containers/
H A DPodVector.cpp64 resize(other.byteSize(), 1U);
68 void PodVectorBase::resize(size_t newSize, size_t itemSize) { function in class:android::base::PodVectorBase
71 "Trying to resize vector to %zd items of %zd bytes "
145 resize(count - 1U, itemSize);
152 resize(count + 1, itemSize);
/external/skia/src/gpu/gl/
H A DGrGLVertexArray.h53 this->resize(arrayCount);
56 void resize(int newCount) { function in class:GrGLAttribArrayState
/external/stlport/stlport/stl/
H A D_list.c95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) { function in class:_Alloc
H A D_slist.c106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) { function in class:_Alloc
/external/stlport/test/unit/
H A Dlist_test.cpp26 CPPUNIT_TEST(resize);
41 void resize();
195 void ListTest::resize() function in class:ListTest
199 l.resize(5, 1);
209 l.resize(3);
220 l.resize(5);
/external/valgrind/main/coregrind/
H A Dm_hashtable.c88 static void resize ( VgHashTable table ) function
123 chains = VG_(calloc)("hashtable.resize.1", 1, sz);
150 resize(table);
/external/chromium_org/base/memory/
H A Dscoped_vector.h86 void resize(size_t new_size) { function in class:ScopedVector
89 v_.resize(new_size);
/external/chromium_org/content/renderer/
H A Drender_widget_fullscreen_pepper.cc152 virtual void resize(const WebSize& size) { function in class:content::__anon7833::PepperWidget
/external/chromium_org/mojo/public/cpp/bindings/
H A Darray.h87 void resize(size_t size) { function in class:mojo::Array
139 result.resize(input.size());
/external/chromium_org/third_party/WebKit/Source/platform/
H A DWidget.h67 void resize(int w, int h) { setFrameRect(IntRect(x(), y(), w, h)); } function in class:blink::Widget
68 void resize(const IntSize& s) { setFrameRect(IntRect(location(), s)); } function in class:blink::Widget
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPagePopupImpl.cpp211 resize(m_popupClient->contentSize());
242 frame->view()->resize(m_popupClient->contentSize());
346 void WebPagePopupImpl::resize(const WebSize& newSize) function in class:blink::WebPagePopupImpl
352 toLocalFrame(m_page->mainFrame())->view()->resize(newSize);
H A DWebPopupMenuImpl.cpp180 void WebPopupMenuImpl::resize(const WebSize& newSize) function in class:blink::WebPopupMenuImpl
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuilder.cpp77 void StringBuilder::resize(unsigned newSize) function in class:WTF::StringBuilder
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DSwapChain9.cpp69 EGLint SwapChain9::resize(int backbufferWidth, int backbufferHeight) function in class:rx::SwapChain9
/external/chromium_org/third_party/angle/util/win32/
H A DWin32Window.cpp502 bool Win32Window::resize(int width, int height) function in class:Win32Window
/external/chromium_org/third_party/icu/source/common/
H A Dcmemory.h318 inline T *resize(int32_t newCapacity, int32_t length=0);
363 inline T *MaybeStackArray<T, stackCapacity>::resize(int32_t newCapacity, int32_t length) { function in class:MaybeStackArray
366 ::fprintf(::stderr,"MaybeStacArray (resize) alloc %d * %lu\n", newCapacity,sizeof(T));
496 inline H *resize(int32_t newCapacity, int32_t length=0);
538 inline H *MaybeStackHeaderAndArray<H, T, stackCapacity>::resize(int32_t newCapacity, function in class:MaybeStackHeaderAndArray
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.cpp84 that.resize();
242 bool BitSet::resize(unsigned int nBits) function in class:nv50_ir::BitSet
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dcompat.hpp102 resize(size_t m, T x = T()) { function in class:clover::compat::vector
241 buf.resize(offset + n);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dralloc.c132 resize(void *ptr, size_t size) function
168 return resize(ptr, size);
345 both = resize(*dest, existing_length + n + 1);
474 ptr = resize(*str, *start + new_length + 1);
/external/chromium_org/third_party/re2/util/
H A Dsparse_array.h88 // array through a call to erase(), erase_existing() or resize(). They
137 void resize(int max_size);
270 void SparseArray<Value>::resize(int new_max_size) { function in class:re2::SparseArray
285 dense_.resize(new_max_size);
423 dense_.resize(max_size);
/external/chromium_org/third_party/skia/src/core/
H A DSkTDynamicHash.h245 this->resize(fCapacity > 0 ? fCapacity * 2 : 4);
249 void resize(int newCapacity) { function in class:SkTDynamicHash
/external/chromium_org/third_party/skia/src/views/
H A DSkWindow.cpp60 this->resize(fBitmap.width(), fBitmap.height(), ct);
63 void SkWindow::resize(int width, int height, SkColorType ct) { function in class:SkWindow
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dscoped_vector.h96 void resize(size_t new_size) { function in class:webrtc::ScopedVector
99 v_.resize(new_size);

Completed in 895 milliseconds

1234567