Lines Matching defs:offset

1829 					$offset = $this->read_ushort();
1830 if ($offset == 0x0000) {
1831 $SubRuleSetOffset[] = $offset;
1833 $SubRuleSetOffset[] = $subtable_offset + $offset;
1912 $offset = $this->read_ushort();
1913 if ($offset == 0x0000) {
1914 $SubClassSetOffset[] = $offset;
1916 $SubClassSetOffset[] = $subtable_offset + $offset;
2120 $offset = $this->read_ushort();
2121 if ($offset == 0x0000) {
2122 $ChainSubClassSetOffset[] = $offset;
2124 $ChainSubClassSetOffset[] = $subtable_offset + $offset;
3150 // Unsigned long 32-bit offset
3151 $offset = (ord($dict[$dictptr]) * 16777216) + (ord($dict[$dictptr + 1]) << 16) + (ord($dict[$dictptr + 2]) << 8) + ord($dict[$dictptr + 3]);
3152 $dictptr = $offset;
3639 $offset = $offsets[$component][$MarkRecord['Class']];
3640 if ($offset != 0) {
3641 $LigatureRecordOffset = $offset + $LigatureAttachOffset;
3794 $offset = $this->read_ushort();
3795 if ($offset == 0x0000) {
3796 $PosClassSetOffset[] = $offset;
3798 $PosClassSetOffset[] = $subtable_offset + $offset;
3924 $offset = $this->read_ushort();
3925 if ($offset == 0x0000) {
3926 $ChainPosClassSetOffset[] = $offset;
3928 $ChainPosClassSetOffset[] = $subtable_offset + $offset;
4359 private function _getClassDefinitionTable($offset)
4361 if (isset($this->LuDataCache[$this->fontkey][$offset])) {
4362 $GlyphByClass = $this->LuDataCache[$this->fontkey][$offset];
4364 $this->seek($offset);
4391 $this->LuDataCache[$this->fontkey][$offset] = $GlyphByClass;
4444 private function _getAnchorTable($offset = 0)
4446 if ($offset) {
4447 $this->seek($offset);
4456 private function _getMarkRecord($offset, $MarkPos)
4458 $this->seek($offset);
4462 $MarkAnchor = $offset + $this->read_ushort(); // = Offset to anchor table
5896 $offset = $this->_pos;
5897 if (isset($this->LuDataCache[$this->fontkey]['GID'][$offset])) {
5898 $g = $this->LuDataCache[$this->fontkey]['GID'][$offset];
5920 $this->LuDataCache[$this->fontkey]['GID'][$offset] = $g;
5927 $offset = $this->_pos;
5928 if (isset($this->LuDataCache[$this->fontkey][$offset])) {
5929 $g = $this->LuDataCache[$this->fontkey][$offset];
5951 $this->LuDataCache[$this->fontkey][$offset] = $g;
5956 private function _getClasses($offset)
5958 if (isset($this->LuDataCache[$this->fontkey][$offset])) {
5959 $GlyphByClass = $this->LuDataCache[$this->fontkey][$offset];
5961 $this->seek($offset);
6000 $this->LuDataCache[$this->fontkey][$offset] = $GlyphByClass;