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

1 2

  /external/libmicrohttpd/src/microhttpd/
memorypool.c 169 size_t asize; local
171 asize = ROUND_TO_ALIGN (size);
172 if ( (0 == asize) && (0 != size) )
174 if ((pool->pos + asize > pool->end) || (pool->pos + asize < pool->pos))
178 ret = &pool->memory[pool->end - asize];
179 pool->end -= asize;
184 pool->pos += asize;
214 size_t asize; local
216 asize = ROUND_TO_ALIGN (new_size)
    [all...]
  /external/curl/tests/libtest/
lib543.c 35 int asize; local
44 asize = (int)sizeof(a);
46 s = curl_easy_escape(easy, (char*)a, asize);
lib558.c 32 int asize; local
44 asize = (int)sizeof(a);
45 ptr = curl_easy_escape(NULL, (char *)a, asize);
lib509.c 109 int asize; local
133 asize = (int)sizeof(a);
134 str = curl_easy_escape(curl, (char *)a, asize); /* uses realloc() */
  /libcore/ojluni/src/main/java/sun/net/www/
HeaderParser.java 55 int asize = 10; // initial size of array is 10 field in class:HeaderParser
59 tab = new String[asize][2];
77 n.tab = new String [asize][2];
78 n.asize = asize;
131 if (i == asize) {
132 asize = asize * 2;
133 String[][] ntab = new String[asize][2];
166 if (i < 0 || i > asize)
    [all...]
  /external/elfutils/backends/
s390_retval.c 98 uint8_t asize; local
99 if (dwarf_diecu (typedie, &cudie, &asize, NULL) == NULL)
107 size = asize;
127 return size <= asize ? nloc_intreg : nloc_intregpair;
sparc_retval.c 105 uint8_t asize; local
108 && dwarf_diecu (typedie, &cudie, &asize, NULL) != NULL)
109 size = asize;
  /external/opencv3/modules/core/include/opencv2/core/
opengl.hpp 115 @param asize 2D array size.
120 Buffer(Size asize, int atype, unsigned int abufId, bool autoRelease = false);
132 @param asize 2D array size.
137 Buffer(Size asize, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false);
157 @param asize 2D array size.
162 void create(Size asize, int atype, Target target = ARRAY_BUFFER, bool autoRelease = false);
306 Texture2D(Size asize, Format aformat, unsigned int atexId, bool autoRelease = false);
317 @param asize 2D array size.
321 Texture2D(Size asize, Format aformat, bool autoRelease = false);
338 @param asize 2D array size
    [all...]
  /external/freetype/src/truetype/
ttpload.h 37 FT_UInt *asize );
ttpload.c 175 FT_UInt *asize )
220 *asize = 0;
242 *asize = (FT_UInt)( pos2 - pos1 );
244 *asize = (FT_UInt)( face->glyf_len - pos1 );
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
gpumat.hpp 70 __host__ explicit GpuMat_(Size asize, Allocator* allocator = defaultAllocator());
74 __host__ GpuMat_(Size asize, Scalar val, Allocator* allocator = defaultAllocator());
84 __host__ GpuMat_(Size asize, T* adata, size_t astep = Mat::AUTO_STEP);
98 __host__ void create(Size asize);
  /external/pdfium/third_party/freetype/src/truetype/
ttpload.h 37 FT_UInt *asize );
ttpload.c 183 FT_UInt *asize )
228 *asize = 0;
250 *asize = (FT_UInt)( pos2 - pos1 );
252 *asize = (FT_UInt)( face->glyf_len - pos1 );
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
gpumat.hpp 67 __host__ GpuMat_<T>::GpuMat_(Size asize, Allocator* allocator)
68 : GpuMat(asize.height, asize.width, DataType<T>::type, allocator)
79 __host__ GpuMat_<T>::GpuMat_(Size asize, Scalar val, Allocator* allocator)
80 : GpuMat(asize.height, asize.width, DataType<T>::type, val, allocator)
119 __host__ GpuMat_<T>::GpuMat_(Size asize, T* adata, size_t astep)
120 : GpuMat(asize.height, asize.width, DataType<T>::type, adata, astep)
158 __host__ void GpuMat_<T>::create(Size asize)
    [all...]
  /external/opencv3/modules/core/src/
glob.cpp 108 size_t asize = wcstombs(NULL, dir->data.cFileName, 0); local
109 CV_Assert((asize != 0) && (asize != (size_t)-1));
110 char* aname = new char[asize+1];
111 aname[asize] = 0;
112 wcstombs(aname, dir->data.cFileName, asize);
opengl.cpp 483 cv::ogl::Buffer::Buffer(Size asize, int atype, unsigned int abufId, bool autoRelease) : rows_(0), cols_(0), type_(0)
486 (void) asize;
493 rows_ = asize.height;
494 cols_ = asize.width;
520 const GLsizeiptr asize = mat.rows * mat.cols * mat.elemSize();
521 impl_.reset(new Impl(asize, mat.data, target, autoRelease));
543 const GLsizeiptr asize = arows * acols * CV_ELEM_SIZE(atype);
544 impl_.reset(new Impl(asize, 0, target, autoRelease));
584 const Size asize = arr.size();
586 create(asize, atype, target, autoRelease)
    [all...]
  /external/freetype/src/cache/
ftcsbits.c 105 FT_ULong *asize )
183 if ( asize )
184 *asize = (FT_ULong)FT_ABS( sbit->pitch ) * sbit->height;
199 if ( asize )
200 *asize = 0;
  /external/avahi/avahi-core/
rr.c 604 size_t asize, bsize; local
606 asize = avahi_string_list_serialize(a->data.txt.string_list, NULL, 0);
609 if (asize > 0 && !(ma = avahi_new(uint8_t, asize)))
617 avahi_string_list_serialize(a->data.txt.string_list, ma, asize);
620 if (asize && bsize)
621 r = lexicographical_memcmp(ma, asize, mb, bsize);
622 else if (asize && !bsize)
624 else if (!asize && bsize)
  /libcore/ojluni/src/main/java/java/util/jar/
Manifest.java 203 int asize = 2; local
248 attr = new Attributes(asize);
257 asize = Math.max(2, acount / ecount);
  /external/selinux/libsemanage/src/
semanageswig_python.i 56 unsigned int asize,
67 for (i = 0; i < asize; i++) {
91 for (i = 0; i < asize; i++)
  /frameworks/rs/
rsElement.cpp 287 uint32_t asize = 1; local
294 asize = asin[i];
300 (ee->mFields[i].arraySize != asize)) {
327 uint32_t asize = 1; local
334 asize = asin[ct];
339 e->mFields[ct].arraySize = asize;
  /external/pdfium/third_party/freetype/src/type1/
t1parse.c 72 FT_ULong *asize )
80 *asize = 0;
87 *asize = size;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BasicTimeZone.java 312 int asize = times.length - idx; local
313 if (asize > 0) {
314 long[] newtimes = new long[asize];
315 System.arraycopy(times, idx, newtimes, 0, asize);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BasicTimeZone.java 323 int asize = times.length - idx; local
324 if (asize > 0) {
325 long[] newtimes = new long[asize];
326 System.arraycopy(times, idx, newtimes, 0, asize);
  /external/opencv3/modules/core/test/
test_hal_core.cpp 149 size_t asize = size*size*a.elemSize(); local
155 memcpy(a.ptr(), a0.ptr(), asize);

Completed in 415 milliseconds

1 2