HomeSort by relevance Sort by last modified time
    Searched refs:pCache (Results 1 - 10 of 10) sorted by null

  /dalvik/libdex/
DexProto.cpp 36 void dexStringCacheAlloc(DexStringCache* pCache, size_t length) {
37 if (pCache->allocatedSize != 0) {
38 if (pCache->allocatedSize >= length) {
41 free((void*) pCache->value);
44 if (length <= sizeof(pCache->buffer)) {
45 pCache->value = pCache->buffer;
46 pCache->allocatedSize = 0;
48 pCache->value = (char*) malloc(length);
49 pCache->allocatedSize = length
    [all...]
DexProto.h 43 void dexStringCacheAlloc(DexStringCache* pCache, size_t length);
49 void dexStringCacheInit(DexStringCache* pCache);
55 void dexStringCacheRelease(DexStringCache* pCache);
64 char* dexStringCacheEnsureCopy(DexStringCache* pCache, const char* value);
73 char* dexStringCacheAbandon(DexStringCache* pCache, const char* value);
104 DexStringCache* pCache);
118 DexStringCache* pCache);
124 const DexMethodId* pMethodId, DexStringCache* pCache)
129 return dexProtoGetMethodDescriptor(&proto, pCache);
  /external/pdfium/core/fpdfapi/render/
cpdf_imageloader.cpp 35 CPDF_PageRenderCache* pCache,
44 m_pCache = pCache;
47 if (pCache) {
48 ret = pCache->StartGetCachedBitmap(
cpdf_imageloader.h 25 CPDF_PageRenderCache* pCache,
cpdf_docrenderdata.cpp 55 CPDF_CountedObject<CPDF_Type3Cache>* pCache;
58 pCache = new CPDF_CountedObject<CPDF_Type3Cache>(
60 m_Type3FaceMap[pFont] = pCache;
62 pCache = it->second;
64 return pCache->AddRef();
cpdf_renderstatus.cpp 894 CPDF_PageRenderCache* pCache,
923 CPDF_RenderContext context(pDoc, pCache);
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndapi.c 676 NJ_SEARCH_CACHE *pCache;
743 pCache = cursor->cond.ds->dic[diccnt].srhCache;
744 if (pCache != NULL) {
746 if (NJ_GET_CACHEOVER_FROM_SCACHE(pCache)) {
749 if (pCache->keyPtr[cacheOverKeyPtr] == pCache->keyPtr[cacheOverKeyPtr + 1] ) {
762 pCache->keyPtr[clrcnt] = 0x0000;
766 if ((pCache->keyPtr[clrcnt - 1] > pCache->keyPtr[clrcnt]) &&
767 (pCache->keyPtr[clrcnt] != 0))
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
  /external/pdfium/core/fxge/win32/
cfx_psrenderer.cpp 652 CFX_FontCache* pCache = CFX_GEModule::Get()->GetFontCache();
653 CFX_FaceCache* pFaceCache = pCache->GetCachedFace(pFont);
670 pCache->ReleaseCachedFace(pFont);

Completed in 735 milliseconds