/external/chromium_org/third_party/sqlite/src/src/ |
hash.h | 62 const char *pKey; int nKey; /* Key associated with this element */ 69 void *sqlite3HashInsert(Hash*, const char *pKey, int nKey, void *pData); 70 void *sqlite3HashFind(const Hash*, const char *pKey, int nKey); 89 /* #define sqliteHashKeysize(E) ((E)->nKey) // NOT USED */
|
hash.c | 55 static unsigned int strHash(const char *z, int nKey){ 57 assert( nKey>=0 ); 58 while( nKey > 0 ){ 60 nKey--; 128 unsigned int h = strHash(elem->pKey, elem->nKey) % new_size; 142 int nKey, /* Bytes in key (not counting zero terminator) */ 157 if( elem->nKey==nKey && sqlite3StrNICmp(elem->pKey,pKey,nKey)==0 ){ 200 ** that matches pKey,nKey. Return the data for this element if it i [all...] |
attach.c | 159 int nKey; 171 nKey = sqlite3_value_bytes(argv[2]); 173 rc = sqlite3CodecAttach(db, db->nDb-1, zKey, nKey); 178 sqlite3CodecGetKey(db, 0, (void**)&zKey, &nKey); 179 if( nKey>0 || sqlite3BtreeGetReserve(db->aDb[0].pBt)>0 ){ 180 rc = sqlite3CodecAttach(db, db->nDb-1, zKey, nKey);
|
btreeInt.h | 449 i64 nKey; /* The key for INTKEY tables, or number of bytes in key */ 492 i64 nKey; /* Size of pKey, or last integer key */ 497 u8 validNKey; /* True if info.nKey is valid */ 522 ** in variables BtCursor.pKey and BtCursor.nKey. When a cursor is in
|
vacuum.c | 172 int nKey; 174 sqlite3CodecGetKey(db, 0, (void**)&zKey, &nKey); 175 if( nKey ) db->nextPagesize = 0;
|
btree.c | 477 if( p->isIncrblobHandle && (isClearTable || p->info.nKey==iRow) ){ 562 ** Save the current cursor position in the variables BtCursor.nKey 575 rc = sqlite3BtreeKeySize(pCur, &pCur->nKey); 579 ** stores the integer key in pCur->nKey. In this case this value is 581 ** table, then malloc space for and store the pCur->nKey bytes of key 585 void *pKey = sqlite3Malloc( (int)pCur->nKey ); 587 rc = sqlite3BtreeKey(pCur, 0, (int)pCur->nKey, pKey); 652 i64 nKey, /* Integer key for tables. Size of pKey for indices */ 661 assert( nKey==(i64)(int)nKey ); [all...] |
btree.h | 158 int sqlite3BtreeInsert(BtCursor*, const void *pKey, i64 nKey,
|
test_malloc.c | 752 int nKey = sizeof(int)*MALLOC_LOG_KEYINTS; 754 memset(aKey, 0, nKey); 755 if( (sizeof(void*)*nFrame)<nKey ){ 756 nKey = nFrame*sizeof(void*); 758 memcpy(aKey, aFrame, nKey); [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
ft_hash.h | 55 void *pKey; int nKey; /* Key associated with this element */ 61 ** HASH_INT nKey is used as the key and pKey is ignored. 63 ** HASH_POINTER pKey is used as the key and nKey is ignored. 65 ** HASH_STRING pKey points to a string that is nKey bytes long 69 ** HASH_BINARY pKey points to binary data nKey bytes long. 84 void *HashInsert(Hash*, const void *pKey, int nKey, void *pData); 85 void *HashFind(const Hash*, const void *pKey, int nKey); 104 #define HashKeysize(E) ((E)->nKey)
|
fts1_hash.h | 55 void *pKey; int nKey; /* Key associated with this element */ 61 ** FTS1_HASH_STRING pKey points to a string that is nKey bytes long 65 ** FTS1_HASH_BINARY pKey points to binary data nKey bytes long. 77 void *sqlite3Fts1HashInsert(fts1Hash*, const void *pKey, int nKey, void *pData); 78 void *sqlite3Fts1HashFind(const fts1Hash*, const void *pKey, int nKey); 105 #define fts1HashKeysize(E) ((E)->nKey)
|
ft_hash.c | 86 static int intHash(const void *pKey, int nKey){ 87 return nKey ^ (nKey<<8) ^ (nKey>>8); 98 static int ptrHash(const void *pKey, int nKey){ 112 static int strHash(const void *pKey, int nKey){ 115 if( nKey<=0 ) nKey = (int) strlen(z); 116 while( nKey > 0 ){ 118 nKey-- [all...] |
fts1_hash.c | 92 static int strHash(const void *pKey, int nKey){ 95 if( nKey<=0 ) nKey = (int) strlen(z); 96 while( nKey > 0 ){ 98 nKey--; 110 static int binHash(const void *pKey, int nKey){ 113 while( nKey-- > 0 ){ 202 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); 215 int nKey, 228 if( (*xCompare)(elem->pKey,elem->nKey,pKey,nKey)==0 ){ [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_hash.h | 53 void *pKey; int nKey; /* Key associated with this element */ 59 ** FTS2_HASH_STRING pKey points to a string that is nKey bytes long 63 ** FTS2_HASH_BINARY pKey points to binary data nKey bytes long. 75 void *sqlite3Fts2HashInsert(fts2Hash*, const void *pKey, int nKey, void *pData); 76 void *sqlite3Fts2HashFind(const fts2Hash*, const void *pKey, int nKey); 103 #define fts2HashKeysize(E) ((E)->nKey)
|
fts2_hash.c | 97 static int strHash(const void *pKey, int nKey){ 100 if( nKey<=0 ) nKey = (int) strlen(z); 101 while( nKey > 0 ){ 103 nKey--; 115 static int binHash(const void *pKey, int nKey){ 118 while( nKey-- > 0 ){ 207 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); 220 int nKey, 233 if( (*xCompare)(elem->pKey,elem->nKey,pKey,nKey)==0 ){ [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_hash.h | 53 void *pKey; int nKey; /* Key associated with this element */ 59 ** FTS3_HASH_STRING pKey points to a string that is nKey bytes long 63 ** FTS3_HASH_BINARY pKey points to binary data nKey bytes long. 75 void *sqlite3Fts3HashInsert(Fts3Hash*, const void *pKey, int nKey, void *pData); 76 void *sqlite3Fts3HashFind(const Fts3Hash*, const void *pKey, int nKey); 105 #define fts3HashKeysize(E) ((E)->nKey)
|
fts3_hash.c | 97 static int fts3StrHash(const void *pKey, int nKey){ 100 if( nKey<=0 ) nKey = (int) strlen(z); 101 while( nKey > 0 ){ 103 nKey--; 115 static int fts3BinHash(const void *pKey, int nKey){ 118 while( nKey-- > 0 ){ 209 int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); 223 int nKey, 236 if( (*xCompare)(elem->pKey,elem->nKey,pKey,nKey)==0 ){ [all...] |
fts3_expr.c | 365 int nKey = pKey->n; 370 assert( nKey==4 ); 373 for(nKey=5; zInput[nKey]>='0' && zInput[nKey]<='9'; nKey++){ 374 nNear = nNear * 10 + (zInput[nKey] - '0'); 383 cNext = zInput[nKey]; 394 *pnConsumed = (int)((zInput - z) + nKey);
|
/frameworks/native/include/media/openmax/ |
OMX_Component.h | 265 OMX_U8 nKey[128]; 305 OMX_U8 nKey [128];
|
/hardware/qcom/media/mm-core/inc/ |
OMX_Component.h | 248 OMX_U8 nKey[128]; 288 OMX_U8 nKey [128];
|
/hardware/qcom/media/mm-core/omxcore/inc/ |
OMX_Component.h | 248 OMX_U8 nKey[128]; 288 OMX_U8 nKey [128];
|
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/include/khronos/ |
OMX_Component.h | 248 OMX_U8 nKey[128]; 288 OMX_U8 nKey [128];
|
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/ |
OMX_Component.h | 248 OMX_U8 nKey[128]; 288 OMX_U8 nKey [128];
|
/hardware/ti/omap4xxx/domx/omx_core/inc/ |
OMX_Component.h | 248 OMX_U8 nKey[128]; 288 OMX_U8 nKey [128];
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |
/external/sqlite/dist/orig/ |
sqlite3.c | [all...] |