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

1 2 3 4

  /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;
ANTLRMapElement.m 147 NSInteger aSize = 0;
148 if ( name ) aSize += sizeof(id);
149 if ( node ) aSize += sizeof(id);
150 return aSize;
ANTLRHashRule.m 113 NSInteger aSize = 0;
117 aSize += sizeof(id);
120 return aSize;
ANTLRMap.m 151 NSInteger aSize = 0;
155 aSize += (NSInteger)[anElement size];
158 return aSize;
ANTLRPtrBuffer.m 253 NSUInteger aSize = 0;
256 aSize += sizeof(id);
259 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/chromium_org/third_party/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/freetype/src/truetype/
ttpload.h 37 FT_UInt *asize );
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRuleStack.m 91 NSInteger aSize = 0;
94 aSize++;
97 return aSize;
ANTLRHashRule.m 117 NSInteger aSize = 0;
121 aSize += sizeof(id);
124 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;
ANTLRHashRule.m 117 NSInteger aSize = 0;
121 aSize += sizeof(id);
124 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;
ANTLRHashRule.m 117 NSInteger aSize = 0;
121 aSize += sizeof(id);
124 return aSize;
  /external/elfutils/backends/
s390_retval.c 111 uint8_t asize; local
112 if (dwarf_diecu (typedie, &cudie, &asize, NULL) == NULL)
119 size = asize;
139 return size <= asize ? nloc_intreg : nloc_intregpair;
sparc_retval.c 104 uint8_t asize; local
107 && dwarf_diecu (typedie, &cudie, &asize, NULL) != NULL)
108 size = asize;
  /external/clang/test/CodeGen/
2008-03-24-BitField-And-Alloca.c 49 unsigned int ASize : 2;
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
vectorbuffer.h 54 TInt GetRoom(TInt aSize) const;
98 TInt TVectorBuffer<C>::GetRoom(TInt aSize) const
100 const TInt bytesnew = sizeof(TNode) + aSize;
  /external/freetype/src/cache/
ftcsbits.c 105 FT_ULong *asize )
183 if ( asize )
184 *asize = FT_ABS( sbit->pitch ) * sbit->height;
199 if ( asize )
200 *asize = 0;
  /frameworks/rs/
rsElement.cpp 265 uint32_t asize = 1; local
272 asize = asin[i];
278 (ee->mFields[i].arraySize != asize)) {
298 uint32_t asize = 1; local
305 asize = asin[ct];
310 e->mFields[ct].arraySize = asize;

Completed in 298 milliseconds

1 2 3 4