HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 276 - 300 of 11074) sorted by null

<<11121314151617181920>>

  /external/opencv/cvaux/src/
cvvideo.cpp 54 CvSize size; local
68 size = cvGetMatSize( even );
69 size.width *= CV_ELEM_SIZE( even->type );
71 for( y = 0; y < size.height; y++ )
74 frame->data.ptr + frame->step*y*2, size.width );
76 frame->data.ptr + frame->step*(y*2+1), size.width );
  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
buffer.h 78 * The size of this struct is not a part of the public ABI and it is not meant
91 * Size of data in bytes.
93 int size; member in struct:AVBufferRef
97 * Allocate an AVBuffer of the given size using av_malloc().
99 * @return an AVBufferRef of given size or NULL when out of memory
101 AVBufferRef *av_buffer_alloc(int size);
107 AVBufferRef *av_buffer_allocz(int size);
123 * @param size size of data in bytes
130 AVBufferRef *av_buffer_create(uint8_t *data, int size,
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfStringVectorAttribute.cpp 60 int size = _value.size(); local
62 for (int i = 0; i < size; i++)
64 int strSize = _value[i].size();
73 StringVectorAttribute::readValueFrom (IStream &is, int size, int)
77 while (read < size)
81 read += Xdr::size<int>();
  /external/opencv3/modules/core/perf/cuda/
perf_gpumat.cpp 62 const cv::Size size = GET_PARAM(0); local
72 cv::cuda::GpuMat dst(size, type);
78 cv::Mat dst(size, type);
94 const cv::Size size = GET_PARAM(0); local
100 cv::Mat src(size, type);
101 cv::Mat mask(size, CV_8UC1);
131 const cv::Size size = GET_PARAM(0) local
169 const cv::Size size = GET_PARAM(0); local
    [all...]
  /external/opencv3/modules/core/perf/
perf_addWeighted.cpp 14 Size size = get<0>(GetParam()); local
16 Mat src1(size, type);
17 Mat src2(size, type);
22 Mat dst(size, type);
perf_mat.cpp 15 Size size = get<0>(GetParam()); local
17 Mat diagonalMatrix(size.height, size.width, type);
21 int runs = (size.width <= 640) ? 15 : 5;
24 diagonalMatrix = Mat::eye(size, type);
36 Size size = get<0>(GetParam()); local
38 Mat zeroMatrix(size.height, size.width, type)
57 Size size = get<0>(GetParam()); local
79 Size size = get<0>(GetParam()); local
    [all...]
  /external/opencv3/modules/core/test/ocl/
test_matrix_expr.cpp 21 Size size; local
30 size = randomSize(1, MAX_VALUE);
42 Mat m = Mat::eye(size, type);
43 UMat um = UMat::eye(size, type);
57 Mat m = Mat::zeros(size, type);
58 UMat um = UMat::zeros(size, type);
72 Mat m = Mat::ones(size, type);
73 UMat um = UMat::ones(size, type);
  /external/opencv3/modules/cudaimgproc/perf/
perf_bilateral_filter.cpp 52 DEF_PARAM_TEST(Sz_Depth_Cn_KernelSz, cv::Size, MatDepth, MatCn, int);
62 const cv::Size size = GET_PARAM(0); local
73 cv::Mat src(size, type);
perf_color.cpp 52 DEF_PARAM_TEST(Sz_Depth_Code, cv::Size, MatDepth, CvtColorInfo);
79 const cv::Size size = GET_PARAM(0); local
83 cv::Mat src(size, CV_MAKETYPE(depth, info.scn));
118 const cv::Size size = GET_PARAM(0); local
122 cv::Mat src(size, CV_MAKETYPE(depth, info.scn));
153 DEF_PARAM_TEST(Sz_Code, cv::Size, DemosaicingCode);
159 const cv::Size size = GET_PARAM(0) local
197 const cv::Size size = GetParam(); local
230 const cv::Size size = GET_PARAM(0); local
    [all...]
  /external/opencv3/modules/cudawarping/test/
test_pyramids.cpp 52 PARAM_TEST_CASE(PyrDown, cv::cuda::DeviceInfo, cv::Size, MatType, UseRoi)
55 cv::Size size; local
62 size = GET_PARAM(1);
72 cv::Mat src = randomMat(size, type);
74 cv::cuda::GpuMat dst = createMat(cv::Size((size.width + 1) / 2, (size.height + 1) / 2), type, useRoi);
92 PARAM_TEST_CASE(PyrUp, cv::cuda::DeviceInfo, cv::Size, MatType, UseRoi)
95 cv::Size size local
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/util/
tuple.hpp 67 enum { size = 1 }; enumerator in enum:cv::cudev::TupleTraits::__anon22420
73 enum { size = tuple_size< tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value }; enumerator in enum:cv::cudev::TupleTraits::__anon22422
  /external/proguard/src/proguard/gui/splash/
VariableSizeFont.java 26 * This VariableFont varies in size with respect to its Timing.
33 private final VariableDouble size; field in class:VariableSizeFont
42 * @param size the variable size of the font.
44 public VariableSizeFont(Font font, VariableDouble size)
47 this.size = size;
55 float s = (float)size.getDouble(time);
  /external/replicaisland/src/com/replica/replicaisland/
HitPointPool.java 23 final int size = getSize(); local
24 for (int x = 0; x < size; x++) {
  /external/selinux/libselinux/src/
canonicalize_context.c 17 size_t size; local
30 size = selinux_page_size;
31 buf = malloc(size);
36 strncpy(buf, con, size);
42 memset(buf, 0, size);
43 ret = read(fd, buf, size - 1);
47 strncpy(buf, con, size);
compute_member.c 20 size_t size; local
33 size = selinux_page_size;
34 buf = malloc(size);
39 snprintf(buf, size, "%s %s %hu", scon, tcon, unmap_class(tclass));
45 memset(buf, 0, size);
46 ret = read(fd, buf, size - 1);
compute_relabel.c 20 size_t size; local
33 size = selinux_page_size;
34 buf = malloc(size);
39 snprintf(buf, size, "%s %s %hu", scon, tcon, unmap_class(tclass));
45 memset(buf, 0, size);
46 ret = read(fd, buf, size - 1);
get_initial_context.c 18 size_t size; local
32 size = selinux_page_size;
33 buf = malloc(size);
38 memset(buf, 0, size);
39 ret = read(fd, buf, size - 1);
getpeercon.c 17 socklen_t size; local
20 size = INITCONTEXTLEN + 1;
21 buf = malloc(size);
24 memset(buf, 0, size);
26 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size);
30 newbuf = realloc(buf, size);
35 memset(buf, 0, size);
36 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size);
  /external/selinux/libsepol/cil/src/
