/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/ |
SmallSet.java | 63 public int size() {
method in class:SmallSet
|
SourceInterpreter.java | 55 int size;
local 61 size = 2;
65 size = cst instanceof Long || cst instanceof Double ? 2 : 1;
68 size = Type.getType(((FieldInsnNode) insn).desc).getSize();
71 size = 1;
73 return new SourceValue(size, insn);
82 int size;
local 92 size = 2;
95 size = Type.getType(((FieldInsnNode) insn).desc).getSize();
98 size = 1; 108 int size; local 146 int size; local [all...] |
/external/nanohttpd/fileupload/src/main/java/fi/iki/elonen/ |
NanoFileUpload.java | 66 long size; local 69 size = Long.parseLong(cl1); 71 size = -1L; 74 return size;
|
/external/nanopb-c/tests/decode_unittests/ |
decode_unittests.c | 28 for (i = 0; i < ref->size; i++) 171 struct { size_t size; uint8_t bytes[5]; } d; member in struct:__anon19897 175 TEST((s = S("\x00"), pb_dec_bytes(&s, &f, &d) && d.size == 0)) 176 TEST((s = S("\x01\xFF"), pb_dec_bytes(&s, &f, &d) && d.size == 1 && d.bytes[0] == 0xFF)) 177 TEST((s = S("\x05xxxxx"), pb_dec_bytes(&s, &f, &d) && d.size == 5)) 180 /* Note: the size limit on bytes-fields is not strictly obeyed, as 183 * we use only a single uint8_t to store the size of the field. 252 struct { size_t size; uint8_t bytes[10]; } ref; member in struct:__anon19898 258 ref.size = 1; ref.bytes[0] = 0x55; 261 ref.size = 3; ref.bytes[0] = ref.bytes[1] = ref.bytes[2] = 0x55 [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
HuffmanTest.java | 50 assertEquals(baos.size(), Huffman.get().encodedLength(buf));
|
/external/opencv3/3rdparty/libwebp/webp/ |
mux_types.h | 52 size_t size; member in struct:WebPData 76 if (src->bytes != NULL && src->size != 0) { 77 dst->bytes = (uint8_t*)malloc(src->size); 79 memcpy((void*)dst->bytes, src->bytes, src->size); 80 dst->size = src->size;
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfXdr.h | 56 // size<S>(); returns the size, in bytes, of the 180 write (T &out, const char v[/*n*/], int n); // fixed-size char array 263 read (T &in, char v[/*n*/], int n); // fixed-size char array 281 // Size of the machine-independent 287 size (); 573 write (T &out, const char v[], int n) // fixed-size char array 856 read (T &in, char v[], int n) // fixed-size char array 898 template <> inline int size <bool> () {return 1;} function in namespace:Imf::Xdr 899 template <> inline int size <char> () {return 1; function in namespace:Imf::Xdr 900 template <> inline int size <signed char> () {return 1;} function in namespace:Imf::Xdr 901 template <> inline int size <unsigned char> () {return 1;} function in namespace:Imf::Xdr 902 template <> inline int size <signed short> () {return 2;} function in namespace:Imf::Xdr 903 template <> inline int size <unsigned short> () {return 2;} function in namespace:Imf::Xdr 904 template <> inline int size <signed int> () {return 4;} function in namespace:Imf::Xdr 905 template <> inline int size <unsigned int> () {return 4;} function in namespace:Imf::Xdr 906 template <> inline int size <signed long> () {return 8;} function in namespace:Imf::Xdr 907 template <> inline int size <unsigned long> () {return 8;} function in namespace:Imf::Xdr 908 template <> inline int size <float> () {return 4;} function in namespace:Imf::Xdr 909 template <> inline int size <double> () {return 8;} function in namespace:Imf::Xdr 910 template <> inline int size <half> () {return 2;} function in namespace:Imf::Xdr [all...] |
/external/opencv3/3rdparty/openexr/Imath/ |
ImathInterval.h | 95 T size() const; 197 Interval<T>::size() const function in class:Imath::Interval
|
/external/opencv3/modules/core/misc/java/src/java/ |
core+Range.java | 32 public int size() { method in class:Range
|
/external/opencv3/modules/core/test/ |
test_hal_core.cpp | 135 int size = (hcase / 2) % 4; local 136 size = size == 0 ? 3 : size == 1 ? 4 : size == 2 ? 6 : 15; 140 if( size == 3 ) 143 Mat a0(size, size, depth), a(size, size, depth), b(size, 1, depth), x(size, 1, depth), x0(size, 1, depth) [all...] |
/external/opencv3/modules/cudaimgproc/perf/ |
perf_histogram.cpp | 56 const cv::Size size = GET_PARAM(0); local 59 cv::Mat src(size, depth); 94 const cv::Size size = GET_PARAM(0); local 97 cv::Mat src(size, CV_MAKE_TYPE(depth, 4)); 133 const cv::Size size = GetParam(); local 135 cv::Mat src(size, CV_8UC1); 159 const cv::Size size = GetParam() local 192 const cv::Size size = GET_PARAM(0); local [all...] |
/external/opencv3/modules/cudaimgproc/test/ |
test_histogram.cpp | 52 PARAM_TEST_CASE(HistEven, cv::cuda::DeviceInfo, cv::Size) 55 cv::Size size; local 60 size = GET_PARAM(1); 68 cv::Mat src = randomMat(size, CV_8UC1); 96 PARAM_TEST_CASE(CalcHist, cv::cuda::DeviceInfo, cv::Size) 100 cv::Size size; local 105 size = GET_PARAM(1); 113 cv::Mat src = randomMat(size, CV_8UC1) 143 cv::Size size; local 182 cv::Size size; local [all...] |
/external/opencv3/modules/cudastereo/test/ |
test_stereo.cpp | 174 PARAM_TEST_CASE(ReprojectImageTo3D, cv::cuda::DeviceInfo, cv::Size, MatDepth, UseRoi) 177 cv::Size size; local 184 size = GET_PARAM(1); 194 cv::Mat disp = randomMat(size, depth, 5.0, 30.0); 195 cv::Mat Q = randomMat(cv::Size(4, 4), CV_32FC1, 0.1, 1.0);
|
/external/opencv3/modules/cudawarping/perf/ |
perf_warping.cpp | 92 DEF_PARAM_TEST(Sz_Depth_Cn_Inter_Border_Mode, cv::Size, MatDepth, MatCn, Interpolation, BorderMode, RemapMode); 104 const cv::Size size = GET_PARAM(0); local 113 cv::Mat src(size, type); 116 cv::Mat xmap(size, CV_32FC1); 117 cv::Mat ymap(size, CV_32FC1); 144 DEF_PARAM_TEST(Sz_Depth_Cn_Inter_Scale, cv::Size, MatDepth, MatCn, Interpolation, double); 155 const cv::Size size = GET_PARAM(0); local 163 cv::Mat src(size, type) 198 const cv::Size size = GET_PARAM(0); local 242 const cv::Size size = GET_PARAM(0); local 292 const cv::Size size = GET_PARAM(0); local 339 const cv::Size size = GET_PARAM(0); local 372 const cv::Size size = GET_PARAM(0); local 408 const cv::Size size = GET_PARAM(0); local [all...] |
/external/opencv3/modules/flann/include/opencv2/flann/ |
composite_index.h | 110 * @return Size of the index 112 size_t size() const function in class:cvflann::CompositeIndex 114 return kdtree_index_->size();
|
linear_index.h | 72 size_t size() const function in class:cvflann::LinearIndex
|
saving.h | 95 header.rows = index.size(); 141 size_t size = value.size(); local 142 fwrite(&size, sizeof(size_t), 1, stream); 143 fwrite(&value[0], sizeof(T), size, stream); 173 size_t size; local 174 size_t read_cnt = fread(&size, sizeof(size_t), 1, stream); 178 value.resize(size); 179 read_cnt = fread(&value[0], sizeof(T), size, stream); 180 if (read_cnt != size) { [all...] |
/external/opencv3/modules/imgproc/test/ocl/ |
test_filter2d.cpp | 60 Size size; local 74 Size ksize(GET_PARAM(2), GET_PARAM(2)); 84 size = randomSize(1, MAX_VALUE); 86 size.width &= ~((widthMultiple * 2) - 1); 87 size.width += widthMultiple; 90 randomSubMat(src, src_roi, size, srcBorder, type, -MAX_VALUE, MAX_VALUE); 93 randomSubMat(dst, dst_roi, size, dstBorder, type, -MAX_VALUE, MAX_VALUE); 95 anchor.x = randomInt(-1, kernel.size[0]); 96 anchor.y = randomInt(-1, kernel.size[1]) [all...] |
/external/opencv3/modules/python/test/ |
ticket_6.py | 18 size=(640, 480) variable in class:Creating 21 image = cv.CreateImage(self.size, cv.IPL_DEPTH_8U, 1) 28 image = cv.CreateImage(self.size, cv.IPL_DEPTH_8U, 1) 36 image = cv.CreateImage(self.size, cv.IPL_DEPTH_8U, 1) 43 image = cv.CreateImage(self.size, cv.IPL_DEPTH_8U, 1) 50 image = cv.CreateImage(self.size, cv.IPL_DEPTH_8U, 1) 60 image = cv.CreateImage(self.size, cv.IPL_DEPTH_8U, 1) 70 image = cv.CreateImage(self.size, cv.IPL_DEPTH_8U, 1)
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
motion_core.hpp | 75 int size; //!< subset size member in struct:cv::videostab::RansacParams 80 RansacParams() : size(0), thresh(0), eps(0), prob(0) {} 82 @param size Subset size. 87 RansacParams(int size, float thresh, float eps, float prob); 95 std::ceil(std::log(1 - prob) / std::log(1 - std::pow(1 - eps, size)))); 122 : size(_size), thresh(_thresh), eps(_eps), prob(_prob) {}
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
socket_option.hpp | 97 // Get the size of the boolean data. 99 std::size_t size(const Protocol&) const function in class:asio::detail::socket_option::boolean 104 // Set the size of the boolean data. 109 // return the size of a boolean socket option as one byte, even though a 188 // Get the size of the int data. 190 std::size_t size(const Protocol&) const function in class:asio::detail::socket_option::integer 195 // Set the size of the int data. 281 // Get the size of the linger data. 283 std::size_t size(const Protocol&) const function in class:asio::detail::socket_option::linger 288 // Set the size of the int data [all...] |
/external/pdfium/core/src/fxcodec/jbig2/ |
JBig2_HuffmanTable.cpp | 128 size_t size = PREFLEN.size(); local 129 if (NTEMP < size) 132 size += 16; 133 ASSERT(NTEMP < size); 134 PREFLEN.resize(size); 135 RANGELEN.resize(size); 136 RANGELOW.resize(size);
|
/external/pdfium/core/src/fxcrt/ |
fxcrt_platforms.cpp | 76 FX_FILESIZE size = (FX_FILESIZE)FXSYS_ftell(m_hFile); local 78 return size;
|
/external/pdfium/third_party/freetype/src/type1/ |
t1parse.c | 76 FT_ULong size; local 86 if ( !FT_READ_ULONG_LE( size ) ) 87 *asize = size; 143 FT_ULong size; local 188 /* try to compute the size of the base dictionary; */ 193 error = read_pfb_tag( stream, &tag, &size ); 203 size = stream->size; 208 /* now, try to load `size' bytes of the `base' dictionary we */ 215 parser->base_len = size; 267 FT_ULong size; local [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractParser.java | 222 int size; local 228 size = CodedInputStream.readRawVarint32(firstByte, input); 232 InputStream limitedInput = new LimitedInputStream(input, size);
|