HomeSort by relevance Sort by last modified time
    Searched defs:pEntry (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/sqlite/src/src/
hash.c 66 /* 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 = &pH->ht[h]
    [all...]
rowset.c 105 struct RowSetEntry *pEntry; /* List of entries using pRight */
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 */
182 pEntry = p->pFresh++;
184 pEntry->v = rowid;
185 pEntry->pRight = 0;
191 pLast->pRight = pEntry;
    [all...]
test_malloc.c 748 Tcl_HashEntry *pEntry;
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;
779 pEntry=Tcl_FirstHashEntry(&aMallocLog, &search);
780 pEntry;
781 pEntry=Tcl_NextHashEntry(&search)
783 MallocLog *pLog = (MallocLog *)Tcl_GetHashValue(pEntry);
830 Tcl_HashEntry *pEntry;
    [all...]
  /build/tools/zipalign/
ZipAlign.cpp 51 ZipEntry* pEntry;
59 pEntry = pZin->getEntryByIndex(i);
60 if (pEntry == NULL) {
65 if (pEntry->isCompressed()) {
68 // pEntry->getFileName(), (long) pEntry->getFileOffset(),
69 // (long) pEntry->getUncompressedLen());
72 status = pZout->addRecompress(pZin, pEntry, &pNewEntry);
73 bias += pNewEntry->getCompressedLen() - pEntry->getCompressedLen();
75 status = pZout->add(pZin, pEntry, padding, &pNewEntry)
    [all...]
ZipFile.cpp 163 ZipEntry* pEntry = mEntries[idx];
164 if (!pEntry->getDeleted() &&
165 strcmp(fileName, pEntry->getFileName()) == 0)
167 return pEntry;
311 ZipEntry* pEntry = new ZipEntry;
313 result = pEntry->initFromCDE(mZipFp);
316 delete pEntry;
320 mEntries.add(pEntry);
364 ZipEntry* pEntry = NULL;
396 pEntry = new ZipEntry
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
ft_hash.c 205 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];
266 elem = pEntry->chain;
267 count = pEntry->count;
287 struct _ht *pEntry;
296 pEntry = &pH->ht[h]
    [all...]
fts1_hash.c 163 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];
224 elem = pEntry->chain;
225 count = pEntry->count;
245 struct _fts1ht *pEntry;
254 pEntry = &pH->ht[h]
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_hash.c 168 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];
229 elem = pEntry->chain;
230 count = pEntry->count;
250 struct _fts2ht *pEntry;
259 pEntry = &pH->ht[h]
    [all...]
  /frameworks/av/media/libmediaplayerservice/
Crypto.cpp 110 struct dirent* pEntry;
111 while ((pEntry = readdir(pDir))) {
113 pluginPath = dirPath + "/" + pEntry->d_name;
Drm.cpp 171 struct dirent* pEntry;
172 while ((pEntry = readdir(pDir))) {
174 String8 pluginPath = dirPath + "/" + pEntry->d_name;
  /art/runtime/jdwp/
jdwp_socket.cc 266 hostent* pEntry;
279 int cc = gethostbyname_r(options->host.c_str(), &he, auxBuf, sizeof(auxBuf), &pEntry, &error);
286 pEntry = gethostbyname(options->host.c_str());
287 if (pEntry == NULL) {
294 memcpy(&addr.addrInet.sin_addr, pEntry->h_addr, pEntry->h_length);
295 addr.addrInet.sin_family = pEntry->h_addrtype;
  /bootable/recovery/minzip/
Hash.c 182 HashEntry* pEntry;
191 pEntry = &pHashTable->pEntries[itemHash & (pHashTable->tableSize-1)];
193 while (pEntry->data != NULL) {
194 if (pEntry->data != HASH_TOMBSTONE &&
195 pEntry->hashValue == itemHash &&
196 (*cmpFunc)(pEntry->data, item) == 0)
199 //LOGD("+++ match on entry %d\n", pEntry - pHashTable->pEntries);
203 pEntry++;
204 if (pEntry == pEnd) { /* wrap around to start */
207 pEntry = pHashTable->pEntries
    [all...]
Zip.c 91 static void dumpEntry(const ZipEntry* pEntry)
93 LOGI(" %p '%.*s'\n", pEntry->fileName,pEntry->fileNameLen,pEntry->fileName);
94 LOGI(" off=%ld comp=%ld uncomp=%ld how=%d\n", pEntry->offset,
95 pEntry->compLen, pEntry->uncompLen, pEntry->compression);
146 static void addEntryToHashTable(HashTable* pHash, ZipEntry* pEntry)
148 unsigned int itemHash = computeHash(pEntry->fileName, pEntry->fileNameLen)
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_hash.c 168 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];
232 elem = pEntry->chain;
233 count = pEntry->count;
253 struct _fts3ht *pEntry;
262 pEntry = &pH->ht[h]
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macwm.c 178 unsigned char * pEntry = (unsigned char *) &pTableGammaTemp->gFormulaData + pTableGammaTemp->gFormulaSize; /* base of table */
188 *(pEntry + indexChan * entries * bytesPerEntry + indexEntry * entries * bytesPerEntry / 256) >> shiftRightValue;
195 *(pEntry + indexEntry * entries * bytesPerEntry / 256) >> shiftRightValue;
  /frameworks/av/drm/libdrmframework/include/
PlugInManager.h 205 struct dirent* pEntry;
207 while (NULL != pDir && NULL != (pEntry = readdir(pDir))) {
208 if (!isPlugIn(pEntry)) {
214 plugInPath += pEntry->d_name;
229 bool isPlugIn(const struct dirent* pEntry) const {
230 String8 sName(pEntry->d_name);
239 bool isDotOrDDot(const struct dirent* pEntry) const {
240 String8 sName(pEntry->d_name);
247 bool isDirectory(const struct dirent* pEntry) const {
248 return DT_DIR == pEntry->d_type
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_formcontrol.cpp 364 CPDF_Array* pEntry = m_pDict->GetArray(csEntry);
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->GetNumber(2);
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 161 ZipEntry* pEntry = mEntries[idx];
162 if (!pEntry->getDeleted() &&
163 strcmp(fileName, pEntry->getFileName()) == 0)
165 return pEntry;
309 ZipEntry* pEntry = new ZipEntry;
311 result = pEntry->initFromCDE(mZipFp);
314 delete pEntry;
318 mEntries.add(pEntry);
362 ZipEntry* pEntry = NULL;
394 pEntry = new ZipEntry
    [all...]
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 389 const mkvparser::SeekHead::Entry* pEntry;
393 pEntry = pSH->GetEntry(index);
395 if (pEntry->id == 0x0C53BB6B) { // Cues ID
397 pSegment->ParseCues(pEntry->pos, pos, len);
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_parser.cpp 455 char* pEntry = pBuf + i * recordsize;
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;
540 if (pEntry[17] == 'f') {
546 FX_FILESIZE offset = (FX_FILESIZE)FXSYS_atoi64(pEntry);
547 FX_INT32 version = FXSYS_atoi(pEntry + 11)
    [all...]
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 479 milliseconds

1 2