/frameworks/compile/mclinker/include/mcld/LD/ |
Resolver.h | 56 /// shouldOverride - Can resolver override the symbol pOld by the symbol pNew? 58 /// @param pOld the symbol which may be overridden. 59 /// @param pNew the symbol which is used to replace pOld 60 virtual bool resolve(ResolveInfo & __restrict__ pOld, 69 ResolveInfo& __restrict__ pOld,
|
StaticResolver.h | 108 /// shouldOverride - Can resolver override the symbol pOld by the symbol pNew? 110 /// @param pOld the symbol which may be overridden. 111 /// @param pNew the symbol which is used to replace pOld 112 virtual bool resolve(ResolveInfo & __restrict__ pOld,
|
/external/chromium_org/third_party/sqlite/src/src/ |
malloc.c | 509 void *sqlite3Realloc(void *pOld, int nBytes){ 512 if( pOld==0 ){ 516 sqlite3_free(pOld); /* IMP: R-31593-10574 */ 523 nOld = sqlite3MallocSize(pOld); 529 pNew = pOld; 537 assert( sqlite3MemdebugHasType(pOld, MEMTYPE_HEAP) ); 538 assert( sqlite3MemdebugNoType(pOld, ~MEMTYPE_HEAP) ); 539 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); 542 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); 550 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew) [all...] |
mem5.c | 303 static void memsys5FreeUnsafe(void *pOld){ 307 /* Set iBlock to the index of the block pointed to by pOld in 310 iBlock = ((u8 *)pOld-mem5.zPool)/mem5.szAtom; 312 /* Check that the pointer pOld points to a valid, non-free block. */ 314 assert( ((u8 *)pOld-mem5.zPool)%mem5.szAtom==0 );
|
vtab.c | 385 Table *pOld; 390 pOld = sqlite3HashInsert(&pSchema->tblHash, zName, nName, pTab); 391 if( pOld ){ 393 assert( pTab==pOld ); /* Malloc must have failed inside HashInsert() */
|
prepare.c | 686 Vdbe *pOld, /* VM being reprepared */ 698 rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, pOld, ppStmt, pzTail); 701 rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, pOld, ppStmt, pzTail);
|
main.c | [all...] |
mem3.c | 436 void memsys3FreeUnsafe(void *pOld){ 437 Mem3Block *p = (Mem3Block*)pOld;
|
btree.c | [all...] |
test_malloc.c | 87 static void *faultsimRealloc(void *pOld, int n){ 90 p = memfault.m.xRealloc(pOld, n); [all...] |
build.c | 526 TESTONLY ( Index *pOld = ) sqlite3HashInsert( 530 assert( pOld==pIndex || pOld==0 ); [all...] |
where.c | 339 WhereTerm *pOld = pWC->a; 346 pWC->a = pOld; 349 memcpy(pWC->a, pOld, sizeof(pWC->a[0])*pWC->nTerm); 350 if( pOld!=pWC->aStatic ){ 351 sqlite3DbFree(db, pOld); [all...] |
/frameworks/compile/mclinker/lib/LD/ |
StaticResolver.cpp | 21 bool StaticResolver::resolve(ResolveInfo& __restrict__ pOld, 62 unsigned int col = getOrdinate(pOld); 66 ResolveInfo* old = &pOld;
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
unroll1.cpp | 252 double * pOld = begin(); 254 while (pOld != end() && pNew != pEndNew) 255 ElementProperties::construct(pNew++,*pOld++);
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
unroll1.cpp | 252 double * pOld = begin(); 254 while (pOld != end() && pNew != pEndNew) 255 ElementProperties::construct(pNew++,*pOld++);
|
/external/chromium_org/third_party/freetype/src/cache/ |
ftccache.c | 180 FTC_Node* pold; local 207 pold = cache->buckets + old_index; 208 *pnode = *pold; 209 *pold = NULL;
|
/external/freetype/src/cache/ |
ftccache.c | 180 FTC_Node* pold; local 207 pold = cache->buckets + old_index; 208 *pnode = *pold; 209 *pold = NULL;
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_tokenizer.c | 78 void *pOld; 85 pOld = sqlite3Fts2HashInsert(pHash, (void *)zName, nName, pPtr); 86 if( pOld==pPtr ){
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
NuPlayer.h | 104 kWhatPollDuration = 'polD',
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_tokenizer.c | 75 void *pOld; 82 pOld = sqlite3Fts3HashInsert(pHash, (void *)zName, nName, pPtr); 83 if( pOld==pPtr ){
|
/external/llvm/lib/CodeGen/ |
RegisterPressure.cpp | 582 unsigned POld = OldPressureVec[i]; 584 int PDiff = (int)PNew - (int)POld; 592 if (Limit > POld) { 599 PDiff = Limit - POld; // Just obeyed limit. 627 unsigned POld = OldMaxPressureVec[i]; 629 if (PNew == POld) // No change in this set in the common case.
|
/external/aac/libAACenc/src/ |
sf_estim.cpp | 321 FIXP_DBL ldRatioOld, ldRatioNew, pOld, pNew; 336 pOld = ldRatioOld; 338 pOld = PE_C2 + fMult(PE_C3,ldRatioOld); 345 specPeDiff += fMult(FL2FXCONST_DBL(0.7f),fMult(sfbNRelevantLines[sfb],(pNew - pOld))); [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
bitstream.c | 1130 vp8_prob *Pold = cpi->common.fc.coef_probs [i][j][k] + t; [all...] |
/external/opencv/cvaux/include/ |
cvvidsurv.hpp | [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
fts1porter.test | [all...] |