Searched defs:glyphInfo (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DGlyphImageRef.h40 void *glyphInfo; member in struct:__anon914
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCStrikeDisposer.java89 protected static native void removeGlyphInfoFromCache(long glyphInfo); argument
/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.h54 struct GlyphInfo *glyphInfo; member in struct:_CacheCellInfo
H A DfreetypeScaler.c594 GlyphInfo *glyphInfo = (GlyphInfo*) calloc(1, sizeof(GlyphInfo)); local
595 return glyphInfo;
708 GlyphInfo *glyphInfo; local
780 glyphInfo = (GlyphInfo*) malloc(sizeof(GlyphInfo) + imageSize);
781 if (glyphInfo == NULL) {
782 glyphInfo = getNullGlyphImage();
783 return ptr_to_jlong(glyphInfo);
785 glyphInfo->cellInfo = NULL;
786 glyphInfo->managed = UNMANAGED_GLYPH;
787 glyphInfo
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11FontScaler_md.c266 GlyphInfo *glyphInfo; local
284 glyphInfo = (GlyphInfo*)malloc(sizeof(GlyphInfo)+imageSize);
285 glyphInfo->cellInfo = NULL;
286 glyphInfo->width = width;
287 glyphInfo->height = height;
288 glyphInfo->topLeftX = xcs.lbearing;
289 glyphInfo->topLeftY = -xcs.ascent;
290 glyphInfo->advanceX = xcs.width;
291 glyphInfo->advanceY = 0;
294 glyphInfo
[all...]
/openjdk7/jdk/src/windows/native/sun/font/
H A Dlcdglyph.c163 if (glyphInfo != NULL) { \
164 free(glyphInfo); \
183 GlyphInfo* glyphInfo = NULL; local
411 glyphInfo = (GlyphInfo*)SAFE_SIZE_STRUCT_ALLOC(malloc, sizeof(GlyphInfo),
417 glyphInfo->cellInfo = NULL;
418 glyphInfo->rowBytes = bytesWidth;
419 glyphInfo->width = width;
421 glyphInfo->width -= 1; // must subtract 1
423 glyphInfo->height = height;
424 glyphInfo
[all...]

Completed in 41 milliseconds