Lines Matching refs:up

328 					$up = unpack('n*', substr($table, 8, 4));
329 $adjustment[0] = $up[1];
330 $adjustment[1] = $up[2];
497 $up = pack("n", $value);
499 return $this->splice($stream, $offset, $up);
509 $up = pack("n", $val);
511 return $this->splice($stream, $offset, $up);
3069 // $inputGlyphs = array of glyphs(glyphstrings) making up Input sequence in Context
3070 // $lookupGlyphs = array of glyphs (single Glyphs) making up Lookup Input sequence
3092 // $inputGlyphs = array of glyphs(glyphstrings) making up Input sequence in Context
3093 // $lookupGlyphs = array of glyphs making up Lookup Input sequence - if applicable
3109 // $backtrackGlyphs = array of glyphstrings making up Backtrack sequence
3124 // $lookaheadGlyphs = array of glyphstrings making up Lookahead sequence
3783 $up = unpack("n", substr($data, 0, 2));
3785 if ($glyphLen > 2 && ($up[1] & (1 << 15))) { // If number of contours <= -1 i.e. composiste glyph
3791 $up = unpack("n", substr($data, $pos_in_glyph, 2));
3792 $flags = $up[1];
3793 $up = unpack("n", substr($data, $pos_in_glyph + 2, 2));
3794 $glyphIdx = $up[1];
3814 elseif (_RECALC_PROFILE && $glyphLen > 2 && $up[1] < (1 << 15) && $up[1] > 0) { // Number of contours > 0 simple glyph
3815 $nContours = $up[1];
3821 $up = unpack("n", substr($data, $pos_in_glyph, 2));
3822 $points = $up[1] + 1;
4391 $up = unpack('n', substr($data, 0, 2));
4394 if ($glyphLen > 2 && ($up[1] & (1 << 15))) {
4400 $up = unpack('n', substr($data, $pos_in_glyph, 2));
4401 $flags = $up[1];
4402 $up = unpack('n', substr($data, $pos_in_glyph + 2, 2));
4403 $glyphIdx = $up[1];