Home | History | Annotate | Download | only in src

Lines Matching defs:prep

5 #include "prep.h"
7 // prep - Control Value Program
8 // http://www.microsoft.com/opentype/otspec/prep.htm
15 OpenTypePREP *prep = new OpenTypePREP;
16 file->prep = prep;
19 return OTS_FAILURE(); // almost all prep tables are less than 9k bytes.
26 prep->data = data;
27 prep->length = length;
33 return g_transcode_hints && file->prep;
37 const OpenTypePREP *prep = file->prep;
39 if (!out->Write(prep->data, prep->length)) {
47 delete file->prep;