Home
last modified time | relevance | path

Searched refs:BuffSize (Results 1 – 20 of 20) sorted by relevance

/external/antlr/runtime/ObjC/Framework/
DIntArray.m36 @synthesize BuffSize;
57 BuffSize = (ANTLR_INT_ARRAY_INITIAL_SIZE * (sizeof(NSInteger)/sizeof(id)));
60 buffer = [[NSMutableData dataWithLength:(NSUInteger)BuffSize * sizeof(id)] retain];
71 BuffSize = (ANTLR_INT_ARRAY_INITIAL_SIZE * (sizeof(NSInteger)/sizeof(id)));
74 buffer = [[NSMutableData dataWithLength:(NSUInteger)BuffSize * sizeof(id)] retain];
94 copy = [[[self class] alloc] initWithLen:BuffSize];
97 for ( anIndex = 0; anIndex < BuffSize; anIndex++ ) {
143 else if ( SPARSE == YES && anIndex >= BuffSize ) {
144 …xception:[NSString stringWithFormat:@"Index %d must be less than BuffSize %d", anIndex, BuffSize]];
160 } else if ( SPARSE==YES && anIndex >= BuffSize ) {
[all …]
DPtrBuffer.m43 @synthesize BuffSize;
65 BuffSize = BUFFSIZE;
67 buffer = [[NSMutableData dataWithLength:(NSUInteger)BuffSize * sizeof(id)] retain];
69 for( idx = 0; idx < BuffSize; idx++ ) {
83 BuffSize = cnt;
85 buffer = [[NSMutableData dataWithLength:(NSUInteger)BuffSize * sizeof(id)] retain];
87 for( idx = 0; idx < BuffSize; idx++ ) {
104 for( idx = 0; idx < BuffSize; idx++ ) {
137 for( idx = 0; idx < BuffSize; idx++ ) {
202 if ( ptr >= BuffSize - 1 ) {
[all …]
DHashRule.m79 for( Index = 0; Index < BuffSize; Index++ ) {
98 for (int i = 0; i < BuffSize; i++) {
108 return BuffSize;
115 for (int i = 0; i < BuffSize; i++) {
130 for( Index = 0; Index < BuffSize; Index++ ) {
167 anIndex = ( aStartIndex >= BuffSize ) ? aStartIndex % BuffSize : aStartIndex;
179 anIndex = (aStartIndex >= BuffSize) ? aStartIndex %= BuffSize : aStartIndex;
201 anIndex = (aStartIndex >= BuffSize) ? aStartIndex % BuffSize : aStartIndex;
262 Index = ( anIndex >= BuffSize ) ? anIndex % BuffSize : anIndex;
274 anIdx = ( anIndex >= BuffSize ) ? anIndex % BuffSize : anIndex;
DAMutableArray.m15 @synthesize BuffSize;
35 BuffSize = BUFFSIZE;
36 buffer = [[NSMutableData dataWithLength:(BuffSize * sizeof(id))] retain];
38 for( int idx = 0; idx < BuffSize; idx++ ) {
49 BuffSize = (len >= BUFFSIZE) ? len : BUFFSIZE;
50 buffer = [[NSMutableData dataWithLength:(BuffSize * sizeof(id))] retain];
52 for( int idx = 0; idx < BuffSize; idx++ ) {
79 copy.BuffSize = BuffSize;
130 if ( count == BuffSize ) {
177 for ( i = 0; i < BuffSize; i++ ) {
[all …]
DRuleStack.m86 for( int i = 0; i < BuffSize; i++ ) {
97 for( int i = 0; i < BuffSize; i++ ) {
112 if ( idx >= BuffSize ) {
113 …n RuleStack attempting to insert aRule at Index %d, but Buffer is only %d long\n", idx, BuffSize );
125 if (idx < BuffSize) {
136 if (aRuleIndex >= BuffSize) {
137 …ndex attempting to insert aRule at Index %d, but Buffer is only %d long\n", aRuleIndex, BuffSize );
DIntArray.h36 NSUInteger BuffSize; variable
67 @property (assign) NSUInteger BuffSize;
DAMutableArray.h15 NSInteger BuffSize; variable
45 @property (assign) NSInteger BuffSize;
DMap.m86 for( idx = 0; idx < BuffSize; idx++ ) {
104 for( idx = 0; idx < BuffSize; idx++ ) {
120 for( idx = 0; idx < BuffSize; idx++ ) {
135 for (int i = 0; i < BuffSize; i++) {
145 return BuffSize;
153 for (int i = 0; i < BuffSize; i++) {
DBaseStack.m91 for (int i = 0; i < BuffSize; i++) {
101 return BuffSize;
110 for( idx = 0; idx < BuffSize; idx++ ) {
DPtrBuffer.h40 NSUInteger BuffSize; variable
47 @property (getter=getBuffSize, setter=setBuffSize:) NSUInteger BuffSize;
DHashMap.m460 @synthesize BuffSize;
508 BuffSize = HASHSIZE;
511 while (capacity < BuffSize)
514 BuffSize = capacity;
518 buffer = [[NSMutableData dataWithLength:(NSUInteger)BuffSize * sizeof(id)] retain];
522 for( idx = 0; idx < BuffSize; idx++ ) {
544 BuffSize = aBuffSize;
547 while (capacity < BuffSize)
550 BuffSize = capacity * sizeof(id);
554 buffer = [[NSMutableData dataWithLength:(NSUInteger)BuffSize] retain];
[all …]
DUniqueIDMap.m133 for (int i = 0; i < BuffSize; i++) {
143 return BuffSize;
DHashMap.h180 NSInteger BuffSize; variable
226 @property (assign) NSInteger BuffSize;
DPtrStack.m59 for( idx = 0; idx < BuffSize; idx++ ) {
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Dcircular_raw_ostream.h109 size_t BuffSize = 0, bool Owns = REFERENCE_ONLY)
111 OwnsStream(Owns), BufferSize(BuffSize), BufferArray(nullptr), in raw_ostream()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Dcircular_raw_ostream.h109 size_t BuffSize = 0, bool Owns = REFERENCE_ONLY)
111 OwnsStream(Owns), BufferSize(BuffSize), BufferArray(nullptr), in raw_ostream()
/external/llvm/include/llvm/Support/
Dcircular_raw_ostream.h109 size_t BuffSize = 0, bool Owns = REFERENCE_ONLY)
111 OwnsStream(Owns), BufferSize(BuffSize), BufferArray(nullptr), in raw_ostream()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
Dcircular_raw_ostream.h110 size_t BuffSize = 0, bool Owns = REFERENCE_ONLY)
114 BufferSize(BuffSize), in raw_ostream()
/external/libcxx/utils/google-benchmark/src/
Dsysinfo.cc102 explicit ValueUnion(size_t BuffSize) in ValueUnion()
103 : Size(sizeof(DataT) + BuffSize), in ValueUnion()
/external/google-benchmark/src/
Dsysinfo.cc105 explicit ValueUnion(size_t BuffSize) in ValueUnion()
106 : Size(sizeof(DataT) + BuffSize), in ValueUnion()