Lines Matching refs:tables
422 return (sal_uInt8*)ttf->tables[ord]; in getTable()
1766 t->tables = (const sal_uInt8**)calloc(NUM_TAGS, sizeof(sal_uInt8*)); in doOpenTTFont()
1767 assert(t->tables != 0); in doOpenTTFont()
1771 memset(t->tables, 0, NUM_TAGS * sizeof(void *)); in doOpenTTFont()
1802 t->tables[nIndex] = t->ptr + nTableOffset; in doOpenTTFont()
1809 sal_uInt8* pHead = (sal_uInt8*)t->tables[O_head]; in doOpenTTFont()
1822 if( t->tables[j] ) in doOpenTTFont()
1823 *(char**)&t->tables[j] -= nDelta; in doOpenTTFont()
1839 if( (sal_uInt8*)t->tables[i] < t->ptr ) in doOpenTTFont()
1842 if( t->tables[i] ) in doOpenTTFont()
1843 …ont file %s has bad table offset %d (tagnum=%d)\n", t->fname, (sal_uInt8*)t->tables[i]-t->ptr, i ); in doOpenTTFont()
1846 t->tables[i] = NULL; in doOpenTTFont()
1848 else if( (sal_uInt8*)t->tables[i] + t->tlens[i] > t->ptr + t->fsize ) in doOpenTTFont()
1850 int nMaxLen = (t->ptr + t->fsize) - (sal_uInt8*)t->tables[i]; in doOpenTTFont()
1935 free(ttf->tables); in CloseTTFont()
2590 *ppRawBytes = ttf->tables[ nSubtableIndex ]; in GetSfntTable()