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

1 2

  /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/xfa/src/fgas/src/font/
fx_gdifont.cpp 139 CFX_GdiFontCache* pCache;
141 pCache = NULL;
142 m_FontCache.GetNextAssoc(pos, (void*&)dwMAT2, (void*&)pCache);
143 if (pCache != NULL) {
144 delete pCache;
469 CFX_GdiFontCache* pCache = NULL;
470 if (m_FontCache.Lookup((void*)dwMAT2, (void*&)pCache) && pCache != NULL) {
471 FX_LPCGDIGOCACHE pGO = pCache->GetCachedGlyphOutline(iGlyphIndex);
486 if (pCache == NULL) {
    [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/pdfium/core/src/fxcodec/codec/
fx_codec_icc.cpp 410 CFX_IccProfileCache* pCache = NULL;
439 pCache = new CFX_IccProfileCache;
442 pCache->m_pProfile = cmsOpenProfileFromMem(pIccParam->pProfileData,
448 pCache->m_pProfile = cmsCreate_sRGBProfile();
451 pCache->m_pProfile = CreateProfile_Gray(pIccParam->Gamma);
460 m_MapProfile[ProfileKey] = pCache;
462 pCache = it->second;
463 pCache->m_dwRate++;
465 return pCache->m_pProfile;
    [all...]
  /external/pdfium/xfa/src/fdp/src/css/
fde_cssstyleselector.cpp 319 FDE_LPCSSTAGCACHE pCache = m_pAccelerator->GetTopElement();
320 FXSYS_assert(pCache != NULL && pCache->GetTag() == pTag);
330 MatchRules(pCache, rules.GetUniversalRuleData(), ePersudoType);
331 if (pCache->HashTag()) {
332 MatchRules(pCache, rules.GetTagRuleData(pCache->HashTag()),
335 int32_t iCount = pCache->CountHashClass();
337 pCache->SetClassIndex(i);
338 MatchRules(pCache, rules.GetClassRuleData(pCache->HashClass()),
    [all...]
fde_cssdeclaration.cpp 52 CFX_MapPtrToPtr* pCache = pArgs->pStringCache;
54 if (pCache) {
58 if (pCache->Lookup(pKey, pszCached)) {
69 if (pCache) {
70 pCache->SetAt(pKey, psz);
    [all...]
  /external/pdfium/core/src/fxge/apple/
fx_apple_platform.cpp 46 CFX_FontCache* pCache,
103 CFX_FontCache* pCache,
156 _CGDrawGlyphRun(ctx, nChars, pCharPos, pFont, pCache, pObject2Device,
apple_int.h 168 CFX_FontCache* pCache,
188 CFX_FontCache* pCache,
fx_quartz_device.cpp 741 CFX_FontCache* pCache,
807 CFX_FontCache* pCache,
829 ret = CG_DrawGlypRun(i, pCharPos, pFont, pCache, NULL, pObject2Device,
846 ret = CG_DrawGlypRun(1, char_pos, pFont, pCache, &glphy_matrix,
862 ret = CG_DrawGlypRun(i, pCharPos, pFont, pCache, NULL, pObject2Device,
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 452 CPDF_Type3Cache* pCache = GetCachedType3(pType3Font);
454 CFX_GlyphBitmap* pBitmap = pCache->LoadGlyph(charcode, &matrix, sa, sd);
599 CFX_FontCache* pCache =
605 &pFont->m_Font, pCache, font_size, pText2User,
690 CFX_FontCache* pCache =
723 &pFont->m_Font, pCache, font_size,
750 CFX_FontCache* pCache;
752 pCache = pFont->m_pDocument->GetRenderData()->GetFontCache();
754 pCache = CFX_GEModule::Get()->GetFontCache();
756 CFX_FaceCache* pFaceCache = pCache->GetCachedFace(&pFont->m_Font)
    [all...]
fpdf_render_cache.cpp 336 CFX_FontCache* pCache = m_pDocRender->GetFontCache();
337 if (pCache) {
338 pCache->FreeCache(FALSE);
fpdf_render_loadimage.cpp     [all...]
fpdf_render.cpp 53 CPDF_CountedObject<CPDF_Type3Cache>* pCache;
57 pCache = new CPDF_CountedObject<CPDF_Type3Cache>(pType3);
58 m_Type3FaceMap[pFont] = pCache;
60 pCache = it->second;
62 return pCache->AddRef();
88 void DestroyPageCache(CPDF_PageRenderCache* pCache) override;
107 void CPDF_RenderModule::DestroyPageCache(CPDF_PageRenderCache* pCache) {
108 delete pCache;
    [all...]
render_int.h 281 CPDF_PageRenderCache* pCache,
307 CPDF_PageRenderCache* pCache,
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.h 117 CFX_FontCache* pCache,
  /external/pdfium/core/include/fxge/
fx_ge.h 381 CFX_FontCache* pCache,
392 CFX_FontCache* pCache,
595 CFX_FontCache* pCache,
685 CFX_FontCache* pCache,
  /external/pdfium/core/src/fxge/agg/include/
fx_agg_driver.h 118 CFX_FontCache* pCache,
  /external/pdfium/core/src/fxge/ge/
fx_ge_text.cpp 177 CFX_FontCache* pCache,
196 m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache,
217 m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache,
236 return DrawTextPath(nChars, pCharPos, pFont, pCache, font_size,
267 if (!pCache) {
268 pCache = CFX_GEModule::Get()->GetFontCache();
270 CFX_FaceCache* pFaceCache = pCache->GetCachedFace(pFont);
271 FX_FONTCACHE_DEFINE(pCache, pFont);
    [all...]
fx_ge_ps.cpp 645 CFX_FontCache* pCache,
666 if (!pCache) {
667 pCache = CFX_GEModule::Get()->GetFontCache();
669 CFX_FaceCache* pFaceCache = pCache->GetCachedFace(pFont);
670 FX_FONTCACHE_DEFINE(pCache, pFont);
  /external/pdfium/xfa/src/fdp/src/fde/
fde_gedevice.cpp 141 CFX_FontCache* pCache = CFX_GEModule::Get()->GetFontCache();
182 m_pDevice->DrawNormalText(iCurCount, pCurCP, &FxFont, pCache,
186 m_pDevice->DrawNormalText(iCurCount, pCurCP, pFxFont, pCache,
204 iCurCount, pCurCP, &FxFont, pCache, -fFontSize,
210 return m_pDevice->DrawNormalText(iCurCount, pCurCP, pFxFont, pCache,
  /external/pdfium/core/src/fxge/win32/
fx_win32_print.cpp 465 CFX_FontCache* pCache,
471 return m_PSRenderer.DrawText(nChars, pCharPos, pFont, pCache, pObject2Device,
win32_int.h 349 CFX_FontCache* pCache,

Completed in 886 milliseconds

1 2