Home
last modified time | relevance | path

Searched refs:gID (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/gpu/mock/
DGrMockGpu.cpp16 static int gID = 0; in NextInternalTextureID() local
17 return sk_atomic_inc(&gID) + 1; in NextInternalTextureID()
23 static int gID = 0; in NextExternalTextureID() local
24 return sk_atomic_dec(&gID) - 1; in NextExternalTextureID()
/external/skia/src/pdf/
DSkPDFFont.cpp542 for (unsigned gID = firstGlyphID; gID <= lastGlyphID; gID++) { in populate_type_1_font() local
543 advance = glyphCache->getGlyphIDAdvance(gID).fAdvanceX; in populate_type_1_font()
555 for (int gID = firstGlyphID; gID <= lastGlyphID; gID++) { in populate_type_1_font() local
556 const bool valid = gID < glyphNames.count() && !glyphNames[gID].isEmpty(); in populate_type_1_font()
557 const SkString& name = valid ? glyphNames[gID] : unknown; in populate_type_1_font()
660 for (SkGlyphID gID : SingleByteGlyphIdIterator(firstGlyphID, lastGlyphID)) { in add_type3_font_info() local
661 bool skipGlyph = gID != 0 && !subset.has(gID); in add_type3_font_info()
668 characterName.printf("g%X", gID); in add_type3_font_info()
669 const SkGlyph& glyph = cache->getGlyphIDMetrics(gID); in add_type3_font_info()
/external/skia/src/core/
DSkPixelRef.cpp18 static uint32_t gID = 0; in ImageID() local
22 id = sk_atomic_fetch_add(&gID, 2u) + 2; // Never set the low bit. in ImageID()
/external/icu/icu4c/source/test/intltest/
Dnmfmapts.cpp284 return (UClassID)&gID; in getDynamicClassID()
289 return (UClassID)&gID; in getStaticClassID()
293 static char gID; member in NFTestFactory
296 char NFTestFactory::gID = 0; member in NFTestFactory
/external/skia/src/gpu/
DGrMemoryPool.cpp84 SkDEBUGCODE(allocData->fID = []{static int32_t gID; return sk_atomic_inc(&gID) + 1;}()); in allocate() local
DGrTessellator.cpp464 static int gID = 0; in Poly() local
465 fID = gID++; in Poly()
624 static float gID = 0.0f; in append_point_to_contour() local
625 v->fID = gID++; in append_point_to_contour()
1716 static float gID = 0.0f; in sort_mesh() local
1717 v->fID = gID++; in sort_mesh()
/external/skia/src/image/
DSkSurface.cpp115 static int32_t gID; in newGenerationID() local
116 return sk_atomic_inc(&gID) + 1; in newGenerationID()
/external/skia/src/ports/
DSkFontHost_FreeType.cpp614 for (int gID = 0; gID < face->num_glyphs; gID++) { in onGetAdvancedMetrics() local
616 FT_Get_Glyph_Name(face, gID, glyphName, 128); in onGetAdvancedMetrics()
617 info->fGlyphNames[gID].set(glyphName); in onGetAdvancedMetrics()