Home
last modified time | relevance | path

Searched refs:maxp (Results 1 – 25 of 33) sorted by relevance

12

/external/sfntly/cpp/src/test/
Dverify_maxp.cc41 MaximumProfileTablePtr maxp = down_cast<MaximumProfileTable*>(table); in VerifyMAXP() local
42 if (maxp == NULL) { in VerifyMAXP()
46 EXPECT_EQ(maxp->TableVersion(), Fixed1616::Fixed(1, 0)); in VerifyMAXP()
47 EXPECT_EQ(maxp->NumGlyphs(), MAXP_NUM_GLYPHS); in VerifyMAXP()
48 EXPECT_EQ(maxp->MaxPoints(), MAXP_MAX_POINTS); in VerifyMAXP()
49 EXPECT_EQ(maxp->MaxContours(), MAXP_MAX_CONTOURS); in VerifyMAXP()
50 EXPECT_EQ(maxp->MaxCompositePoints(), MAXP_MAX_COMPOSITE_POINTS); in VerifyMAXP()
51 EXPECT_EQ(maxp->MaxCompositeContours(), MAXP_MAX_COMPOSITE_CONTOURS); in VerifyMAXP()
52 EXPECT_EQ(maxp->MaxZones(), MAXP_MAX_ZONES); in VerifyMAXP()
53 EXPECT_EQ(maxp->MaxTwilightPoints(), MAXP_MAX_TWILIGHT_POINTS); in VerifyMAXP()
[all …]
Dtest_data.cc42 Tag::loca, Tag::maxp, Tag::morx, Tag::name, Tag::post,
49 Tag::loca, Tag::maxp, Tag::name, Tag::post, Tag::prep };
Dserialization_test.cc82 } else if (TTF_KNOWN_TAGS[i] == Tag::maxp) { in TestSerialization()
/external/sfntly/cpp/src/sfntly/
Dtag.cc31 const int32_t Tag::maxp = TAG('m', 'a', 'x', 'p'); member in sfntly::Tag
77 Tag::maxp,
89 Tag::maxp,
Dtag.h37 static const int32_t maxp; member
Dfont.cc430 Table::Builder* raw_maxp_builder = GetReadBuilder(builder_map, Tag::maxp); in InterRelateBuilders()
/external/harfbuzz_ng/src/
Dhb-face.cc475 hb_blob_t *maxp_blob = OT::Sanitizer<OT::maxp>::sanitize (reference_table (HB_OT_TAG_maxp)); in load_num_glyphs()
476 const OT::maxp *maxp_table = OT::Sanitizer<OT::maxp>::lock_instance (maxp_blob); in load_num_glyphs()
Dhb-ot-maxp-table.hh42 struct maxp struct
DMakefile.sources28 hb-ot-maxp-table.hh \
/external/freetype/src/truetype/
Dttobjs.c981 TT_MaxProfile* maxp = &face->max_profile; in tt_size_init_bytecode() local
999 size->max_function_defs = maxp->maxFunctionDefs; in tt_size_init_bytecode()
1000 size->max_instruction_defs = maxp->maxInstructionDefs; in tt_size_init_bytecode()
1009 size->storage_size = maxp->maxStorage; in tt_size_init_bytecode()
1034 n_twilight = maxp->maxTwilightPoints; in tt_size_init_bytecode()
Dttinterp.c387 TT_MaxProfile* maxp; in TT_Load_Context() local
392 maxp = &face->max_profile; in TT_Load_Context()
438 maxp->maxStackElements + 32 ); in TT_Load_Context()
448 maxp->maxSizeOfInstructions ); in TT_Load_Context()
/external/skia/src/ports/
DSkScalerContext_win_dw.cpp52 AutoTDWriteTable<SkOTTableMaximumProfile> maxp(typeface->fDWriteFontFace.get()); in is_hinted_without_gasp() local
53 if (!maxp.fExists) { in is_hinted_without_gasp()
56 if (maxp.fSize < sizeof(SkOTTableMaximumProfile::Version::TT)) { in is_hinted_without_gasp()
59 if (maxp->version.version != SkOTTableMaximumProfile::Version::TT::VERSION) { in is_hinted_without_gasp()
63 if (0 == maxp->version.tt.maxSizeOfInstructions) { in is_hinted_without_gasp()
/external/pdfium/third_party/freetype/src/truetype/
Dttobjs.c1003 TT_MaxProfile* maxp = &face->max_profile; in tt_size_init_bytecode() local
1021 size->max_function_defs = maxp->maxFunctionDefs; in tt_size_init_bytecode()
1022 size->max_instruction_defs = maxp->maxInstructionDefs; in tt_size_init_bytecode()
1031 size->storage_size = maxp->maxStorage; in tt_size_init_bytecode()
1056 n_twilight = maxp->maxTwilightPoints; in tt_size_init_bytecode()
Dttinterp.c403 TT_MaxProfile* maxp; in TT_Load_Context() local
408 maxp = &face->max_profile; in TT_Load_Context()
453 maxp->maxStackElements + 32 ); in TT_Load_Context()
463 maxp->maxSizeOfInstructions ); in TT_Load_Context()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/truetype/
Dttobjs.c1003 TT_MaxProfile* maxp = &face->max_profile; in tt_size_init_bytecode() local
1021 size->max_function_defs = maxp->maxFunctionDefs; in tt_size_init_bytecode()
1022 size->max_instruction_defs = maxp->maxInstructionDefs; in tt_size_init_bytecode()
1031 size->storage_size = maxp->maxStorage; in tt_size_init_bytecode()
1056 n_twilight = maxp->maxTwilightPoints; in tt_size_init_bytecode()
Dttinterp.c394 TT_MaxProfile* maxp; in TT_Load_Context() local
399 maxp = &face->max_profile; in TT_Load_Context()
444 maxp->maxStackElements + 32 ); in TT_Load_Context()
454 maxp->maxSizeOfInstructions ); in TT_Load_Context()
/external/sfntly/cpp/src/sfntly/table/
Dtable.cc98 } else if (tag == Tag::maxp) { in GetBuilder()
/external/iproute2/ip/
Dxfrm_state.c708 char *maxp = NULL; in xfrm_state_allocspi() local
751 if (maxp) in xfrm_state_allocspi()
753 maxp = *argv; in xfrm_state_allocspi()
784 if (!maxp) { in xfrm_state_allocspi()
793 if (maxp) { in xfrm_state_allocspi()
/external/libopus/tests/
Dtest_opus_api.c1520 int maxp; in test_repacketizer_api() local
1524 maxp=960/(i*opus_packet_get_samples_per_frame(packet,8000)); in test_repacketizer_api()
1530 for(cnt=0;cnt<maxp+2;cnt++) in test_repacketizer_api()
1535 if((cnt<=maxp&&k<=(1275*i))?ret!=OPUS_OK:ret!=OPUS_INVALID_PACKET)test_failed(); in test_repacketizer_api()
1538 rcnt=k<=(1275*i)?(cnt<maxp?cnt:maxp):0; in test_repacketizer_api()
/external/fio/
Dgclient.c1017 char *minp, *maxp; local
1024 maxp = num2str(max, 6, 1, 0, 0);
1036 gtk_label_set_text(GTK_LABEL(label), maxp);
1045 free(maxp);
Dstat.c348 char *minp, *maxp; in display_lat() local
354 maxp = num2str(max, 6, 1, 0, 0); in display_lat()
357 " stdev=%5.02f\n", name, base, minp, maxp, mean, dev); in display_lat()
360 free(maxp); in display_lat()
/external/fonttools/Doc/
Dchanges.txt35 - Be "forgiving" when interpreting the maxp table version field:
/external/sfntly/cpp/src/sample/chromium/
Dsubsetter_impl.cc748 Tag::head, Tag::hhea, Tag::loca, Tag::maxp, Tag::cvt, in Subset()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/
Dsfobjs.c1125 LOAD_( maxp ); in sfnt_load_face()
/external/pdfium/third_party/freetype/src/sfnt/
Dsfobjs.c1073 LOAD_( maxp ); in sfnt_load_face()

12