/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
PownTest.java | 82 Allocation nAlloc = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE); 86 nAlloc.copyFrom(n); 87 script_f32.set_n1(nAlloc); 93 Allocation nAlloc = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE); 97 nAlloc.copyFrom(n); 98 script_f32_relaxed.set_n1(nAlloc); 104 Allocation nAlloc = Allocation.createSized(mRS, Element.I32_2(mRS), INPUTSIZE); 108 nAlloc.copyFrom(n); 109 script_f32.set_n2(nAlloc); 115 Allocation nAlloc = Allocation.createSized(mRS, Element.I32_2(mRS), INPUTSIZE) [all...] |
RootnTest.java | 80 Allocation nAlloc = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE); 84 nAlloc.copyFrom(n); 85 script_f32.set_n1(nAlloc); 91 Allocation nAlloc = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE); 95 nAlloc.copyFrom(n); 96 script_f32_relaxed.set_n1(nAlloc); 103 Allocation nAlloc = Allocation.createSized(mRS, Element.I32_2(mRS), INPUTSIZE); 107 nAlloc.copyFrom(n); 108 script_f32.set_n2(nAlloc); 114 Allocation nAlloc = Allocation.createSized(mRS, Element.I32_2(mRS), INPUTSIZE) [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
table.c | 32 int nAlloc; /* Slots allocated for azResult[] */ 58 if( p->nData + need > p->nAlloc ){ 60 p->nAlloc = p->nAlloc*2 + need; 61 azNew = sqlite3_realloc( p->azResult, sizeof(char*)*p->nAlloc ); 137 res.nAlloc = 20; 139 res.azResult = sqlite3_malloc(sizeof(char*)*res.nAlloc ); 165 if( res.nAlloc>res.nData ){
|
mem2.c | 115 ** nAlloc[i] is the number of allocation attempts of i*8 119 int nAlloc[NCSIZE]; /* Total number of allocations */ 135 mem.nAlloc[i]++; 502 if( mem.nAlloc[i] ){ 504 i*8, mem.nAlloc[i], mem.nCurrent[i], mem.mxCurrent[i]); 507 if( mem.nAlloc[NCSIZE-1] ){ 509 NCSIZE*8-8, mem.nAlloc[NCSIZE-1], 522 nTotal += mem.nAlloc[i];
|
mem5.c | 108 u64 nAlloc; /* Total number of calls to malloc */ 288 mem5.nAlloc++; 493 int nAlloc = (1<<ii); 494 if( (iOffset+nAlloc)<=mem5.nBlock ){ 497 iOffset += nAlloc; 499 assert((iOffset+nAlloc)>mem5.nBlock); 545 fprintf(out, "mem5.nAlloc = %llu\n", mem5.nAlloc);
|
alter.c | 753 int nAlloc; 795 nAlloc = (((pNew->nCol-1)/8)*8)+8; 796 assert( nAlloc>=pNew->nCol && nAlloc%8==0 && nAlloc-pNew->nCol<8 ); 797 pNew->aCol = (Column*)sqlite3DbMallocZero(db, sizeof(Column)*nAlloc);
|
test_onefile.c | 120 int nAlloc; 290 if( (iAmt+iOfst)>pTmp->nAlloc ){ 291 int nNew = 2*(iAmt+iOfst+pTmp->nAlloc); 297 pTmp->nAlloc = nNew;
|
vdbemem.c | 729 int nAlloc = nByte; 731 nAlloc += (enc==SQLITE_UTF8?1:2); 736 if( sqlite3VdbeMemGrow(pMem, nAlloc, 0) ){ 739 memcpy(pMem->z, z, nAlloc); [all...] |
sqliteInt.h | [all...] |
build.c | [all...] |
test1.c | 790 int nAlloc; /* Space allocated */ 800 if( p->nUsed + n + 2 > p->nAlloc ){ 802 p->nAlloc = p->nAlloc*2 + n + 200; 803 zNew = sqlite3_realloc(p->z, p->nAlloc); [all...] |
resolve.c | 451 if( pNC->pSrcList && pNC->pSrcList->nAlloc>0 ){ [all...] |
where.c | [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
threadtest1.c | 63 int nAlloc; /* Number of slots allocated for azElem[] */ 78 if( pResult->nElem + nArg >= pResult->nAlloc ){ 79 if( pResult->nAlloc==0 ){ 80 pResult->nAlloc = nArg+1; 82 pResult->nAlloc = pResult->nAlloc*2 + nArg + 1; 84 pResult->azElem = realloc( pResult->azElem, pResult->nAlloc*sizeof(char*));
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_snippet.c | 105 int nAlloc; /* Allocated size of buffer z in bytes */ 546 if( pStr->n+nAppend+1>=pStr->nAlloc ){ 547 int nAlloc = pStr->nAlloc+nAppend+100; 548 char *zNew = sqlite3_realloc(pStr->z, nAlloc); 553 pStr->nAlloc = nAlloc; [all...] |
fts3.c | [all...] |
fts3_write.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
fts1.c | 1006 int nAlloc; /* Space allocated for aMatch[] */ [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |
/external/sqlite/dist/orig/ |
sqlite3.c | [all...] |
/external/sqlite/dist/ |
sqlite3.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2.c | [all...] |