Home
last modified time | relevance | path

Searched refs:DeltaFormat (Results 1 – 8 of 8) sorted by relevance

/external/freetype/src/otvalid/
Dotvcommn.c314 FT_UInt StartSize, EndSize, DeltaFormat, count; in otv_Device_validate() local
322 DeltaFormat = FT_NEXT_USHORT( p ); in otv_Device_validate()
324 if ( DeltaFormat == 0x8000U ) in otv_Device_validate()
330 if ( DeltaFormat < 1 || DeltaFormat > 3 ) in otv_Device_validate()
337 OTV_LIMIT_CHECK( ( 1 << DeltaFormat ) * count / 8 ); /* DeltaValue */ in otv_Device_validate()
/external/pdfium/core/fpdfapi/font/
Dcfx_cttgsubtable.h82 TDevice() : StartSize(0), EndSize(0), DeltaFormat(0) {} in TDevice()
86 uint16_t DeltaFormat; member
/external/fonttools/Lib/fontTools/varLib/
Dbuilder.py111 self.DeltaFormat = 0x8000
DvarStore.py298 if self.DeltaFormat == 0x8000:
313 if self.DeltaFormat == 0x8000:
Dmerger.py930 assert dev.DeltaFormat == 0x8000
958 assert dev.DeltaFormat == 0x8000
988 assert dev.DeltaFormat == 0x8000
/external/fonttools/Tests/varLib/instancer/
Dinstancer_test.py757 assert caretValue.DeviceTable.DeltaFormat == 0x8000
817 assert valueRec1.XAdvDevice.DeltaFormat == 0x8000
884 assert baseAnchor.XDeviceTable.DeltaFormat == 0x8000
893 assert valueRec1.XAdvDevice.DeltaFormat == 0x8000
/external/fonttools/Lib/fontTools/ttLib/tables/
DotConverters.py1493 DeltaFormat = tableDict["DeltaFormat"]
1494 assert DeltaFormat in (1, 2, 3), "illegal DeltaFormat"
1496 nBits = 1 << DeltaFormat
1516 DeltaFormat = tableDict["DeltaFormat"]
1518 assert DeltaFormat in (1, 2, 3), "illegal DeltaFormat"
1520 nBits = 1 << DeltaFormat
/external/fonttools/Lib/fontTools/otlLib/
Dbuilder.py1746 self.DeltaFormat = 1
1748 self.DeltaFormat = 2
1750 self.DeltaFormat = 3
2358 device.DeltaFormat,
2361 () if device.DeltaFormat & 0x8000 else tuple(device.DeltaValue),