cil_stack.h 35 int size; member in struct:cil_stack
  /external/selinux/libsepol/src/
symtab.c 17 size_t size; local
22 size = strlen(keyp);
23 for (p = keyp; ((size_t) (p - keyp)) < size; p++)
26 return val & (h->size - 1);
40 int symtab_init(symtab_t * s, unsigned int size)
42 s->table = hashtab_create(symhash, symcmp, size);
  /external/skia/bench/
GMBench.cpp 34 SkISize size = fGM->getISize(); local
35 return SkIPoint::Make(size.fWidth, size.fHeight);
MemoryBench.cpp 41 size_t size = 0; variable
43 while (size < total) {
45 size += inc;
ReadPixBench.cpp 30 SkISize size = canvas->getDeviceSize(); variable
32 int offX = (size.width() - kWindowSize) / kNumStepsX;
33 int offY = (size.height() - kWindowSize) / kNumStepsY;
39 canvas->drawCircle(SkIntToScalar(size.width()/2),
40 SkIntToScalar(size.height()/2),
41 SkIntToScalar(size.width()/2),
WritePixelsBench.cpp 49 SkISize size = canvas->getDeviceSize(); variable
54 bmp.allocN32Pixels(size.width(), size.height());
  /external/skia/experimental/FileReaderApp/
ReaderView.cpp 42 int size = ftell(f) * sizeof(char); local
43 if (size <= fFilePos) {
49 int toBeRead = size - fFilePos;
50 if (size > 0 && toBeRead > 0) {

Completed in 2349 milliseconds

<<11121314151617181920>>