HomeSort by relevance Sort by last modified time
    Searched defs:total_width (Results 1 - 9 of 9) sorted by null

  /toolchain/binutils/binutils-2.25/libiberty/
vasprintf.c 70 int total_width = strlen (format) + 1; local
88 total_width += abs (va_arg (ap, int));
91 total_width += strtoul (p, (char **) &p, 10);
98 total_width += abs (va_arg (ap, int));
101 total_width += strtoul (p, (char **) &p, 10);
106 total_width += 30;
126 total_width += 307;
129 total_width += strlen (va_arg (ap, char *));
143 global_total_width = total_width;
145 *result = (char *) malloc (total_width);
    [all...]
  /external/opencv3/modules/core/src/
cuda_host_mem.cpp 251 int total_width = cols * cn; local
253 if ((new_cn > total_width || total_width % new_cn != 0) && new_rows == 0)
254 new_rows = rows * total_width / new_cn;
258 int total_size = total_width * rows;
266 total_width = total_size / new_rows;
268 if (total_width * new_rows != total_size)
272 hdr.step = total_width * elemSize1();
275 int new_width = total_width / new_cn;
277 if (new_width * new_cn != total_width)
    [all...]
array.cpp 2542 int total_width, new_rows, cn; local
2717 int total_width, new_width; local
    [all...]
matrix.cpp 974 int total_width = cols * cn; local
976 if( (new_cn > total_width || total_width % new_cn != 0) && new_rows == 0 )
977 new_rows = rows * total_width / new_cn;
981 int total_size = total_width * rows;
989 total_width = total_size / new_rows;
991 if( total_width * new_rows != total_size )
996 hdr.step[0] = total_width * elemSize1();
999 int new_width = total_width / new_cn;
1001 if( new_width * new_cn != total_width )
    [all...]
  /development/ndk/platforms/android-18/samples/MoreTeapots/jni/
MoreTeapotsRenderer.cpp 109 const float total_width = 500.f; local
110 float gap_x = total_width / (teapot_x_ - 1);
111 float gap_y = total_width / (teapot_y_ - 1);
112 float gap_z = total_width / (teapot_z_ - 1);
113 float offset_x = -total_width / 2.f;
114 float offset_y = -total_width / 2.f;
115 float offset_z = -total_width / 2.f;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_mipmap_tree.h 248 GLuint total_width; member in struct:intel_mipmap_tree
intel_mipmap_tree.c 203 GLuint total_width, total_height; local
242 if (!mt || !mt->total_width || !mt->total_height) {
247 total_width = mt->total_width;
256 total_width = ALIGN(total_width, 64);
264 total_width,
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.cc 495 size_t total_width = (ARRAYSIZE(windows) - 1) * kSeparator; local
500 total_width += windows[i].width;
505 size_t x = (rc.right / 2) - (total_width / 2);
  /external/opencv/cxcore/src/
cxarray.cpp 2937 int total_width, new_rows, cn; local
3108 int total_width, new_width; local
    [all...]

Completed in 581 milliseconds