Home | History | Annotate | Download | only in src

Lines Matching refs:cvt

5 #include "cvt.h"
7 // cvt - Control Value Table
8 // http://www.microsoft.com/opentype/otspec/cvt.htm
15 OpenTypeCVT *cvt = new OpenTypeCVT;
16 file->cvt = cvt;
19 return OTS_FAILURE(); // almost all cvt tables are less than 4k bytes.
30 cvt->data = data;
31 cvt->length = length;
39 return g_transcode_hints && file->cvt;
43 const OpenTypeCVT *cvt = file->cvt;
45 if (!out->Write(cvt->data, cvt->length)) {
53 delete file->cvt;