/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
fts1_tokenizer1.c | 37 int iOffset; /* current position in pInput */ 123 c->iOffset = 0; /* start tokenizing at the beginning */ 159 while( c->iOffset<c->nBytes ){ 163 while( c->iOffset<c->nBytes && isDelim(t, p[c->iOffset]) ){ 164 c->iOffset++; 168 iStartOffset = c->iOffset; 169 while( c->iOffset<c->nBytes && !isDelim(t, p[c->iOffset]) ){ 170 c->iOffset++ [all...] |
fts1_porter.c | 50 int iOffset; /* current position in zInput */ 108 c->iOffset = 0; /* start tokenizing at the beginning */ 589 while( c->iOffset<c->nInput ){ 593 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ 594 c->iOffset++; 598 iStartOffset = c->iOffset; 599 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ 600 c->iOffset++ [all...] |
fulltext.c | 366 * A merge is performed using an integer [iOffset] provided by the caller. 367 * [iOffset] is subtracted from each position in the on-disk doclist for the 377 int iOffset; 381 DocList *pIn, int iOffset, DocList *pOut){ 384 m->iOffset = iOffset; 401 if( block_pos-m->iOffset==in_pos ){ 411 } else if( in_pos==-1 || (block_pos!=-1 && block_pos-m->iOffset<in_pos) ){ 1062 * produce the doclist [out], using the given offset [iOffset] for phrase [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_tokenizer1.c | 44 int iOffset; /* current position in pInput */ 132 c->iOffset = 0; /* start tokenizing at the beginning */ 168 while( c->iOffset<c->nBytes ){ 172 while( c->iOffset<c->nBytes && simpleDelim(t, p[c->iOffset]) ){ 173 c->iOffset++; 177 iStartOffset = c->iOffset; 178 while( c->iOffset<c->nBytes && !simpleDelim(t, p[c->iOffset]) ){ 179 c->iOffset++ [all...] |
fts2_porter.c | 49 int iOffset; /* current position in zInput */ 107 c->iOffset = 0; /* start tokenizing at the beginning */ 587 while( c->iOffset<c->nInput ){ 591 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ 592 c->iOffset++; 596 iStartOffset = c->iOffset; 597 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ 598 c->iOffset++ [all...] |
fts2.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_tokenizer1.c | 45 int iOffset; /* current position in pInput */ 134 c->iOffset = 0; /* start tokenizing at the beginning */ 170 while( c->iOffset<c->nBytes ){ 174 while( c->iOffset<c->nBytes && simpleDelim(t, p[c->iOffset]) ){ 175 c->iOffset++; 179 iStartOffset = c->iOffset; 180 while( c->iOffset<c->nBytes && !simpleDelim(t, p[c->iOffset]) ){ 181 c->iOffset++ [all...] |
fts3_porter.c | 50 int iOffset; /* current position in zInput */ 110 c->iOffset = 0; /* start tokenizing at the beginning */ 590 while( c->iOffset<c->nInput ){ 594 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ 595 c->iOffset++; 599 iStartOffset = c->iOffset; 600 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ 601 c->iOffset++ [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
memjournal.c | 53 sqlite3_int64 iOffset; /* Offset from the beginning of the file */ 85 assert( iOfst+iAmt<=p->endpoint.iOffset ); 87 if( p->readpoint.iOffset!=iOfst || iOfst==0 ){ 108 p->readpoint.iOffset = iOfst+iAmt; 130 assert( iOfst==p->endpoint.iOffset ); 135 int iChunkOffset = (int)(p->endpoint.iOffset%JOURNAL_CHUNKSIZE); 158 p->endpoint.iOffset += iSpace; 209 *pSize = (sqlite_int64) p->endpoint.iOffset;
|
vdbeblob.c | 28 int iOffset; /* Byte offset of blob in cursor data */ 76 p->iOffset = v->apCsr[0]->aOffset[p->iCol]; 358 int iOffset, 371 if( n<0 || iOffset<0 || (iOffset+n)>p->nByte ){ 386 rc = xCall(p->pCsr, iOffset+p->iOffset, n, z); 404 int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ 405 return blobReadWrite(pBlob, z, n, iOffset, sqlite3BtreeData); 411 int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){ [all...] |
mem5.c | 460 int iOffset; /* An offset into mem5.aCtrl[] */ 491 iOffset = 0; 494 if( (iOffset+nAlloc)<=mem5.nBlock ){ 495 mem5.aCtrl[iOffset] = ii | CTRL_FREE; 496 memsys5Link(iOffset, ii); 497 iOffset += nAlloc; 499 assert((iOffset+nAlloc)>mem5.nBlock);
|
pragma.c | 33 static const u8 iOffset[] = {0, 1, 2, 4, 9, 12, 16}; 42 if( iLength[i]==n && sqlite3StrNICmp(&zText[iOffset[i]],z,n)==0 ){ [all...] |
test6.c | 114 ** not xWrite(). In that case, iOffset is the size that the file is 118 i64 iOffset; /* Byte offset of the start of this write() */ 264 if( iSize==pWrite->iOffset ){ 280 pWrite->pFile, pWrite->zBuf, pWrite->nBuf, pWrite->iOffset 283 rc = sqlite3OsTruncate(pRealFile, pWrite->iOffset); 289 pWrite->nBuf, (int)pWrite->iOffset, pWrite->pFile->zName 301 pWrite->nBuf, (int)pWrite->iOffset, pWrite->pFile->zName 309 int iFirst = (pWrite->iOffset/g.iSectorSize); 310 int iLast = (pWrite->iOffset+pWrite->nBuf-1)/g.iSectorSize; 360 sqlite3_int64 iOffset, [all...] |
test_osinst.c | 119 sqlite3_int64 iOffset; /* Log file offset of start of write buffer */ 624 p->pLog->pMethods->xWrite(p->pLog, p->aBuf, p->nBuf, p->iOffset); 625 p->iOffset += p->nBuf; 739 p->iOffset = 0; 814 sqlite3_int64 iOffset; /* Offset of next record in file */ 966 if( pCsr->iOffset+nRead<=p->nByte ){ 968 rc = p->pFd->pMethods->xRead(p->pFd, pCsr->aBuf, nRead, pCsr->iOffset); 975 rc = p->pFd->pMethods->xRead(p->pFd, buf, 4, pCsr->iOffset+nRead); 980 rc = p->pFd->pMethods->xRead(p->pFd, zStr, nStr, pCsr->iOffset+nRead); 1003 pCsr->iOffset += nRead [all...] |
os_win.c | 633 ** argument to offset iOffset within the file. If successful, return 0. 636 static int seekWinFile(winFile *pFile, sqlite3_int64 iOffset){ 641 upperBits = (LONG)((iOffset>>32) & 0x7fffffff); 642 lowerBits = (LONG)(iOffset & 0xffffffff); [all...] |
wal.c | [all...] |
select.c | 433 if( pSelect->iOffset ){ 434 iLimit = pSelect->iOffset+1; 456 if( p->iOffset && iContinue!=0 ){ 458 sqlite3VdbeAddOp2(v, OP_AddImm, p->iOffset, -1); 459 addr = sqlite3VdbeAddOp1(v, OP_IfNeg, p->iOffset); [all...] |
pager.c | 446 i64 iOffset; /* Starting offset in main journal */ [all...] |
test1.c | [all...] |
sqliteInt.h | [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Sphere.java | 355 int iOffset = (zSamples - 3) * (radialSamples + 1);
358 idxBuf.put((short) (i + iOffset));
359 idxBuf.put((short) (i + 1 + iOffset));
362 idxBuf.put((short) (i + iOffset));
364 idxBuf.put((short) (i + 1 + iOffset));
|
/external/chromium_org/third_party/sqlite/src/ext/async/ |
sqlite3async.c | 417 ** The interpretation of the iOffset and nByte variables varies depending 424 ** iOffset -> Offset in file to write to. 431 ** iOffset -> Size to truncate file to. 435 ** iOffset -> Unused. 439 ** iOffset -> Contains the "syncDir" flag. 443 ** iOffset -> Value of "delflag". 458 sqlite_int64 iOffset; /* See above */ 554 pWrite->pFileData ? pWrite->pFileData->zName : "-", pWrite->iOffset)); 590 sqlite3_int64 iOffset, 609 p->iOffset = iOffset [all...] |
/external/zxing/core/ |
core.jar | |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |
/external/sqlite/dist/orig/ |
sqlite3.c | [all...] |