Searched refs:coordBytes (Results 1 – 2 of 2) sorted by relevance
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _g_l_y_f.py | 317 def flagEncodeCoord(flag, mask, coord, coordBytes): argument 320 coordBytes.append(coord) 322 coordBytes.append(-coord) 324 coordBytes.append((coord >> 8) & 0xFF) 325 coordBytes.append(coord & 0xFF) 717 flag, coordBytes = flagBest(x, y, flag) 718 bestCost += 1 + coordBytes 719 newCandidates = [(bestCost, bestTuple, flag, coordBytes), 720 (bestCost+1, bestTuple, (flag|flagRepeat), coordBytes)] 721 for lastCost,lastTuple,lastFlag,coordBytes in candidates: [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-ot-glyf-table.hh | 311 unsigned int coordBytes = 0; in remove_padding() local 338 coordBytes += (xBytes + yBytes) * repeat; in remove_padding() 349 glyph += coordBytes; in remove_padding()
|