Searched refs:resize (Results 1 - 25 of 1818) sorted by relevance

1234567891011>>

/external/deqp/external/vulkancts/framework/vulkan/
H A DvkWsiPlatform.cpp31 void Window::resize (const tcu::UVec2&) function in class:vk::wsi::Window
33 TCU_THROW(InternalError, "resize() called on window not supporting it");
/external/eigen/doc/snippets/
H A DMatrix_resize_int.cpp2 v.resize(3);
4 w.resize(3); // this is legal, but has no effect
H A DMatrix_resize_NoChange_int.cpp2 m.resize(NoChange, 5);
H A DMatrix_resize_int_NoChange.cpp2 m.resize(5, NoChange);
H A DMatrix_resize_int_int.cpp4 cout << "let's resize m to 3x2. This is a conservative resizing because 2*3==3*2." << endl;
5 m.resize(3,2);
7 cout << "now let's resize m to size 2x2. This is NOT a conservative resizing, so it becomes uninitialized:" << endl;
8 m.resize(2,2);
/external/libcxx/test/std/containers/sequences/vector.bool/
H A Dresize_size.pass.cpp13 // void resize(size_type sz);
24 v.resize(50);
27 v.resize(200);
31 v.resize(300); // check the case when resizing and we already have room
38 v.resize(50);
41 v.resize(200);
45 v.resize(300); // check the case when resizing and we already have room
H A Dresize_size_value.pass.cpp13 // void resize(size_type sz, const value_type& x);
24 v.resize(50, 1);
28 v.resize(200, 1);
39 v.resize(50, 1);
43 v.resize(200, 1);
/external/tensorflow/tensorflow/contrib/lite/examples/label_image/
H A Dbitmap_helpers.h29 void resize(T* out, uint8_t* in, int image_height, int image_width,
34 template void resize<uint8_t>(uint8_t*, unsigned char*, int, int, int, int, int,
36 template void resize<float>(float*, unsigned char*, int, int, int, int, int,
/external/f2fs-tools/man/
H A DMakefile.am3 dist_man_MANS = mkfs.f2fs.8 fsck.f2fs.8 dump.f2fs.8 defrag.f2fs.8 resize.f2fs.8 sload.f2fs.8
/external/libcxx/test/std/containers/sequences/vector/vector.capacity/
H A Dresize_size.pass.cpp12 // void resize(size_type sz);
27 v.resize(50);
31 v.resize(200);
39 v.resize(50);
43 v.resize(200);
51 v.resize(50);
55 v.resize(200);
63 v.resize(50);
67 v.resize(200);
74 v.resize(5
[all...]
H A Dresize_size_value.pass.cpp12 // void resize(size_type sz, const value_type& x);
24 v.resize(50, 1);
28 v.resize(200, 1);
40 v.resize(50, 1);
43 v.resize(200, 1);
51 v.resize(50, 1);
56 v.resize(200, 1);
67 v.resize(50, 1);
71 v.resize(200, 1);
/external/boringssl/src/tool/
H A Dfile.cc28 out->resize(128);
34 out->resize(len);
47 out->resize(cap);
/external/eigen/doc/examples/
H A Dtut_matrix_resize_fixed_size.cpp9 m.resize(4,4); // no operation
H A Dtut_matrix_resize.cpp9 m.resize(4,3);
14 v.resize(5);
/external/libchrome/base/
H A Dbase64.cc15 temp.resize(modp_b64_encode_len(input.size())); // makes room for null byte
20 temp.resize(output_size); // strips off null byte
26 temp.resize(modp_b64_decode_len(input.size()));
34 temp.resize(output_size);
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
H A Dresize_size.pass.cpp12 // void resize(size_type n);
26 c.resize(0);
28 c.resize(10);
30 c.resize(20);
32 c.resize(5);
34 c.resize(0);
43 c.resize(3);
49 c.resize(6);
58 c.resize(6);
72 c.resize(
[all...]
/external/libcxx/test/std/numerics/numarray/template.valarray/valarray.members/
H A Dresize.pass.cpp14 // void resize(size_t n, value_type x = value_type());
27 v1.resize(8);
31 v1.resize(0);
33 v1.resize(80);
37 v1.resize(40);
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.cpp24 WARegs.resize(MF.getRegInfo().getNumVirtRegs(), Reg);
/external/libcxx/test/std/containers/sequences/list/list.capacity/
H A Dresize_size.pass.cpp12 // void resize(size_type sz);
23 l.resize(2);
30 l.resize(10);
39 l.resize(5);
45 l.resize(20);
53 l.resize(2);
60 l.resize(10);
69 l.resize(5);
75 l.resize(20);
/external/sfntly/cpp/src/test/
H A Dmemory_io_test.cc38 test_buffer.resize(kTestBufferLen);
52 b.resize(7);
56 b.resize(17);
62 b.resize(10);
67 b.resize(10);
77 b.resize(10);
86 test_buffer.resize(kTestBufferLen);
/external/swiftshader/third_party/LLVM/unittests/ADT/
H A DBitVectorTest.cpp29 Vec.resize(5, true);
37 Vec.resize(11);
60 Vec.resize(23, true);
61 Vec.resize(25, false);
62 Vec.resize(26, true);
63 Vec.resize(29, false);
64 Vec.resize(33, true);
65 Vec.resize(57, false);
77 Vec.resize(61, false);
81 Alt.resize(
[all...]
H A DSmallBitVectorTest.cpp26 Vec.resize(5, true);
34 Vec.resize(11);
57 Vec.resize(23, true);
58 Vec.resize(25, false);
59 Vec.resize(26, true);
60 Vec.resize(29, false);
61 Vec.resize(33, true);
62 Vec.resize(57, false);
74 Vec.resize(61, false);
78 Alt.resize(
[all...]
/external/libese/libese-hw/tests/
H A Dese_hw_echo_tests.cpp46 apdu.resize(apdu_len, 'A');
47 apdu_reply.resize(256, 'B');
49 apdu_reply.resize(apdu_len);
/external/perfetto/src/base/
H A Dfile_utils.cc41 out->resize(i + static_cast<size_t>(buf.st_size));
47 out->resize(out->size() + kBufSize);
53 out->resize(i);
/external/deqp/framework/delibs/decpp/
H A DdePoolString.cpp34 str.resize(size());
43 resize(size()+len);
51 resize(size()+str.length());
59 resize(size()+str.size());

Completed in 1700 milliseconds

1234567891011>>