/external/chromium_org/third_party/sqlite/src/src/ |
D | rowset.c | 105 struct RowSetEntry *pEntry; /* List of entries using pRight */ member 132 p->pEntry = 0; in sqlite3RowSetInit() 155 p->pEntry = 0; in sqlite3RowSetClear() 168 struct RowSetEntry *pEntry; /* The new entry */ in sqlite3RowSetInsert() local 182 pEntry = p->pFresh++; in sqlite3RowSetInsert() 184 pEntry->v = rowid; in sqlite3RowSetInsert() 185 pEntry->pRight = 0; in sqlite3RowSetInsert() 191 pLast->pRight = pEntry; in sqlite3RowSetInsert() 193 assert( p->pEntry==0 ); /* Fires if INSERT after SMALLEST */ in sqlite3RowSetInsert() 194 p->pEntry = pEntry; in sqlite3RowSetInsert() [all …]
|
D | hash.c | 71 struct _ht *pEntry, /* The entry into which pNew is inserted */ in insertElement() argument 75 if( pEntry ){ in insertElement() 76 pHead = pEntry->count ? pEntry->chain : 0; in insertElement() 77 pEntry->count++; in insertElement() 78 pEntry->chain = pNew; in insertElement() 149 struct _ht *pEntry = &pH->ht[h]; in findElementGivenHash() local 150 elem = pEntry->chain; in findElementGivenHash() 151 count = pEntry->count; in findElementGivenHash() 173 struct _ht *pEntry; in removeElementGivenHash() local 183 pEntry = &pH->ht[h]; in removeElementGivenHash() [all …]
|
D | test_malloc.c | 748 Tcl_HashEntry *pEntry; in test_memdebug_callback() local 760 pEntry = Tcl_CreateHashEntry(&aMallocLog, (const char *)aKey, &isNew); in test_memdebug_callback() 764 Tcl_SetHashValue(pEntry, (ClientData)pLog); in test_memdebug_callback() 766 pLog = (MallocLog *)Tcl_GetHashValue(pEntry); in test_memdebug_callback() 777 Tcl_HashEntry *pEntry; in test_memdebug_log_clear() local 779 pEntry=Tcl_FirstHashEntry(&aMallocLog, &search); in test_memdebug_log_clear() 780 pEntry; in test_memdebug_log_clear() 781 pEntry=Tcl_NextHashEntry(&search) in test_memdebug_log_clear() 783 MallocLog *pLog = (MallocLog *)Tcl_GetHashValue(pEntry); in test_memdebug_log_clear() 830 Tcl_HashEntry *pEntry; in test_memdebug_log() local [all …]
|
/external/pdfium/core/src/fpdfdoc/ |
D | doc_formcontrol.cpp | 364 CPDF_Array* pEntry = m_pDict->GetArray(csEntry); in GetColor() local 365 if (pEntry == NULL) { in GetColor() 368 FX_DWORD dwCount = pEntry->GetCount(); in GetColor() 371 FX_FLOAT g = pEntry->GetNumber(0) * 255; in GetColor() 375 FX_FLOAT r = pEntry->GetNumber(0) * 255; in GetColor() 376 FX_FLOAT g = pEntry->GetNumber(1) * 255; in GetColor() 377 FX_FLOAT b = pEntry->GetNumber(2) * 255; in GetColor() 381 FX_FLOAT c = pEntry->GetNumber(0); in GetColor() 382 FX_FLOAT m = pEntry->GetNumber(1); in GetColor() 383 FX_FLOAT y = pEntry->GetNumber(2); in GetColor() [all …]
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
D | fts3_hash.c | 168 struct _fts3ht *pEntry, /* The entry into which pNew is inserted */ in fts3HashInsertElement() argument 172 pHead = pEntry->chain; in fts3HashInsertElement() 185 pEntry->count++; in fts3HashInsertElement() 186 pEntry->chain = pNew; in fts3HashInsertElement() 231 struct _fts3ht *pEntry = &pH->ht[h]; in fts3FindElementByHash() local 232 elem = pEntry->chain; in fts3FindElementByHash() 233 count = pEntry->count; in fts3FindElementByHash() 253 struct _fts3ht *pEntry; in fts3RemoveElementByHash() local 262 pEntry = &pH->ht[h]; in fts3RemoveElementByHash() 263 if( pEntry->chain==elem ){ in fts3RemoveElementByHash() [all …]
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
D | fts2_hash.c | 168 struct _fts2ht *pEntry, /* The entry into which pNew is inserted */ in insertElement() argument 172 pHead = pEntry->chain; in insertElement() 185 pEntry->count++; in insertElement() 186 pEntry->chain = pNew; in insertElement() 228 struct _fts2ht *pEntry = &pH->ht[h]; in findElementGivenHash() local 229 elem = pEntry->chain; in findElementGivenHash() 230 count = pEntry->count; in findElementGivenHash() 250 struct _fts2ht *pEntry; in removeElementGivenHash() local 259 pEntry = &pH->ht[h]; in removeElementGivenHash() 260 if( pEntry->chain==elem ){ in removeElementGivenHash() [all …]
|
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
D | fts1_hash.c | 163 struct _fts1ht *pEntry, /* The entry into which pNew is inserted */ in insertElement() argument 167 pHead = pEntry->chain; in insertElement() 180 pEntry->count++; in insertElement() 181 pEntry->chain = pNew; in insertElement() 223 struct _fts1ht *pEntry = &pH->ht[h]; in findElementGivenHash() local 224 elem = pEntry->chain; in findElementGivenHash() 225 count = pEntry->count; in findElementGivenHash() 245 struct _fts1ht *pEntry; in removeElementGivenHash() local 254 pEntry = &pH->ht[h]; in removeElementGivenHash() 255 if( pEntry->chain==elem ){ in removeElementGivenHash() [all …]
|
D | ft_hash.c | 205 struct _ht *pEntry, /* The entry into which pNew is inserted */ in insertElement() argument 209 pHead = pEntry->chain; in insertElement() 222 pEntry->count++; in insertElement() 223 pEntry->chain = pNew; in insertElement() 265 struct _ht *pEntry = &pH->ht[h]; in findElementGivenHash() local 266 elem = pEntry->chain; in findElementGivenHash() 267 count = pEntry->count; in findElementGivenHash() 287 struct _ht *pEntry; in removeElementGivenHash() local 296 pEntry = &pH->ht[h]; in removeElementGivenHash() 297 if( pEntry->chain==elem ){ in removeElementGivenHash() [all …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/ |
D | mkvparser.cpp | 1723 Entry* pEntry = m_entries; in Parse() local 1739 if (ParseEntry(pReader, pos, size, pEntry)) { in Parse() 1740 Entry& e = *pEntry++; in Parse() 1758 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse() 2022 Entry* pEntry) { in ParseEntry() argument 2068 pEntry->id = ReadUInt(pReader, pos, len); // payload in ParseEntry() 2070 if (pEntry->id <= 0) in ParseEntry() 2101 pEntry->pos = UnserializeUInt(pReader, pos, seekPosSize); in ParseEntry() 2103 if (pEntry->pos < 0) in ParseEntry() 6824 long Cluster::GetEntry(long index, const mkvparser::BlockEntry*& pEntry) const { in GetEntry() [all …]
|
/external/libvpx/libvpx/third_party/libwebm/ |
D | mkvparser.cpp | 1938 Entry* pEntry = m_entries; in Parse() local 1961 if (ParseEntry(pReader, pos, size, pEntry)) in Parse() 1963 Entry& e = *pEntry++; in Parse() 1983 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse() 2271 Entry* pEntry) in ParseEntry() argument 2318 pEntry->id = ReadUInt(pReader, pos, len); //payload in ParseEntry() 2320 if (pEntry->id <= 0) in ParseEntry() 2351 pEntry->pos = UnserializeUInt(pReader, pos, seekPosSize); in ParseEntry() 2353 if (pEntry->pos < 0) in ParseEntry() 7838 long Cluster::GetEntry(long index, const mkvparser::BlockEntry*& pEntry) const in GetEntry() [all …]
|
/external/libvpx/libwebm/ |
D | mkvparser.cpp | 1725 Entry* pEntry = m_entries; in Parse() local 1741 if (ParseEntry(pReader, pos, size, pEntry)) { in Parse() 1742 Entry& e = *pEntry++; in Parse() 1760 ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries); in Parse() 2024 Entry* pEntry) { in ParseEntry() argument 2070 pEntry->id = ReadUInt(pReader, pos, len); // payload in ParseEntry() 2072 if (pEntry->id <= 0) in ParseEntry() 2103 pEntry->pos = UnserializeUInt(pReader, pos, seekPosSize); in ParseEntry() 2105 if (pEntry->pos < 0) in ParseEntry() 6822 long Cluster::GetEntry(long index, const mkvparser::BlockEntry*& pEntry) const { in GetEntry() [all …]
|
/external/pdfium/fpdfsdk/src/ |
D | fsdk_baseannot.cpp | 962 if (CPDF_Array* pEntry = m_pAnnot->m_pAnnotDict->GetArray("C")) in GetColor() local 964 int nCount = pEntry->GetCount(); in GetColor() 967 FX_FLOAT g = pEntry->GetNumber(0) * 255; in GetColor() 975 FX_FLOAT r = pEntry->GetNumber(0) * 255; in GetColor() 976 FX_FLOAT g = pEntry->GetNumber(1) * 255; in GetColor() 977 FX_FLOAT b = pEntry->GetNumber(2) * 255; in GetColor() 985 FX_FLOAT c = pEntry->GetNumber(0); in GetColor() 986 FX_FLOAT m = pEntry->GetNumber(1); in GetColor() 987 FX_FLOAT y = pEntry->GetNumber(2); in GetColor() 988 FX_FLOAT k = pEntry->GetNumber(3); in GetColor()
|
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/ |
D | SDL_macwm.c | 178 …unsigned char * pEntry = (unsigned char *) &pTableGammaTemp->gFormulaData + pTableGammaTemp->gForm… in GetDeviceGammaRampGD() local 188 …*(pEntry + indexChan * entries * bytesPerEntry + indexEntry * entries * bytesPerEntry / 256) >> sh… in GetDeviceGammaRampGD() 195 *(pEntry + indexEntry * entries * bytesPerEntry / 256) >> shiftRightValue; in GetDeviceGammaRampGD()
|
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
D | fpdf_parser_parser.cpp | 455 char* pEntry = pBuf + i * recordsize; in LoadLinearizedCrossRefV4() local 456 if (pEntry[17] == 'f') { in LoadLinearizedCrossRefV4() 460 FX_INT32 offset = FXSYS_atoi(pEntry); in LoadLinearizedCrossRefV4() 463 if (pEntry[c] < '0' || pEntry[c] > '9') { in LoadLinearizedCrossRefV4() 470 FX_INT32 version = FXSYS_atoi(pEntry + 11); in LoadLinearizedCrossRefV4() 539 char* pEntry = pBuf + i * recordsize; in LoadCrossRefV4() local 540 if (pEntry[17] == 'f') { in LoadCrossRefV4() 546 FX_FILESIZE offset = (FX_FILESIZE)FXSYS_atoi64(pEntry); in LoadCrossRefV4() 547 FX_INT32 version = FXSYS_atoi(pEntry + 11); in LoadCrossRefV4() 556 FX_FILESIZE offset = (FX_FILESIZE)FXSYS_atoi64(pEntry); in LoadCrossRefV4() [all …]
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.c | 21442 struct _ht *pEntry, /* The entry into which pNew is inserted */ in insertElement() argument 21446 if( pEntry ){ in insertElement() 21447 pHead = pEntry->count ? pEntry->chain : 0; in insertElement() 21448 pEntry->count++; in insertElement() 21449 pEntry->chain = pNew; in insertElement() 21520 struct _ht *pEntry = &pH->ht[h]; in findElementGivenHash() local 21521 elem = pEntry->chain; in findElementGivenHash() 21522 count = pEntry->count; in findElementGivenHash() 21544 struct _ht *pEntry; in removeElementGivenHash() local 21554 pEntry = &pH->ht[h]; in removeElementGivenHash() [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 23682 struct _ht *pEntry, /* The entry into which pNew is inserted */ 23686 if( pEntry ){ 23687 pHead = pEntry->count ? pEntry->chain : 0; 23688 pEntry->count++; 23689 pEntry->chain = pNew; 23764 struct _ht *pEntry = &pH->ht[h]; 23765 elem = pEntry->chain; 23766 count = pEntry->count; 23788 struct _ht *pEntry; 23798 pEntry = &pH->ht[h]; [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 23682 struct _ht *pEntry, /* The entry into which pNew is inserted */ 23686 if( pEntry ){ 23687 pHead = pEntry->count ? pEntry->chain : 0; 23688 pEntry->count++; 23689 pEntry->chain = pNew; 23764 struct _ht *pEntry = &pH->ht[h]; 23765 elem = pEntry->chain; 23766 count = pEntry->count; 23788 struct _ht *pEntry; 23798 pEntry = &pH->ht[h]; [all …]
|