Lines Matching refs:pShare
337 GlyphSharePtr pShare; in AllocGlyphCursor() local
352 pShare = (GlyphSharePtr) NULL; in AllocGlyphCursor()
354 for (pShare = sharedGlyphs; in AllocGlyphCursor()
355 pShare && in AllocGlyphCursor()
356 ((pShare->font != sourcefont) || in AllocGlyphCursor()
357 (pShare->sourceChar != sourceChar) || in AllocGlyphCursor()
358 (pShare->maskChar != maskChar)); pShare = pShare->next); in AllocGlyphCursor()
360 if (pShare) { in AllocGlyphCursor()
365 bits = pShare->bits; in AllocGlyphCursor()
429 pShare = malloc(sizeof(GlyphShare)); in AllocGlyphCursor()
430 if (!pShare) { in AllocGlyphCursor()
434 pShare->font = sourcefont; in AllocGlyphCursor()
436 pShare->sourceChar = sourceChar; in AllocGlyphCursor()
437 pShare->maskChar = maskChar; in AllocGlyphCursor()
438 pShare->bits = bits; in AllocGlyphCursor()
439 pShare->next = sharedGlyphs; in AllocGlyphCursor()
440 sharedGlyphs = pShare; in AllocGlyphCursor()