Home | History | Annotate | Download | only in sfnt

Lines Matching refs:is32

1577   /***** The `is32' table embedded in the charmap indicates whether a  *****/
1582 /***** If `char_hi == 0' then we must have `is32[char_lo] == 0'. *****/
1585 /***** `is32[char_hi] != 0' and `is32[char_lo] != 0'. *****/
1601 /* is32 12 BYTE[8192] 32-bitness bitmap */
1618 FT_Byte* is32;
1630 is32 = table + 12;
1631 p = is32 + 8192; /* skip `is32' array */
1666 /* start_hi != 0; check that is32[i] is 1 for each i in */
1673 if ( (is32[hi >> 3] & ( 0x80 >> ( hi & 7 ) ) ) == 0 )
1676 if ( (is32[lo >> 3] & ( 0x80 >> ( lo & 7 ) ) ) == 0 )
1682 /* start_hi == 0; check that is32[i] is 0 for each i in */
1693 if ( (is32[lo >> 3] & ( 0x80 >> ( lo & 7 ) ) ) != 0 )