/AliOS-Things-master/components/freetype/src/gxvalid/ |
A D | gxvmorx5.c | 165 setMark = FT_BOOL( ( flags >> 15 ) & 1 ); in gxv_morx_subtable_type5_entry_validate() 166 dontAdvance = FT_BOOL( ( flags >> 14 ) & 1 ); in gxv_morx_subtable_type5_entry_validate() 167 currentIsKashidaLike = FT_BOOL( ( flags >> 13 ) & 1 ); in gxv_morx_subtable_type5_entry_validate() 168 markedIsKashidaLike = FT_BOOL( ( flags >> 12 ) & 1 ); in gxv_morx_subtable_type5_entry_validate() 169 currentInsertBefore = FT_BOOL( ( flags >> 11 ) & 1 ); in gxv_morx_subtable_type5_entry_validate() 170 markedInsertBefore = FT_BOOL( ( flags >> 10 ) & 1 ); in gxv_morx_subtable_type5_entry_validate()
|
A D | gxvmort5.c | 167 setMark = FT_BOOL( ( flags >> 15 ) & 1 ); in gxv_mort_subtable_type5_entry_validate() 168 dontAdvance = FT_BOOL( ( flags >> 14 ) & 1 ); in gxv_mort_subtable_type5_entry_validate() 169 currentIsKashidaLike = FT_BOOL( ( flags >> 13 ) & 1 ); in gxv_mort_subtable_type5_entry_validate() 170 markedIsKashidaLike = FT_BOOL( ( flags >> 12 ) & 1 ); in gxv_mort_subtable_type5_entry_validate() 171 currentInsertBefore = FT_BOOL( ( flags >> 11 ) & 1 ); in gxv_mort_subtable_type5_entry_validate() 172 markedInsertBefore = FT_BOOL( ( flags >> 10 ) & 1 ); in gxv_mort_subtable_type5_entry_validate()
|
A D | gxvkern.c | 578 kernVertical = FT_BOOL( ( coverage >> 15 ) & 1 ); in gxv_kern_coverage_new_apple_validate() 579 kernCrossStream = FT_BOOL( ( coverage >> 14 ) & 1 ); in gxv_kern_coverage_new_apple_validate() 580 kernVariation = FT_BOOL( ( coverage >> 13 ) & 1 ); in gxv_kern_coverage_new_apple_validate() 616 horizontal = FT_BOOL( ( coverage >> 15 ) & 1 ); in gxv_kern_coverage_classic_apple_validate() 617 cross_stream = FT_BOOL( ( coverage >> 13 ) & 1 ); in gxv_kern_coverage_classic_apple_validate() 657 horizontal = FT_BOOL( coverage & 1 ); in gxv_kern_coverage_classic_microsoft_validate() 658 minimum = FT_BOOL( ( coverage >> 1 ) & 1 ); in gxv_kern_coverage_classic_microsoft_validate() 659 cross_stream = FT_BOOL( ( coverage >> 2 ) & 1 ); in gxv_kern_coverage_classic_microsoft_validate() 660 override = FT_BOOL( ( coverage >> 3 ) & 1 ); in gxv_kern_coverage_classic_microsoft_validate()
|
A D | gxvfeat.c | 226 exclusive = FT_BOOL( featureFlags & GXV_FEAT_MASK_EXCLUSIVE_SETTINGS ); in gxv_feat_name_validate()
|
/AliOS-Things-master/components/freetype/src/pfr/ |
A D | pfrobjs.c | 122 FT_BOOL( face->header.phy_font_max_size_high != 0 ) ); in pfr_face_init() 372 scaling = FT_BOOL( ( load_flags & FT_LOAD_NO_SCALE ) == 0 ); in pfr_slot_load() 522 FT_Bool twobytes = FT_BOOL( item->flags & 1 ); in pfr_face_get_kerning() 523 FT_Bool twobyte_adj = FT_BOOL( item->flags & 2 ); in pfr_face_get_kerning()
|
A D | pfrsbit.c | 284 FT_Bool two = FT_BOOL( flags & 1 ); in pfr_lookup_bitmap_data() 685 FT_BOOL(face->header.color_flags & 2), in pfr_slot_load_bitmap()
|
/AliOS-Things-master/components/freetype/src/cache/ |
A D | ftccmap.c | 172 return FT_BOOL( offset < FTC_CMAP_INDICES_MAX ); in ftc_cmap_node_compare() 192 return FT_BOOL( node->face_id == face_id ); in ftc_cmap_node_remove_faceid()
|
A D | ftcglyph.c | 78 return FT_BOOL( gnode->family == gquery->family && in ftc_gnode_compare()
|
A D | ftcbasic.c | 45 FT_BOOL( FTC_SCALER_COMPARE( &(a)->scaler, &(b)->scaler ) && \ 214 result = FT_BOOL( family->attrs.scaler.face_id == face_id ); in ftc_basic_gnode_compare_faceid()
|
A D | ftcmanag.c | 174 return FT_BOOL( node->scaler.face_id == face_id ); in ftc_size_node_compare_faceid() 289 return FT_BOOL( node->face_id == face_id ); in ftc_face_node_compare()
|
A D | ftcsbits.c | 339 result = FT_BOOL( gnode->family == gquery->family && in ftc_snode_compare()
|
/AliOS-Things-master/components/freetype/include/ |
A D | fttypes.h | 574 #define FT_BOOL( x ) ( (FT_Bool)( x ) ) macro
|
/AliOS-Things-master/components/freetype/src/type1/ |
A D | t1gload.c | 324 hinting = FT_BOOL( ( load_flags & FT_LOAD_NO_SCALE ) == 0 && in T1_Load_Glyph() 335 FT_BOOL( hinting ), in T1_Load_Glyph() 343 decoder.builder.no_recurse = FT_BOOL( in T1_Load_Glyph()
|
A D | t1parse.c | 415 test_cr = FT_BOOL( !pos_lf || in T1_Get_Private_Dict()
|
/AliOS-Things-master/components/freetype/src/psaux/ |
A D | psconv.c | 109 sign = FT_BOOL( *p == '-' ); in PS_Conv_Strtol() 213 sign = FT_BOOL( *p == '-' ); in PS_Conv_ToFixed()
|
/AliOS-Things-master/components/freetype/src/truetype/ |
A D | ttgload.c | 812 debug = FT_BOOL( !( loader->load_flags & FT_LOAD_NO_SCALE ) && in TT_Hint_Glyph() 1031 have_scale = FT_BOOL( subglyph->flags & ( WE_HAVE_A_SCALE | in TT_Process_Composite_Component() 1893 ignore_x_mode = FT_BOOL( FT_LOAD_TARGET_MODE( loader->load_flags ) != in compute_glyph_metrics() 2089 FT_Bool pedantic = FT_BOOL( load_flags & FT_LOAD_PEDANTIC ); in tt_loader_init() 2142 subpixel = FT_BOOL( ( FT_LOAD_TARGET_MODE( load_flags ) != in tt_loader_init() 2171 FT_BOOL( FT_LOAD_TARGET_MODE( load_flags ) != in tt_loader_init() 2174 FT_BOOL( FT_LOAD_TARGET_MODE( load_flags ) != in tt_loader_init() 2177 FT_BOOL( FT_LOAD_TARGET_MODE( load_flags ) != in tt_loader_init() 2180 FT_BOOL( FT_LOAD_TARGET_MODE( load_flags ) != in tt_loader_init() 2190 grayscale = FT_BOOL( FT_LOAD_TARGET_MODE( load_flags ) != in tt_loader_init() [all …]
|
A D | ttsubpix.c | 963 FT_BOOL( loader->load_flags & FT_LOAD_PEDANTIC ) ); in sph_set_tweaks() 978 FT_BOOL( loader->load_flags & FT_LOAD_PEDANTIC ) ); in sph_set_tweaks()
|
/AliOS-Things-master/components/freetype/src/otvalid/ |
A D | otvgdef.c | 180 need_MarkAttachClassDef = FT_BOOL( in otv_GDEF_validate()
|
/AliOS-Things-master/components/freetype/src/cid/ |
A D | cidgload.c | 300 hinting = FT_BOOL( ( load_flags & FT_LOAD_NO_SCALE ) == 0 && in cid_slot_load_glyph() 321 decoder.builder.no_recurse = FT_BOOL( in cid_slot_load_glyph()
|
/AliOS-Things-master/components/freetype/src/sfnt/ |
A D | sfobjs.c | 213 is_english = FT_BOOL( ( rec->languageID & 0x3FF ) == 0x009 ); in tt_face_get_name() 1001 has_outline = FT_BOOL( face->root.internal->incremental_interface != 0 || in sfnt_load_face() 1005 has_outline = FT_BOOL( tt_face_lookup_table( face, TTAG_glyf ) != 0 || in sfnt_load_face() 1024 is_apple_sbit = FT_BOOL( !error ); in sfnt_load_face()
|
/AliOS-Things-master/components/freetype/src/pshinter/ |
A D | pshglob.c | 406 blues->no_overshoots = FT_BOOL( scale < blues->blue_scale * 8 / 125 ); in psh_blues_scale_zones() 408 blues->no_overshoots = FT_BOOL( scale * 125 < blues->blue_scale * 8 ); in psh_blues_scale_zones()
|
/AliOS-Things-master/components/freetype/src/autofit/ |
A D | aflatin.c | 545 left2right = FT_BOOL( points[prev].x < points[best_point].x ); in af_latin_metrics_init_blues() 608 l2r = FT_BOOL( points[first].x < points[last].x ); in af_latin_metrics_init_blues() 685 round = FT_BOOL( in af_latin_metrics_init_blues() 745 FT_Bool over_ref = FT_BOOL( shoot > ref ); in af_latin_metrics_init_blues() 1795 is_major_dir = FT_BOOL( edge->dir == axis->major_dir ); in af_latin_hints_compute_blue_edges() 1823 FT_Bool is_under_ref = FT_BOOL( edge->fpos < blue->ref.org ); in af_latin_hints_compute_blue_edges()
|
A D | afcjk.c | 470 FT_Bool under_ref = FT_BOOL( shoot < ref ); in af_cjk_metrics_init_blues() 1233 is_top_right_blue = FT_BOOL( blue->flags & AF_CJK_BLUE_TOP ); in af_cjk_hints_compute_blue_edges() 1234 is_major_dir = FT_BOOL( edge->dir == axis->major_dir ); in af_cjk_hints_compute_blue_edges() 1406 FT_Bool vertical = FT_BOOL( dim == AF_DIMENSION_VERT ); in af_cjk_compute_stem_width() 2082 snapping = FT_BOOL( ( dim == AF_DIMENSION_HORZ && in af_cjk_align_edge_points()
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftstroke.c | 144 return FT_BOOL( theta < FT_SMALL_CONIC_THRESHOLD ); in ft_conic_is_small_enough() 278 return FT_BOOL( theta1 < FT_SMALL_CUBIC_THRESHOLD && in ft_cubic_is_small_enough() 1005 intersect = FT_BOOL( stroker->line_length >= min_length && in ft_stroker_inside() 1063 FT_BOOL( stroker->line_join == FT_STROKER_LINEJOIN_BEVEL ); in ft_stroker_outside() 1066 FT_BOOL( stroker->line_join != FT_STROKER_LINEJOIN_MITER_VARIABLE ); in ft_stroker_outside() 1775 FT_BOOL( stroker->line_join != FT_STROKER_LINEJOIN_ROUND || in FT_Stroker_BeginSubPath()
|
/AliOS-Things-master/components/freetype/src/lzw/ |
A D | ftzopen.c | 42 state->in_eof = FT_BOOL( count < state->num_bits ); in ft_lzwstate_refill()
|