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

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/external/vulkancts/framework/vulkan/
vkWsiPlatform.cpp 31 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/
Matrix_resize_int.cpp 2 v.resize(3);
4 w.resize(3); // this is legal, but has no effect
Matrix_resize_NoChange_int.cpp 2 m.resize(NoChange, 5);
Matrix_resize_int_NoChange.cpp 2 m.resize(5, NoChange);
Matrix_resize_int_int.cpp 4 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/
resize_size.pass.cpp 13 // 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
resize_size_value.pass.cpp 13 // 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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/
resize_size.pass.cpp 13 // 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
resize_size_value.pass.cpp 13 // 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/
bitmap_helpers.h 29 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/
Makefile.am 3 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/
resize_size.pass.cpp 12 // 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(50)
    [all...]
resize_size_value.pass.cpp 12 // 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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.capacity/
resize_size.pass.cpp 12 // 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(50)
    [all...]
  /build/kati/
stringprintf.cc 24 str.resize(128);
32 str.resize(ret);
35 str.resize(ret + 1);
  /external/boringssl/src/tool/
file.cc 28 out->resize(128);
34 out->resize(len);
47 out->resize(cap);
  /external/eigen/doc/examples/
tut_matrix_resize_fixed_size.cpp 9 m.resize(4,4); // no operation
tut_matrix_resize.cpp 9 m.resize(4,3);
14 v.resize(5);
  /external/libchrome/base/
base64.cc 15 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/
resize_size.pass.cpp 12 // 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(0)
    [all...]
  /external/libcxx/test/std/numerics/numarray/template.valarray/valarray.members/
resize.pass.cpp 14 // 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/
WebAssemblyMachineFunctionInfo.cpp 24 WARegs.resize(MF.getRegInfo().getNumVirtRegs(), Reg);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
resize_size.pass.cpp 12 // 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(0)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.valarray/valarray.members/
resize.pass.cpp 14 // 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/libcxx/test/std/containers/sequences/list/list.capacity/
resize_size.pass.cpp 12 // 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);

Completed in 278 milliseconds

1 2 3 4 5 6 7 8 91011>>