Searched refs:pEntry (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Drowset.c105 struct RowSetEntry *pEntry; /* List of entries using pRight */ member in struct:RowSet
106 struct RowSetEntry *pLast; /* Last entry on the pEntry list */
110 u8 isSorted; /* True if pEntry is sorted */
132 p->pEntry = 0;
155 p->pEntry = 0;
168 struct RowSetEntry *pEntry; /* The new entry */ local
182 pEntry = p->pFresh++;
184 pEntry->v = rowid;
185 pEntry->pRight = 0;
191 pLast->pRight = pEntry;
243 struct RowSetEntry *pEntry; local
[all...]
H A Dhash.c66 /* Link pNew element into the hash table pH. If pEntry!=0 then also
67 ** insert pNew into the pEntry hash bucket.
71 struct _ht *pEntry, /* The entry into which pNew is inserted */
74 HashElem *pHead; /* First element already in pEntry */
75 if( pEntry ){
76 pHead = pEntry->count ? pEntry->chain : 0;
77 pEntry->count++;
78 pEntry->chain = pNew;
149 struct _ht *pEntry local
69 insertElement( Hash *pH, struct _ht *pEntry, HashElem *pNew ) argument
173 struct _ht *pEntry; local
[all...]
H A Dtest_malloc.c748 Tcl_HashEntry *pEntry; local
760 pEntry = Tcl_CreateHashEntry(&aMallocLog, (const char *)aKey, &isNew);
764 Tcl_SetHashValue(pEntry, (ClientData)pLog);
766 pLog = (MallocLog *)Tcl_GetHashValue(pEntry);
777 Tcl_HashEntry *pEntry; local
779 pEntry=Tcl_FirstHashEntry(&aMallocLog, &search);
780 pEntry;
781 pEntry=Tcl_NextHashEntry(&search)
783 MallocLog *pLog = (MallocLog *)Tcl_GetHashValue(pEntry);
830 Tcl_HashEntry *pEntry; local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dft_hash.c205 struct _ht *pEntry, /* The entry into which pNew is inserted */
208 HashElem *pHead; /* First element already in pEntry */
209 pHead = pEntry->chain;
222 pEntry->count++;
223 pEntry->chain = pNew;
265 struct _ht *pEntry = &pH->ht[h]; local
266 elem = pEntry->chain;
267 count = pEntry->count;
287 struct _ht *pEntry; local
296 pEntry
203 insertElement( Hash *pH, struct _ht *pEntry, HashElem *pNew ) argument
[all...]
H A Dfts1_hash.c163 struct _fts1ht *pEntry, /* The entry into which pNew is inserted */
166 fts1HashElem *pHead; /* First element already in pEntry */
167 pHead = pEntry->chain;
180 pEntry->count++;
181 pEntry->chain = pNew;
223 struct _fts1ht *pEntry = &pH->ht[h]; local
224 elem = pEntry->chain;
225 count = pEntry->count;
245 struct _fts1ht *pEntry; local
254 pEntry
161 insertElement( fts1Hash *pH, struct _fts1ht *pEntry, fts1HashElem *pNew ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_hash.c168 struct _fts2ht *pEntry, /* The entry into which pNew is inserted */
171 fts2HashElem *pHead; /* First element already in pEntry */
172 pHead = pEntry->chain;
185 pEntry->count++;
186 pEntry->chain = pNew;
228 struct _fts2ht *pEntry = &pH->ht[h]; local
229 elem = pEntry->chain;
230 count = pEntry->count;
250 struct _fts2ht *pEntry; local
259 pEntry
166 insertElement( fts2Hash *pH, struct _fts2ht *pEntry, fts2HashElem *pNew ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_hash.c168 struct _fts3ht *pEntry, /* The entry into which pNew is inserted */
171 Fts3HashElem *pHead; /* First element already in pEntry */
172 pHead = pEntry->chain;
185 pEntry->count++;
186 pEntry->chain = pNew;
231 struct _fts3ht *pEntry = &pH->ht[h]; local
232 elem = pEntry->chain;
233 count = pEntry->count;
253 struct _fts3ht *pEntry; local
262 pEntry
166 fts3HashInsertElement( Fts3Hash *pH, struct _fts3ht *pEntry, Fts3HashElem *pNew ) argument
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_formcontrol.cpp364 CPDF_Array* pEntry = m_pDict->GetArray(csEntry); local
365 if (pEntry == NULL) {
368 FX_DWORD dwCount = pEntry->GetCount();
371 FX_FLOAT g = pEntry->GetNumber(0) * 255;
375 FX_FLOAT r = pEntry->GetNumber(0) * 255;
376 FX_FLOAT g = pEntry->GetNumber(1) * 255;
377 FX_FLOAT b = pEntry->GetNumber(2) * 255;
381 FX_FLOAT c = pEntry->GetNumber(0);
382 FX_FLOAT m = pEntry->GetNumber(1);
383 FX_FLOAT y = pEntry
397 CPDF_Array* pEntry = m_pDict->GetArray(csEntry); local
412 CPDF_Array* pEntry = m_pDict->GetArray(csEntry); local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvparser.cpp1723 Entry* pEntry = m_entries;
1739 if (ParseEntry(pReader, pos, size, pEntry)) {
1740 Entry& e = *pEntry++;
1758 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries);
2022 Entry* pEntry) {
2068 pEntry->id = ReadUInt(pReader, pos, len); // payload
2070 if (pEntry->id <= 0)
2101 pEntry->pos = UnserializeUInt(pReader, pos, seekPosSize);
2103 if (pEntry->pos < 0)
6824 long Cluster::GetEntry(long index, const mkvparser::BlockEntry*& pEntry) cons
2021 ParseEntry(IMkvReader* pReader, long long start, long long size_, Entry* pEntry) argument
[all...]
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvparser.cpp1938 Entry* pEntry = m_entries;
1961 if (ParseEntry(pReader, pos, size, pEntry))
1963 Entry& e = *pEntry++;
1983 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries);
2271 Entry* pEntry)
2318 pEntry->id = ReadUInt(pReader, pos, len); //payload
2320 if (pEntry->id <= 0)
2351 pEntry->pos = UnserializeUInt(pReader, pos, seekPosSize);
2353 if (pEntry->pos < 0)
7838 long Cluster::GetEntry(long index, const mkvparser::BlockEntry*& pEntry) cons
2267 ParseEntry( IMkvReader* pReader, long long start, long long size_, Entry* pEntry) argument
[all...]
/external/libvpx/libwebm/
H A Dmkvparser.cpp1725 Entry* pEntry = m_entries;
1741 if (ParseEntry(pReader, pos, size, pEntry)) {
1742 Entry& e = *pEntry++;
1760 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries);
2024 Entry* pEntry) {
2070 pEntry->id = ReadUInt(pReader, pos, len); // payload
2072 if (pEntry->id <= 0)
2103 pEntry->pos = UnserializeUInt(pReader, pos, seekPosSize);
2105 if (pEntry->pos < 0)
6822 long Cluster::GetEntry(long index, const mkvparser::BlockEntry*& pEntry) cons
2023 ParseEntry(IMkvReader* pReader, long long start, long long size_, Entry* pEntry) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macwm.c178 unsigned char * pEntry = (unsigned char *) &pTableGammaTemp->gFormulaData + pTableGammaTemp->gFormulaSize; /* base of table */ local
188 *(pEntry + indexChan * entries * bytesPerEntry + indexEntry * entries * bytesPerEntry / 256) >> shiftRightValue;
195 *(pEntry + indexEntry * entries * bytesPerEntry / 256) >> shiftRightValue;
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_parser.cpp455 char* pEntry = pBuf + i * recordsize; local
456 if (pEntry[17] == 'f') {
460 FX_INT32 offset = FXSYS_atoi(pEntry);
463 if (pEntry[c] < '0' || pEntry[c] > '9') {
470 FX_INT32 version = FXSYS_atoi(pEntry + 11);
539 char* pEntry = pBuf + i * recordsize; local
540 if (pEntry[17] == 'f') {
546 FX_FILESIZE offset = (FX_FILESIZE)FXSYS_atoi64(pEntry);
547 FX_INT32 version = FXSYS_atoi(pEntry
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c21437 /* Link pNew element into the hash table pH. If pEntry!=0 then also
21438 ** insert pNew into the pEntry hash bucket.
21442 struct _ht *pEntry, /* The entry into which pNew is inserted */
21445 HashElem *pHead; /* First element already in pEntry */
21446 if( pEntry ){
21447 pHead = pEntry->count ? pEntry->chain : 0;
21448 pEntry->count++;
21449 pEntry->chain = pNew;
21520 struct _ht *pEntry local
21440 insertElement( Hash *pH, struct _ht *pEntry, HashElem *pNew ) argument
21544 struct _ht *pEntry; local
35990 struct RowSetEntry *pEntry; /* List of entries using pRight */ member in struct:RowSet
36053 struct RowSetEntry *pEntry; /* The new entry */ local
36128 struct RowSetEntry *pEntry; local
118336 fts3HashInsertElement( Fts3Hash *pH, struct _fts3ht *pEntry, Fts3HashElem *pNew ) argument
118401 struct _fts3ht *pEntry = &pH->ht[h]; local
118423 struct _fts3ht *pEntry; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c23671 /* Link pNew element into the hash table pH. If pEntry!=0 then also
23672 ** insert pNew into the pEntry hash bucket.
23676 struct _ht *pEntry, /* The entry into which pNew is inserted */
23679 HashElem *pHead; /* First element already in pEntry */
23680 if( pEntry ){
23681 pHead = pEntry->count ? pEntry->chain : 0;
23682 pEntry->count++;
23683 pEntry->chain = pNew;
23758 struct _ht *pEntry local
23674 insertElement( Hash *pH, struct _ht *pEntry, HashElem *pNew ) argument
23782 struct _ht *pEntry; local
39706 struct RowSetEntry *pEntry; /* List of entries using pRight */ member in struct:RowSet
39800 struct RowSetEntry *pEntry; /* The new entry */ local
134636 fts3HashInsertElement( Fts3Hash *pH, struct _fts3ht *pEntry, Fts3HashElem *pNew ) argument
134701 struct _fts3ht *pEntry = &pH->ht[h]; local
134723 struct _fts3ht *pEntry; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c23671 /* Link pNew element into the hash table pH. If pEntry!=0 then also
23672 ** insert pNew into the pEntry hash bucket.
23676 struct _ht *pEntry, /* The entry into which pNew is inserted */
23679 HashElem *pHead; /* First element already in pEntry */
23680 if( pEntry ){
23681 pHead = pEntry->count ? pEntry->chain : 0;
23682 pEntry->count++;
23683 pEntry->chain = pNew;
23758 struct _ht *pEntry local
23674 insertElement( Hash *pH, struct _ht *pEntry, HashElem *pNew ) argument
23782 struct _ht *pEntry; local
39726 struct RowSetEntry *pEntry; /* List of entries using pRight */ member in struct:RowSet
39820 struct RowSetEntry *pEntry; /* The new entry */ local
134668 fts3HashInsertElement( Fts3Hash *pH, struct _fts3ht *pEntry, Fts3HashElem *pNew ) argument
134733 struct _fts3ht *pEntry = &pH->ht[h]; local
134755 struct _fts3ht *pEntry; local
[all...]

Completed in 753 milliseconds