HomeSort by relevance Sort by last modified time
    Searched refs:iSize (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
journal.c 39 int iSize; /* Amount of zBuf[] currently used */
58 if( p->iSize>0 ){
59 assert(p->iSize<=p->nBuf);
60 rc = sqlite3OsWrite(p->pReal, p->zBuf, p->iSize, 0);
92 }else if( (iAmt+iOfst)>p->iSize ){
119 if( p->iSize<(iOfst+iAmt) ){
120 p->iSize = (iOfst+iAmt);
135 }else if( size<p->iSize ){
136 p->iSize = size;
164 *pSize = (sqlite_int64) p->iSize;
    [all...]
bitvec.c 76 ** with values between 1 and iSize, inclusive.
79 ** If iSize<=BITVEC_NBIT, then Bitvec.u.aBitmap[] is a straight
82 ** If iSize>BITVEC_NBIT and iDivisor==0 then Bitvec.u.aHash[] is
94 u32 iSize; /* Maximum bit index. Max iSize is 4,294,967,296. */
110 ** Create a new bitmap object able to handle bits between 0 and iSize,
114 Bitvec *sqlite3BitvecCreate(u32 iSize){
119 p->iSize = iSize;
131 if( i>p->iSize || i==0 ) return 0
    [all...]
mem2.c 56 i64 iSize; /* Size of this allocation */
129 static void adjustStats(int iSize, int increment){
130 int i = ROUND8(iSize)/8;
161 nReserve = ROUND8(p->iSize);
169 while( nReserve-- > p->iSize ) assert( pU8[nReserve]==0x65 );
182 return pHdr->iSize;
286 pHdr->iSize = nByte;
327 adjustStats(pHdr->iSize, -1);
329 pHdr->iSize + sizeof(int) + pHdr->nTitle);
351 memcpy(pNew, pPrior, nByte<pOldHdr->iSize ? nByte : pOldHdr->iSize)
    [all...]
test6.c 136 int iSize; /* Size of file in bytes */
262 i64 iSize;
263 sqlite3OsFileSize(pRealFile, &iSize);
264 if( iSize==pWrite->iOffset ){
414 if( pCrash->iSize<(iOfst+iAmt) ){
432 if( iAmt+iOfst>pCrash->iSize ){
433 pCrash->iSize = iAmt+iOfst;
435 while( pCrash->iSize>pCrash->nData ){
456 if( pCrash->iSize>size ){
457 pCrash->iSize = size
    [all...]
test_quota.c 72 sqlite3_int64 iSize; /* Current size of all files */
76 sqlite3_int64 iSize, /* Total size of all files in the group */
96 sqlite3_int64 iSize; /* Current size of this file */
370 pGroup->iSize -= pFile->iSize;
410 if( pFile->iSize<iEnd ){
413 szNew = pGroup->iSize - pFile->iSize + iEnd;
424 pGroup->iSize = szNew;
425 pFile->iSize = iEnd
    [all...]
backup.c 294 ** If pFile is currently larger than iSize bytes, then truncate it to
295 ** exactly iSize bytes. If pFile is not larger than iSize bytes, then
301 static int backupTruncateFile(sqlite3_file *pFile, i64 iSize){
304 if( rc==SQLITE_OK && iCurrent>iSize ){
305 rc = sqlite3OsTruncate(pFile, iSize);
457 const i64 iSize = (i64)pgszSrc * (i64)nSrcPage;
463 assert( (i64)nDestTruncate*(i64)pgszDest >= iSize || (
465 && iSize>=PENDING_BYTE && iSize<=PENDING_BYTE+pgszDes
    [all...]
pcache1.c 257 int iSize;
260 iSize = sqlite3MallocSize(p);
262 sqlite3StatusAdd(SQLITE_STATUS_PAGECACHE_OVERFLOW, -iSize);
276 int iSize;
279 iSize = sqlite3MallocSize(p);
281 return iSize;
test_journal.c 434 sqlite3_int64 iSize = p->iMaxOff;
446 while( rc==SQLITE_OK && iOff<iSize ){
464 if( iSize>=(iOff+nSector) ){
470 nRec = (iSize-iOff) / (pMain->nPagesize+8);
474 for(ii=0; rc==SQLITE_OK && ii<nRec && iOff<iSize; ii++){
mem5.c 203 int iSize = 0;
207 iSize = mem5.szAtom * (1 << (mem5.aCtrl[i]&CTRL_LOGSIZE));
209 return iSize;
malloc.c 416 int iSize = sqlite3MallocSize(p);
418 sqlite3StatusAdd(SQLITE_STATUS_SCRATCH_OVERFLOW, -iSize);
419 sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -iSize);
  /external/chromium_org/third_party/npapi/npspy/common/
utils.cpp 100 DWORD XP_WriteFile(XP_HFILE hFile, const void * pBuf, int iSize)
104 WriteFile((HANDLE)hFile, pBuf, iSize, &dwRet, NULL);
107 return (DWORD)fwrite(pBuf, iSize, 1, hFile);
format.cpp 365 static void makeAbbreviatedString(char * szBuf, int iSize, DWORD dwArg, int iLength, int iWrap)
375 int iRealWrap = (iSize > iWrap) ? iWrap : (iSize - 4);
384 if(iLength >= iSize)
386 memcpy((LPVOID)&szBuf[0], (LPVOID)dwArg, iSize - 4);
387 szBuf[iSize] = '.';
388 szBuf[iSize + 1] = '.';
389 szBuf[iSize + 2] = '.';
390 szBuf[iSize + 3] = '\0';
    [all...]
  /development/ndk/sources/android/ndk_helper/
shader.cpp 82 const int32_t iSize )
84 if( source == NULL || iSize <= 0 )
88 glShaderSource( *shader, 1, &source, &iSize ); //Not specifying 3rd parameter (size) could be troublesome..
123 int32_t iSize = data.size();
124 return shader::CompileShader( shader, type, source, iSize );
shader.h 64 * in: iSize, buffer size
71 const int32_t iSize );
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_points.c 194 GLint iSize = (GLint) (size + 0.5F);
199 iSize = MAX2(1, iSize);
200 iRadius = iSize / 2;
202 if (iSize & 1) {
213 xmax = xmin + iSize - 1;
215 ymax = ymin + iSize - 1;
410 GLint iSize = (GLint) (size + 0.5F);
414 iSize = MAX2(1, iSize);
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_points.c 194 GLint iSize = (GLint) (size + 0.5F);
199 iSize = MAX2(1, iSize);
200 iRadius = iSize / 2;
202 if (iSize & 1) {
213 xmax = xmin + iSize - 1;
215 ymax = ymin + iSize - 1;
410 GLint iSize = (GLint) (size + 0.5F);
414 iSize = MAX2(1, iSize);
    [all...]
  /external/chromium_org/third_party/npapi/npspy/include/
xp.h 164 DWORD XP_WriteFile(XP_HFILE hFile, const void * pBuf, int iSize);
  /development/ndk/platforms/android-18/samples/MoreTeapots/jni/
MoreTeapotsRenderer.cpp 180 int32_t iSize = teapot_x_ * teapot_y_ * teapot_z_
182 float* pBuffer = new float[iSize];
190 glBufferData( GL_UNIFORM_BUFFER, iSize * sizeof(float), pBuffer, GL_DYNAMIC_DRAW );
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 453 int iSize = (size * numEle);
454 int vEle = (iSize >> ((size == 64) ? 6 : 5));
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 453 int iSize = (size * numEle);
454 int vEle = (iSize >> ((size == 64) ? 6 : 5));
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 874 milliseconds