/external/tpm2/ |
D | MathFunctions.c | 94 const UINT32 aSize, // IN: size of a in _math__sub() argument 107 *cSize = (UINT16)((aSize > bSize) ? aSize : bSize); in _math__sub() 109 i = (aSize > bSize) ? bSize : aSize; in _math__sub() 111 a = &a[aSize - 1]; in _math__sub() 121 if(aSize > bSize) in _math__sub() 131 else if(aSize < bSize) in _math__sub() 160 UINT32 aSize, // IN: size of a in _math__Inc() argument 165 for(a = &a[aSize-1];aSize > 0; aSize--) in _math__Inc() 180 UINT32 aSize, // IN: size of a in _math__Dec() argument 184 for(a = &a[aSize-1]; aSize > 0; aSize--) in _math__Dec() [all …]
|
D | 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 40 LIB_EXPORT int _math__uComp(const UINT32 aSize, // IN: size of a
|
D | MemoryLib.c | 127 UINT16 aSize // IN: The size of aInOut.buffer (max values for in MemoryConcat2B() argument 134 aSize - aInOut->size); in MemoryConcat2B()
|
D | MemoryLib_fp.h | 38 UINT16 aSize // IN: The size of aInOut.buffer (max values for aInOut.size)
|
D | CryptUtil_fp.h | 20 LIB_EXPORT int CryptCompare(const UINT32 aSize, // IN: size of a 35 int CryptCompareSigned(UINT32 aSize, // IN: size of a
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | 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)aRead… 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)aReadChunkS… 68 rbSize = aSize; 70 [self load:aSize readBufferSize:aReadChunkSize]; 75 - (void) load:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize 81 if ( aSize<=0 ) { [all …]
|
D | ANTLRReaderStream.h | 29 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize; 30 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aRead… 31 - (id) initWithReader:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkS… 32 - (void) load:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize;
|
D | ANTLRRuleMapElement.m | 105 NSInteger aSize = 0; 106 if (ruleNum != nil) aSize++; 107 if (index != nil) aSize++; 108 return( aSize );
|
D | ANTLRNodeMapElement.m | 102 NSInteger aSize = 0; 103 if (node != nil) aSize += sizeof(id); 104 if (index != nil) aSize += sizeof(id); 105 return( aSize );
|
D | ANTLRMapElement.m | 147 NSInteger aSize = 0; 148 if ( name ) aSize += sizeof(id); 149 if ( node ) aSize += sizeof(id); 150 return aSize;
|
D | ANTLRRuleStack.m | 96 NSInteger aSize = 0; 99 aSize++; 102 return aSize;
|
D | ANTLRHashRule.m | 113 NSInteger aSize = 0; 117 aSize += sizeof(id); 120 return aSize;
|
D | ANTLRPtrBuffer.m | 253 NSUInteger aSize = 0; 256 aSize += sizeof(id); 259 return aSize;
|
D | ANTLRMap.m | 151 NSInteger aSize = 0; 155 aSize += (NSInteger)[anElement size]; 158 return aSize;
|
/external/dng_sdk/source/ |
D | dng_string.cpp | 140 uint32 aSize = (uint32) strlen (otherString); in Assign_Multibyte() local 142 if (aSize > 0) in Assign_Multibyte() 145 uint32 aBufSize = aSize * 6 + 256; in Assign_Multibyte() 167 aSize, in Assign_Multibyte() 217 uint32 aSize = dngString.Length (); in Extract_Multibyte() local 219 if (aSize > 0) in Extract_Multibyte() 222 uint32 aBufSize = (aSize * 2) + 256; in Extract_Multibyte() 244 aSize, in Extract_Multibyte() 356 int aSize = (int) strlen (otherString); in Assign_Multibyte() local 358 if (aSize > 0) in Assign_Multibyte() [all …]
|
/external/pcre/dist/ |
D | pcre_globals.c | 62 static void* LocalPcreMalloc(size_t aSize) in LocalPcreMalloc() argument 64 return malloc(aSize); in LocalPcreMalloc()
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRRuleStack.m | 91 NSInteger aSize = 0; 94 aSize++; 97 return aSize;
|
D | ANTLRHashRule.m | 117 NSInteger aSize = 0; 121 aSize += sizeof(id); 124 return aSize;
|
D | ANTLRHashMap.m | 134 NSInteger aSize = 0; 138 aSize += sizeof(id); 141 return aSize;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRRuleStack.m | 91 NSInteger aSize = 0; 94 aSize++; 97 return aSize;
|
D | ANTLRHashRule.m | 117 NSInteger aSize = 0; 121 aSize += sizeof(id); 124 return aSize;
|
D | ANTLRHashMap.m | 134 NSInteger aSize = 0; 138 aSize += sizeof(id); 141 return aSize;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRRuleStack.m | 91 NSInteger aSize = 0; 94 aSize++; 97 return aSize;
|
D | ANTLRHashRule.m | 117 NSInteger aSize = 0; 121 aSize += sizeof(id); 124 return aSize;
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_atom_pixeltransfer.c | 99 const GLuint aSize = ctx->PixelMaps.AtoA.Size; in load_color_map_texture() local 123 rgba[3] = ctx->PixelMaps.AtoA.Map[i * aSize / texSize]; in load_color_map_texture()
|