Home
last modified time | relevance | path

Searched refs:outline (Results 1 – 25 of 215) sorted by relevance

123456789

/third_party/skia/third_party/externals/freetype/src/base/
Dftoutln.c33 #define FT_COMPONENT outline
43 FT_Outline_Decompose( FT_Outline* outline, in FT_Outline_Decompose() argument
68 if ( !outline ) in FT_Outline_Decompose()
78 for ( n = 0; n < outline->n_contours; n++ ) in FT_Outline_Decompose()
85 last = outline->contours[n]; in FT_Outline_Decompose()
88 limit = outline->points + last; in FT_Outline_Decompose()
90 v_start = outline->points[first]; in FT_Outline_Decompose()
94 v_last = outline->points[last]; in FT_Outline_Decompose()
100 point = outline->points + first; in FT_Outline_Decompose()
101 tags = outline->tags + first; in FT_Outline_Decompose()
[all …]
Dftgloadr.c93 base->outline.n_points = 0; in FT_GlyphLoader_Rewind()
94 base->outline.n_contours = 0; in FT_GlyphLoader_Rewind()
95 base->outline.flags = 0; in FT_GlyphLoader_Rewind()
110 FT_FREE( loader->base.outline.points ); in FT_GlyphLoader_Reset()
111 FT_FREE( loader->base.outline.tags ); in FT_GlyphLoader_Reset()
112 FT_FREE( loader->base.outline.contours ); in FT_GlyphLoader_Reset()
145 FT_Outline* base = &loader->base.outline; in FT_GlyphLoader_Adjust_Points()
146 FT_Outline* current = &loader->current.outline; in FT_GlyphLoader_Adjust_Points()
211 FT_Outline* base = &loader->base.outline; in FT_GlyphLoader_CheckPoints()
212 FT_Outline* current = &loader->current.outline; in FT_GlyphLoader_CheckPoints()
[all …]
Dftglyph.c166 FT_Outline* source = &slot->outline; in FT_DEFINE_GLYPH()
167 FT_Outline* target = &glyph->outline; in FT_DEFINE_GLYPH()
181 &glyph->outline ); in FT_DEFINE_GLYPH()
198 FT_Outline_Done( FT_GLYPH( glyph )->library, &glyph->outline ); in ft_outline_glyph_done()
213 (FT_UInt)source->outline.n_points, in ft_outline_glyph_copy()
214 source->outline.n_contours, in ft_outline_glyph_copy()
215 &target->outline ); in ft_outline_glyph_copy()
217 FT_Outline_Copy( &source->outline, &target->outline ); in ft_outline_glyph_copy()
232 FT_Outline_Transform( &glyph->outline, matrix ); in ft_outline_glyph_transform()
235 FT_Outline_Translate( &glyph->outline, delta->x, delta->y ); in ft_outline_glyph_transform()
[all …]
Dftstroke.c35 FT_Outline_GetInsideBorder( FT_Outline* outline ) in FT_Outline_GetInsideBorder() argument
37 FT_Orientation o = FT_Outline_Get_Orientation( outline ); in FT_Outline_GetInsideBorder()
48 FT_Outline_GetOutsideBorder( FT_Outline* outline ) in FT_Outline_GetOutsideBorder() argument
50 FT_Orientation o = FT_Outline_Get_Orientation( outline ); in FT_Outline_GetOutsideBorder()
702 FT_Outline* outline ) in ft_stroke_border_export() argument
706 FT_ARRAY_COPY( outline->points + outline->n_points, in ft_stroke_border_export()
714 FT_Byte* write = (FT_Byte*)outline->tags + outline->n_points; in ft_stroke_border_export()
732 FT_Short* write = outline->contours + outline->n_contours; in ft_stroke_border_export()
733 FT_Short idx = (FT_Short)outline->n_points; in ft_stroke_border_export()
741 outline->n_contours++; in ft_stroke_border_export()
[all …]
Dftsynth.c50 FT_Outline* outline; in FT_GlyphSlot_Oblique() local
56 outline = &slot->outline; in FT_GlyphSlot_Oblique()
73 FT_Outline_Transform( outline, &transform ); in FT_GlyphSlot_Oblique()
113 FT_Outline_EmboldenXY( &slot->outline, xstr, ystr ); in FT_GlyphSlot_Embolden()
Dftbbox.c462 FT_Outline_Get_BBox( FT_Outline* outline, in FT_EXPORT_DEF()
476 if ( !outline ) in FT_EXPORT_DEF()
480 if ( outline->n_points == 0 || outline->n_contours <= 0 ) in FT_EXPORT_DEF()
492 vec = outline->points; in FT_EXPORT_DEF()
494 for ( n = 0; n < outline->n_points; n++ ) in FT_EXPORT_DEF()
498 if ( FT_CURVE_TAG( outline->tags[n] ) == FT_CURVE_TAG_ON ) in FT_EXPORT_DEF()
517 error = FT_Outline_Decompose( outline, &bbox_interface, &user ); in FT_EXPORT_DEF()
/third_party/skia/third_party/externals/freetype/src/psaux/
Dpsobjs.c1593 builder->base = &loader->base.outline; in t1_builder_init()
1594 builder->current = &loader->current.outline; in t1_builder_init()
1637 glyph->outline = *builder->base; in t1_builder_done()
1657 FT_Outline* outline = builder->current; in t1_builder_add_point() local
1662 FT_Vector* point = outline->points + outline->n_points; in t1_builder_add_point()
1663 FT_Byte* control = (FT_Byte*)outline->tags + outline->n_points; in t1_builder_add_point()
1670 outline->n_points++; in t1_builder_add_point()
1695 FT_Outline* outline = builder->current; in t1_builder_add_contour() local
1700 if ( !outline ) in t1_builder_add_contour()
1708 outline->n_contours++; in t1_builder_add_contour()
[all …]
Dpsft.c92 cf2_setGlyphWidth( CF2_Outline outline, in cf2_setGlyphWidth() argument
95 PS_Decoder* decoder = outline->decoder; in cf2_setGlyphWidth()
135 CF2_Outline outline = (CF2_Outline)callbacks; in cf2_builder_moveTo() local
141 FT_ASSERT( outline && outline->decoder ); in cf2_builder_moveTo()
144 builder = &outline->decoder->builder; in cf2_builder_moveTo()
159 CF2_Outline outline = (CF2_Outline)callbacks; in cf2_builder_lineTo() local
163 FT_ASSERT( outline && outline->decoder ); in cf2_builder_lineTo()
166 builder = &outline->decoder->builder; in cf2_builder_lineTo()
203 CF2_Outline outline = (CF2_Outline)callbacks; in cf2_builder_cubeTo() local
207 FT_ASSERT( outline && outline->decoder ); in cf2_builder_cubeTo()
[all …]
/third_party/skia/third_party/externals/freetype/src/smooth/
Dftsmooth.c57 FT_Outline_Transform( &slot->outline, matrix ); in ft_smooth_transform()
60 FT_Outline_Translate( &slot->outline, delta->x, delta->y ); in ft_smooth_transform()
76 FT_Outline_Get_CBox( &slot->outline, cbox ); in ft_smooth_get_cbox()
129 FT_Outline* outline, in ft_smooth_raster_lcd() argument
142 params.source = outline; in ft_smooth_raster_lcd()
160 FT_Outline_Translate( outline, in ft_smooth_raster_lcd()
170 FT_Outline_Translate( outline, in ft_smooth_raster_lcd()
180 FT_Outline_Translate( outline, in ft_smooth_raster_lcd()
188 FT_Outline_Translate( outline, x, y ); in ft_smooth_raster_lcd()
196 FT_Outline* outline, in ft_smooth_raster_lcdv() argument
[all …]
/third_party/skia/third_party/externals/freetype/src/truetype/
Dttgload.c366 FT_Outline* outline; in TT_Load_Simple_Glyph() local
384 cont = gloader->current.outline.contours; in TT_Load_Simple_Glyph()
476 outline = &gloader->current.outline; in TT_Load_Simple_Glyph()
479 flag = (FT_Byte*)outline->tags; in TT_Load_Simple_Glyph()
505 if ( n_points && outline->tags[0] & OVERLAP_SIMPLE ) in TT_Load_Simple_Glyph()
506 gloader->base.outline.flags |= FT_OUTLINE_OVERLAP; in TT_Load_Simple_Glyph()
510 vec = outline->points; in TT_Load_Simple_Glyph()
512 flag = (FT_Byte*)outline->tags; in TT_Load_Simple_Glyph()
547 vec = gloader->current.outline.points; in TT_Load_Simple_Glyph()
549 flag = (FT_Byte*)outline->tags; in TT_Load_Simple_Glyph()
[all …]
/third_party/skia/third_party/externals/freetype/include/freetype/
Dftoutln.h123 FT_Outline_Decompose( FT_Outline* outline,
192 FT_Outline* outline );
215 FT_Outline_Check( FT_Outline* outline );
247 FT_Outline_Get_CBox( const FT_Outline* outline,
271 FT_Outline_Translate( const FT_Outline* outline,
324 FT_Outline_Transform( const FT_Outline* outline,
374 FT_Outline_Embolden( FT_Outline* outline,
392 FT_Outline_EmboldenXY( FT_Outline* outline,
418 FT_Outline_Reverse( FT_Outline* outline );
457 FT_Outline* outline,
[all …]
Dftstroke.h225 FT_Outline_GetInsideBorder( FT_Outline* outline );
246 FT_Outline_GetOutsideBorder( FT_Outline* outline );
370 FT_Outline* outline,
611 FT_Outline* outline );
665 FT_Outline* outline );
/third_party/skia/third_party/externals/freetype/src/pfr/
Dpfrgload.c82 FT_Outline* outline = &loader->current.outline; in pfr_glyph_close_contour() local
90 last = outline->n_points - 1; in pfr_glyph_close_contour()
92 if ( outline->n_contours > 0 ) in pfr_glyph_close_contour()
93 first = outline->contours[outline->n_contours - 1]; in pfr_glyph_close_contour()
99 FT_Vector* p1 = outline->points + first; in pfr_glyph_close_contour()
100 FT_Vector* p2 = outline->points + last; in pfr_glyph_close_contour()
105 outline->n_points--; in pfr_glyph_close_contour()
112 outline->contours[outline->n_contours++] = (short)last; in pfr_glyph_close_contour()
131 FT_Outline* outline = &loader->current.outline; in pfr_glyph_line_to() local
146 FT_Int n = outline->n_points; in pfr_glyph_line_to()
[all …]
Dpfrobjs.c325 FT_Outline* outline = &pfrslot->outline; in pfr_slot_load() local
360 outline->n_points = 0; in pfr_slot_load()
361 outline->n_contours = 0; in pfr_slot_load()
380 *outline = slot->glyph.loader->base.outline; in pfr_slot_load()
382 outline->flags &= ~FT_OUTLINE_OWNER; in pfr_slot_load()
383 outline->flags |= FT_OUTLINE_REVERSE_FILL; in pfr_slot_load()
386 outline->flags |= FT_OUTLINE_HIGH_PRECISION; in pfr_slot_load()
427 FT_Outline_Transform( outline, &font_matrix ); in pfr_slot_load()
437 FT_Vector* vec = outline->points; in pfr_slot_load()
441 for ( n = 0; n < outline->n_points; n++, vec++ ) in pfr_slot_load()
[all …]
/third_party/skia/third_party/externals/harfbuzz/test/subset/data/tests/
Dcff-full-font.tests5 notdef-outline.txt
6 notdef-outline-drop-hints.txt
7 notdef-outline-drop-hints-retain-gids.txt
8 notdef-outline-retain-gids.txt
9 notdef-outline-desubroutinize.txt
10 notdef-outline-desubroutinize-retain-gids.txt
11 notdef-outline-drop-hints-desubroutinize.txt
12 notdef-outline-drop-hints-desubroutinize-retain-gids.txt
Dcmap14.tests6 notdef-outline.txt
7 notdef-outline-drop-hints.txt
8 notdef-outline-drop-hints-retain-gids.txt
9 notdef-outline-retain-gids.txt
10 notdef-outline-name-ids.txt
11 notdef-outline-gids.txt
/third_party/node/deps/v8/src/compiler/
Dnode.cc16 Node::OutOfLineInputs* outline = in New() local
18 outline->capacity_ = capacity; in New()
19 outline->count_ = 0; in New()
20 return outline; in New()
81 OutOfLineInputs* outline = OutOfLineInputs::New(zone, capacity); in NewImpl() local
87 node->set_outline_inputs(outline); in NewImpl()
89 outline->node_ = node; in NewImpl()
90 outline->count_ = input_count; in NewImpl()
92 input_ptr = outline->inputs(); in NewImpl()
93 use_ptr = reinterpret_cast<Use*>(outline); in NewImpl()
[all …]
/third_party/mesa3d/src/amd/compiler/
Daco_print_asm.cpp272 unsigned exec_size, size_t pos, char* outline, unsigned outline_size) in disasm_instr() argument
276 pos * 4, outline, outline_size); in disasm_instr()
295 strcpy(outline, "\tinteger addition + clamp"); in disasm_instr()
300 strcpy(outline, "\tv_cndmask_b32 + sdwa"); in disasm_instr()
303 strcpy(outline, "(invalid instruction)"); in disasm_instr()
319 size_t len = strlen(outline); in disasm_instr()
322 while (outline[--len] != ' ') ; in disasm_instr()
323 strncpy(imm, outline + len + 1, sizeof(imm) - 1); in disasm_instr()
325 snprintf(outline + len, outline_size - len, " s%u offset:%s", binary[pos + 1] >> 25, imm); in disasm_instr()
331 size_t len = strlen(outline); in disasm_instr()
[all …]
/third_party/skia/third_party/externals/freetype/src/raster/
Dftrend1.c68 FT_Outline_Transform( &slot->outline, matrix ); in ft_raster1_transform()
71 FT_Outline_Translate( &slot->outline, delta->x, delta->y ); in ft_raster1_transform()
87 FT_Outline_Get_CBox( &slot->outline, cbox ); in ft_raster1_get_cbox()
99 FT_Outline* outline = &slot->outline; in ft_raster1_render() local
152 FT_Outline_Translate( outline, x_shift, y_shift ); in ft_raster1_render()
156 params.source = outline; in ft_raster1_render()
173 FT_Outline_Translate( outline, -x_shift, -y_shift ); in ft_raster1_render()
/third_party/skia/third_party/externals/freetype/src/tools/
Dtest_bbox.c111 dump_outline( FT_Outline* outline ) in dump_outline() argument
116 FT_Outline_Get_CBox( outline, &bbox ); in dump_outline()
124 FT_Outline_Get_BBox( outline, &bbox ); in dump_outline()
135 profile_outline( FT_Outline* outline, in profile_outline() argument
144 FT_Outline_Get_CBox( outline, &bbox ); in profile_outline()
159 FT_Outline_Get_BBox( outline, &bbox ); in profile_outline()
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
Dftgloadr.h52 FT_Outline outline; /* outline */ member
108 ( (FT_UInt)(_loader)->base.outline.n_points + \
109 (FT_UInt)(_loader)->current.outline.n_points + \
114 ( (FT_UInt)(_loader)->base.outline.n_contours + \
115 (FT_UInt)(_loader)->current.outline.n_contours + \
/third_party/libevdev/doc/html/search/
Dsearch.css35 outline: none;
57 outline: none;
109 outline-style: none;
115 outline-style: none;
125 outline-style: none;
132 outline-style: none;
189 outline: none;
197 outline: none;
/third_party/skia/third_party/externals/oboe/docs/reference/search/
Dsearch.css53 outline: none;
81 outline: none;
125 outline-style: none;
131 outline-style: none;
141 outline-style: none;
148 outline-style: none;
205 outline: none;
213 outline: none;
/third_party/skia/third_party/externals/swiftshader/src/Device/
DQuadRasterizer.cpp101 …Int x0a = Int(*Pointer<Short>(primitive + OFFSET(Primitive, outline->left) + (y + 0) * sizeof(Prim… in rasterize()
102 …Int x0b = Int(*Pointer<Short>(primitive + OFFSET(Primitive, outline->left) + (y + 1) * sizeof(Prim… in rasterize()
107 …x0a = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive, outline->left) + (… in rasterize()
108 …x0b = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive, outline->left) + (… in rasterize()
114 …Int x1a = Int(*Pointer<Short>(primitive + OFFSET(Primitive, outline->right) + (y + 0) * sizeof(Pri… in rasterize()
115 …Int x1b = Int(*Pointer<Short>(primitive + OFFSET(Primitive, outline->right) + (y + 1) * sizeof(Pri… in rasterize()
120 …x1a = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive, outline->right) + … in rasterize()
121 …x1b = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive, outline->right) + … in rasterize()
184 …xLeft[q] = *Pointer<Short4>(primitive + q * sizeof(Primitive) + OFFSET(Primitive, outline) + y * s… in rasterize()
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DQuadRasterizer.cpp121 …Int x0a = Int(*Pointer<Short>(primitive + OFFSET(Primitive,outline->left) + (y + 0) * sizeof(Primi… in rasterize()
122 …Int x0b = Int(*Pointer<Short>(primitive + OFFSET(Primitive,outline->left) + (y + 1) * sizeof(Primi… in rasterize()
127 …x0a = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline->left) + (y… in rasterize()
128 …x0b = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline->left) + (y… in rasterize()
134 …Int x1a = Int(*Pointer<Short>(primitive + OFFSET(Primitive,outline->right) + (y + 0) * sizeof(Prim… in rasterize()
135 …Int x1b = Int(*Pointer<Short>(primitive + OFFSET(Primitive,outline->right) + (y + 1) * sizeof(Prim… in rasterize()
140 …x1a = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline->right) + (… in rasterize()
141 …x1b = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline->right) + (… in rasterize()
272 …xLeft[q] = *Pointer<Short4>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline) + y * si… in rasterize()

123456789