/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRReaderStream.h | 29 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize; 30 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize; 31 - (id) initWithReader:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize; 32 - (void) load:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize;
|
ANTLRReaderStream.m | 41 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize 43 return [[ANTLRReaderStream alloc] initWithReader:r size:aSize readBufferSize:READ_BUFFER_SIZE]; 46 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize 48 // load(r, aSize, aReadChunkSize); 49 return [[ANTLRReaderStream alloc] initWithReader:r size:aSize readBufferSize:aReadChunkSize]; 63 - (id) initWithReader:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize 68 rbSize = aSize; 70 [self load:aSize readBufferSize:aReadChunkSize]; 75 - (void) load:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize 81 if ( aSize<=0 ) [all...] |
ANTLRNodeMapElement.m | 102 NSInteger aSize = 0; 103 if (node != nil) aSize += sizeof(id); 104 if (index != nil) aSize += sizeof(id); 105 return( aSize );
|
ANTLRRuleMapElement.m | 105 NSInteger aSize = 0; 106 if (ruleNum != nil) aSize++; 107 if (index != nil) aSize++; 108 return( aSize );
|
ANTLRRuleStack.m | 96 NSInteger aSize = 0; 99 aSize++; 102 return aSize;
|
/external/javassist/src/main/javassist/bytecode/ |
LongVector.java | 19 static final int ASIZE = 128; 20 static final int ABITS = 7; // ASIZE = 2^ABITS 38 public int capacity() { return objects.length * ASIZE; } 44 return objects[i >> ABITS][i & (ASIZE - 1)]; 49 int offset = elements & (ASIZE - 1); 58 objects[nth] = new ConstInfo[ASIZE];
|
/external/tpm2/ |
MathFunctions_fp.h | 10 LIB_EXPORT int _math__Comp(const UINT32 aSize, // IN: size of a 33 LIB_EXPORT int _math__sub(const UINT32 aSize, // IN: size of a 37 UINT16 *cSize, // OUT: set to MAX(aSize, bSize) 40 LIB_EXPORT int _math__uComp(const UINT32 aSize, // IN: size of a
|
MathFunctions.c | 94 const UINT32 aSize, // IN: size of a 98 UINT16 *cSize, // OUT: set to MAX(aSize, bSize) 107 *cSize = (UINT16)((aSize > bSize) ? aSize : bSize); 109 i = (aSize > bSize) ? bSize : aSize; 111 a = &a[aSize - 1]; 121 if(aSize > bSize) 131 else if(aSize < bSize) 160 UINT32 aSize, // IN: size of [all...] |
/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;
|
/external/freetype/src/truetype/ |
ttpload.h | 37 FT_UInt *asize );
|
/external/pdfium/third_party/freetype/src/truetype/ |
ttpload.h | 37 FT_UInt *asize );
|
/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...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/big/ |
gcd_test.go | 22 func runGCD(b *testing.B, aSize, bSize uint) { 25 aa := randInt(r, aSize)
|
/prebuilts/go/darwin-x86/src/math/big/ |
gcd_test.go | 22 func runGCD(b *testing.B, aSize, bSize uint) { 25 aa := randInt(r, aSize)
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/big/ |
gcd_test.go | 22 func runGCD(b *testing.B, aSize, bSize uint) { 25 aa := randInt(r, aSize)
|
/prebuilts/go/linux-x86/src/math/big/ |
gcd_test.go | 22 func runGCD(b *testing.B, aSize, bSize uint) { 25 aa := randInt(r, 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/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRRuleStack.m | 91 NSInteger aSize = 0; 94 aSize++; 97 return aSize;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRRuleStack.m | 91 NSInteger aSize = 0; 94 aSize++; 97 return aSize;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRRuleStack.m | 91 NSInteger aSize = 0; 94 aSize++; 97 return aSize;
|