Lines Matching defs:fi
219 snfFontInfoRec fi;
235 ret = snfReadHeader(&fi, file);
252 bitmapsSize = BYTESOFGLYPHINFO(&fi);
253 num_chars = n2dChars(&fi);
261 bytestoalloc += fi.nProps * sizeof(FontPropRec); /* props */
263 bytestoalloc += fi.nProps * sizeof(char); /* isStringProp */
266 if (fi.inkMetrics)
294 if (fi.inkMetrics)
392 ret = snfReadProps(&fi, &pFont->info, file);
397 snfCopyInfo(&fi, &pFont->info);
401 if (fi.inkMetrics) {
448 snfFontInfoRec fi;
452 ret = snfReadHeader(&fi, file);
455 snfCopyInfo(&fi, pFontInfo);
457 pFontInfo->props = mallocarray(fi.nProps, sizeof(FontPropRec));
460 fi.nProps, (int) sizeof(FontPropRec));
463 pFontInfo->isStringProp = mallocarray(fi.nProps, sizeof(char));
466 fi.nProps, (int) sizeof(char));
470 num_chars = n2dChars(&fi);
472 bytestoskip += BYTESOFGLYPHINFO(&fi);
475 ret = snfReadProps(&fi, pFontInfo, file);
481 if (fi.inkMetrics) {