Searched refs:maxp (Results 1 - 23 of 23) sorted by relevance

/external/sfntly/cpp/src/test/
H A Dverify_maxp.cc41 MaximumProfileTablePtr maxp = down_cast<MaximumProfileTable*>(table); local
42 if (maxp == NULL) {
46 EXPECT_EQ(maxp->TableVersion(), Fixed1616::Fixed(1, 0));
47 EXPECT_EQ(maxp->NumGlyphs(), MAXP_NUM_GLYPHS);
48 EXPECT_EQ(maxp->MaxPoints(), MAXP_MAX_POINTS);
49 EXPECT_EQ(maxp->MaxContours(), MAXP_MAX_CONTOURS);
50 EXPECT_EQ(maxp->MaxCompositePoints(), MAXP_MAX_COMPOSITE_POINTS);
51 EXPECT_EQ(maxp->MaxCompositeContours(), MAXP_MAX_COMPOSITE_CONTOURS);
52 EXPECT_EQ(maxp->MaxZones(), MAXP_MAX_ZONES);
53 EXPECT_EQ(maxp
[all...]
H A Dtest_data.cc42 Tag::loca, Tag::maxp, Tag::morx, Tag::name, Tag::post,
49 Tag::loca, Tag::maxp, Tag::name, Tag::post, Tag::prep };
H A Dserialization_test.cc82 } else if (TTF_KNOWN_TAGS[i] == Tag::maxp) {
/external/harfbuzz_ng/src/
H A Dhb-ot-maxp-table.hh37 * maxp -- The Maximum Profile Table
42 struct maxp struct in namespace:OT
58 FixedVersion version; /* Version of the maxp table (0.5 or 1.0),
H A Dhb-face.cc36 #include "hb-ot-maxp-table.hh"
475 hb_blob_t *maxp_blob = OT::Sanitizer<OT::maxp>::sanitize (reference_table (HB_OT_TAG_maxp));
476 const OT::maxp *maxp_table = OT::Sanitizer<OT::maxp>::lock_instance (maxp_blob);
/external/sfntly/cpp/src/sfntly/
H A Dtag.cc31 const int32_t Tag::maxp = TAG('m', 'a', 'x', 'p'); member in class:sfntly::Tag
77 Tag::maxp,
89 Tag::maxp,
H A Dtag.h37 static const int32_t maxp; member in struct:sfntly::Tag
H A Dfont.cc421 Table::Builder* raw_maxp_builder = GetBuilder(builder_map, Tag::maxp);
/external/sfntly/cpp/src/sfntly/table/
H A Dtable.cc98 } else if (tag == Tag::maxp) {
/external/freetype/src/truetype/
H A Dttobjs.c954 TT_MaxProfile* maxp = &face->max_profile; local
972 size->max_function_defs = maxp->maxFunctionDefs;
973 size->max_instruction_defs = maxp->maxInstructionDefs;
982 size->storage_size = maxp->maxStorage;
1007 n_twilight = maxp->maxTwilightPoints;
H A Dttinterp.c410 TT_MaxProfile* maxp; local
415 maxp = &face->max_profile;
460 maxp->maxStackElements + 32 );
470 maxp->maxSizeOfInstructions );
/external/pdfium/third_party/freetype/src/truetype/
H A Dttobjs.c973 TT_MaxProfile* maxp = &face->max_profile; local
979 size->max_function_defs = maxp->maxFunctionDefs;
980 size->max_instruction_defs = maxp->maxInstructionDefs;
989 size->storage_size = maxp->maxStorage;
1014 n_twilight = maxp->maxTwilightPoints;
H A Dttinterp.c549 TT_MaxProfile* maxp; local
554 maxp = &face->max_profile;
599 maxp->maxStackElements + 32 );
609 maxp->maxSizeOfInstructions );
/external/skia/src/ports/
H A DSkScalerContext_win_dw.cpp38 AutoTDWriteTable<SkOTTableMaximumProfile> maxp(typeface->fDWriteFontFace.get());
39 if (!maxp.fExists) {
42 if (maxp.fSize < sizeof(SkOTTableMaximumProfile::Version::TT)) {
45 if (maxp->version.version != SkOTTableMaximumProfile::Version::TT::VERSION) {
49 if (0 == maxp->version.tt.maxSizeOfInstructions) {
/external/iproute2/ip/
H A Dxfrm_state.c569 char *maxp = NULL; local
612 if (maxp)
614 maxp = *argv;
645 if (!maxp) {
654 if (maxp) {
/external/libopus/tests/
H A Dtest_opus_api.c1520 int maxp; local
1524 maxp=960/(i*opus_packet_get_samples_per_frame(packet,8000));
1530 for(cnt=0;cnt<maxp+2;cnt++)
1535 if((cnt<=maxp&&k<=(1275*i))?ret!=OPUS_OK:ret!=OPUS_INVALID_PACKET)test_failed();
1538 rcnt=k<=(1275*i)?(cnt<maxp?cnt:maxp):0;
/external/fio/
H A Dgclient.c1017 char *minp, *maxp; local
1024 maxp = num2str(max, 6, 1, 0, 0);
1036 gtk_label_set_text(GTK_LABEL(label), maxp); local
1045 free(maxp);
H A Dstat.c348 char *minp, *maxp; local
354 maxp = num2str(max, 6, 1, 0, 0);
357 " stdev=%5.02f\n", name, base, minp, maxp, mean, dev);
360 free(maxp);
/external/freetype/src/sfnt/
H A Dsfobjs.c1047 LOAD_( maxp );
/external/pdfium/third_party/freetype/src/sfnt/
H A Dsfobjs.c1047 LOAD_( maxp );
/external/sfntly/cpp/src/sample/chromium/
H A Dsubsetter_impl.cc682 // head, hhea, loca, maxp, cvt, prep, glyf, hmtx, fpgm
730 Tag::head, Tag::hhea, Tag::loca, Tag::maxp, Tag::cvt,
/external/icu/icu4c/source/i18n/
H A DdecNumber.c2798 /* const maxp := currentprecision + 2 */
2800 /* p := min(2*p - 2, maxp) % p = 4,6,10, . . . , maxp */
2803 /* exit when p = maxp */
2833 Int maxp; /* largest working precision */ local
2848 /* buffer for a [needs +2 to match likely maxp] */
2920 maxp=workp+2; /* largest working precision */
2930 /* a and b both need to be able to hold a maxp-length number */
2931 needbytes=sizeof(decNumber)+(D2U(maxp)-1)*sizeof(Unit);
3003 for (; workset.digits<maxp;) {
[all...]
/external/pcre/dist/
H A Dpcre_compile.c1579 maxp pointer to int for max
1588 read_repeat_counts(const pcre_uchar *p, int *minp, int *maxp, int *errorcodeptr) argument
1626 *maxp = max;

Completed in 756 milliseconds