Lines Matching refs:ppFont
345 static BOOL InitFont( FNTHeader** ppFont, const char* filePath ) in InitFont() argument
352 *ppFont = NULL; in InitFont()
368 *ppFont = (FNTHeader*)OSAlloc(dataSize); in InitFont()
372 if (!FNTConstruct(*ppFont, readBuffer)) in InitFont()
389 if (*ppFont != NULL) in InitFont()
391 OSFree(*ppFont); in InitFont()
392 *ppFont = NULL; in InitFont()
407 static BOOL InitFontStreaming( FNTHeader** ppFont, const char* filePath ) in InitFontStreaming() argument
422 *ppFont = NULL; in InitFontStreaming()
463 *ppFont = (FNTHeader*)OSAlloc(dataSize); in InitFontStreaming()
467 FNTInitStreamingConstruct(*ppFont, dataSize); in InitFontStreaming()
472 ret = FNTStreamingConstruct(*ppFont, readBuffer, (u32)readSize); in InitFontStreaming()
512 if (*ppFont != NULL) in InitFontStreaming()
514 OSFree(*ppFont); in InitFontStreaming()
515 *ppFont = NULL; in InitFontStreaming()