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

1 2

  /external/opencv3/modules/core/misc/java/test/
SizeTest.java 11 Size sz2; field in class:SizeTest
18 sz2 = new Size(-1, -1);
33 assertFalse(sz1.equals(sz2));
35 sz2 = sz1.clone();
36 assertTrue(sz1.equals(sz2));
45 sz2.set(vals1);
46 assertEquals(0., sz2.width);
47 assertEquals(0., sz2.height);
65 sz2 = new Size(vals);
67 assertEquals(10., sz2.width)
    [all...]
  /external/compiler-rt/test/msan/Linux/
sunrpc_bytes.cc 31 unsigned sz2; local
32 res = xdr_bytes(&xdrs, &sp2, &sz2, sizeof(s2));
34 assert(sz == sz2);
  /external/compiler-rt/test/tsan/
unaligned_norace.cc 49 for (int sz2 = 0; sz2 < 3; sz2++) {
53 // printf("thr=%d off=%d sz1=%d sz2=%d rw=%d p=%p\n",
54 // main, off, sz1, sz2, rw, p);
58 // printf("thr=%d off=%d sz1=%d sz2=%d rw=%d p=%p\n",
59 // main, off, sz1, sz2, rw, p);
60 access(p, sz2, rw);
  /dalvik/dexgen/src/com/android/dexgen/rop/
LineNumberList.java 45 int sz2 = list2.size(); local
46 LineNumberList result = new LineNumberList(sz1 + sz2);
52 for (int i = 0; i < sz2; i++) {
  /dalvik/dx/src/com/android/dx/cf/code/
LineNumberList.java 45 int sz2 = list2.size(); local
46 LineNumberList result = new LineNumberList(sz1 + sz2);
52 for (int i = 0; i < sz2; i++) {
LocalVariableList.java 49 int sz2 = list2.size(); local
50 LocalVariableList result = new LocalVariableList(sz1 + sz2);
56 for (int i = 0; i < sz2; i++) {
LocalsArraySet.java 265 int sz2 = other.secondaries.size(); local
266 int sz = Math.max(sz1, sz2);
271 LocalsArray la2 = (i < sz2 ? other.secondaries.get(i) : null);
  /external/clang/test/SemaCXX/
c99-variable-length-array.cpp 147 static const int sz2; member in struct:pr18633::A1
149 const int A1::sz2 = 11; member in class:pr18633::A1
156 int arr[A1::sz2];
  /external/opencv3/samples/python2/
deconvolution.py 53 sz2 = sz // 2
54 A[:,2] = (sz2, sz2) - np.dot(A[:,:2], ((d-1)*0.5, 0))
  /external/opencv3/modules/ts/src/
ocl_test.cpp 259 size_t sz2 = ob2.size(); local
261 if (sz1 != sz2)
262 return sz1 > sz2 ? (double)(sz1 - sz2) : (double)(sz2 - sz1);
265 if (sz1 == 0 && sz2 == 0)
  /external/opencv3/modules/stitching/src/
util.cpp 101 bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi)
105 int x_br = std::min(tl1.x + sz1.width, tl2.x + sz2.width);
106 int y_br = std::min(tl1.y + sz1.height, tl2.y + sz2.height);
  /external/opencv3/modules/ml/test/
test_save_load.cpp 86 size_t sz1 = 0, sz2 = 0; local
93 sz2 = ftell(fs2);
97 if( sz1 != sz2 )
  /external/valgrind/VEX/priv/
host_arm_defs.c 3996 UInt sz2 = i->ARMin.NUnary.size & 1; local
4215 UInt sz2 = i->ARMin.NDual.size & 1; local
4250 UInt sz2 = i->ARMin.NBinary.size & 1; local
4476 UInt sz2 = i->ARMin.NShift.size & 1; local
    [all...]
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
util.hpp 153 CV_EXPORTS bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi);
  /external/icu/icu4c/source/tools/makeconv/
makeconv.cpp 113 uint32_t sz2; local
158 sz2 = udata_finish(mem, status);
159 if(size != sz2)
161 fprintf(stderr, "error: wrote %u bytes to the .cnv file but counted %u bytes\n", (int)sz2, (int)size);
166 printf("- Wrote %u bytes to the udata.\n", (int)sz2);
  /external/ltrace/
value.c 469 size_t sz2 = type_sizeof(val2->inferior, val2->type); local
470 if (sz1 == (size_t)-1 || sz2 == (size_t)-1)
472 if (sz1 != sz2)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv6/
vp8_fast_quantize_b_armv6.asm 59 ssat16 r11, #1, r12 ; [sz3 | sz2]
60 eor r12, r12, r11 ; [z3 ^ sz3 | z2 ^ sz2]
81 eor r10, r10, r11 ; [(y3 ^ sz3) | (y2 ^ sz2)]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_debug.c 402 unsigned sz2 = util_logbase2(sz); local
403 debug_printf("%c", bits[MIN2(sz2,32)]);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 59 vshr.s16 q12, q0, #15 ; sz2
87 veor.s16 q10, q12 ; y2^sz2
  /external/opencv3/modules/features2d/src/
evaluation.cpp 412 Size sz1 = img1.size(), sz2 = img2.size(); local
414 filterEllipticKeyPointsByImageSize( keypoints1t, sz2 );
415 filterEllipticKeyPointsByImageSize( keypoints2, sz2 );
  /external/opencv/cv/src/
cvemd.cpp 453 int sz1 = size1 * (dims + 1), sz2 = size2 * (dims + 1); local
469 for( j = 0; j < sz2; j += dims + 1 )
    [all...]
  /external/opencv3/modules/imgproc/src/
emd.cpp 433 int sz1 = size1 * (dims + 1), sz2 = size2 * (dims + 1); local
449 for( j = 0; j < sz2; j += dims + 1 )
    [all...]
histogram.cpp 854 int sz0 = size[0], sz1 = size[1], sz2 = size[2];
873 (unsigned)idx2 < (unsigned)sz2 )
885 (unsigned)idx2 < (unsigned)sz2 )
    [all...]
  /external/opencv3/modules/core/src/
arithm.cpp 1523 Size sz2 = dims2 <= 2 ? psrc2->size() : Size(); local
1938 Size sz2 = dims2 <= 2 ? psrc2->size() : Size(); local
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
regex.c 775 # define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2) \
776 if (debug) PREFIX(print_double_string) (w, s1, sz1, s2, sz2)
    [all...]

Completed in 1954 milliseconds

1 2