Home
last modified time | relevance | path

Searched refs:gindex (Results 1 – 25 of 82) sorted by relevance

1234

/third_party/skia/third_party/externals/freetype/src/autofit/
Dafglobal.c180 FT_UInt gindex; in af_face_globals_compute_style_coverage() local
183 gindex = FT_Get_Char_Index( face, charcode ); in af_face_globals_compute_style_coverage()
185 if ( gindex != 0 && in af_face_globals_compute_style_coverage()
186 gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage()
187 ( gstyles[gindex] & AF_STYLE_MASK ) == AF_STYLE_UNASSIGNED ) in af_face_globals_compute_style_coverage()
188 gstyles[gindex] = (FT_UShort)ss; in af_face_globals_compute_style_coverage()
192 charcode = FT_Get_Next_Char( face, charcode, &gindex ); in af_face_globals_compute_style_coverage()
194 if ( gindex == 0 || charcode > range->last ) in af_face_globals_compute_style_coverage()
197 if ( gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage()
198 ( gstyles[gindex] & AF_STYLE_MASK ) == AF_STYLE_UNASSIGNED ) in af_face_globals_compute_style_coverage()
[all …]
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dttcmap.c148 FT_UInt gindex = 0; in tt_cmap0_char_next() local
154 gindex = table[charcode]; in tt_cmap0_char_next()
155 if ( gindex != 0 ) in tt_cmap0_char_next()
163 return gindex; in tt_cmap0_char_next()
499 FT_UInt gindex = 0; in tt_cmap2_char_next() local
550 gindex = (FT_UInt)( (FT_Int)idx + delta ) & 0xFFFFU; in tt_cmap2_char_next()
551 if ( gindex != 0 ) in tt_cmap2_char_next()
577 return gindex; in tt_cmap2_char_next()
825 FT_UInt gindex = FT_NEXT_USHORT( p ); in tt_cmap4_next() local
828 if ( gindex ) in tt_cmap4_next()
[all …]
Dttmtx.c230 FT_UInt gindex, in tt_face_get_metrics() argument
268 if ( gindex < (FT_UInt)k ) in tt_face_get_metrics()
270 table_pos += 4 * gindex; in tt_face_get_metrics()
289 table_pos += 4 + 2 * ( gindex - k ); in tt_face_get_metrics()
319 var->vadvance_adjust( f, gindex, &a ); in tt_face_get_metrics()
321 var->tsb_adjust( f, gindex, &b ); in tt_face_get_metrics()
326 var->hadvance_adjust( f, gindex, &a ); in tt_face_get_metrics()
328 var->lsb_adjust( f, gindex, &b ); in tt_face_get_metrics()
/third_party/skia/third_party/externals/freetype/src/cache/
Dftcsbits.c103 FT_UInt gindex, in ftc_snode_load() argument
114 if ( gindex - gnode->gindex >= snode->count ) in ftc_snode_load()
120 sbit = snode->sbits + ( gindex - gnode->gindex ); in ftc_snode_load()
123 error = clazz->family_load_glyph( family, gindex, manager, &face ); in ftc_snode_load()
221 FT_UInt gindex = gquery->gindex; in FTC_SNode_New() local
230 if ( total == 0 || gindex >= total ) in FTC_SNode_New()
241 start = gindex - ( gindex % FTC_SBIT_ITEMS_PER_NODE ); in FTC_SNode_New()
256 gindex, in FTC_SNode_New()
339 FT_UInt gindex = gquery->gindex; in ftc_snode_compare() local
346 gindex - gnode->gindex < snode->count ); in ftc_snode_compare()
[all …]
Dftcbasic.c131 FT_UInt gindex, in ftc_basic_family_load_bitmap() argument
148 gindex, in ftc_basic_family_load_bitmap()
160 FT_UInt gindex, in ftc_basic_family_load_glyph() argument
180 gindex, in ftc_basic_family_load_glyph()
291 FT_UInt gindex, in FTC_ImageCache_Lookup() argument
334 hash = FTC_BASIC_ATTR_HASH( &query.attrs ) + gindex; in FTC_ImageCache_Lookup()
340 hash, gindex, in FTC_ImageCache_Lookup()
346 hash, gindex, in FTC_ImageCache_Lookup()
372 FT_UInt gindex, in FTC_ImageCache_LookupScaler() argument
409 hash = FTC_BASIC_ATTR_HASH( &query.attrs ) + gindex; in FTC_ImageCache_LookupScaler()
[all …]
Dftcglyph.h151 FT_UInt gindex; member
161 FT_UInt gindex; member
179 FT_UInt gindex, /* glyph index for node */
263 FT_UInt gindex,
280 gindex, query, node, error ) \ argument
288 _gquery->gindex = (gindex); \
311 gindex, query, node, error ) \ argument
314 error = FTC_GCache_Lookup( FTC_GCACHE( cache ), hash, gindex, \
Dftcglyph.c31 FT_UInt gindex, in FTC_GNode_Init() argument
35 gnode->gindex = gindex; in FTC_GNode_Init()
58 gnode->gindex = 0; in FTC_GNode_Done()
78 gnode->gindex == gquery->gindex ); in ftc_gnode_compare()
188 FT_UInt gindex, in FTC_GCache_Lookup() argument
195 query->gindex = gindex; in FTC_GCache_Lookup()
Dftccmap.c239 FT_UInt gindex = 0; in FTC_CMapCache_Lookup() local
283 gindex = FTC_CMAP_NODE( node )->indices[char_code - in FTC_CMapCache_Lookup()
285 if ( gindex == FTC_CMAP_UNKNOWN ) in FTC_CMapCache_Lookup()
290 gindex = 0; in FTC_CMapCache_Lookup()
309 gindex = FT_Get_Char_Index( face, char_code ); in FTC_CMapCache_Lookup()
317 = (FT_UShort)gindex; in FTC_CMapCache_Lookup()
321 return gindex; in FTC_CMapCache_Lookup()
Dftcimage.c71 FT_UInt gindex = gquery->gindex; in FTC_INode_New() local
76 FTC_GNode_Init( gnode, gindex, family ); in FTC_INode_New()
79 error = clazz->family_load_glyph( family, gindex, cache, in FTC_INode_New()
Dftcimage.h54 #define FTC_INODE_GINDEX( x ) FTC_GNODE(x)->gindex
59 FT_UInt gindex,
Dftcsbits.h41 #define FTC_SNODE_GINDEX( x ) FTC_GNODE( x )->gindex
50 FT_UInt gindex,
/third_party/skia/third_party/externals/freetype/include/freetype/internal/services/
Dsvmetric.h40 FT_UInt gindex,
45 FT_UInt gindex,
50 FT_UInt gindex,
57 FT_UInt gindex,
62 FT_UInt gindex,
67 FT_UInt gindex,
72 FT_UInt gindex,
/third_party/skia/third_party/externals/freetype/src/truetype/
Dttpload.c184 FT_UInt gindex, in tt_face_get_location() argument
194 if ( gindex < face->num_locations ) in tt_face_get_location()
198 p = face->glyph_locations + gindex * 4; in tt_face_get_location()
209 p = face->glyph_locations + gindex * 2; in tt_face_get_location()
228 pos1, gindex )); in tt_face_get_location()
239 if ( gindex == face->num_locations - 2 ) in tt_face_get_location()
243 pos2 - pos1, gindex )); in tt_face_get_location()
253 pos2, gindex + 1 )); in tt_face_get_location()
620 FT_UInt gindex ) in tt_face_get_device_metrics() argument
631 gindex += 2; in tt_face_get_device_metrics()
[all …]
Dttpload.h35 FT_UInt gindex,
67 FT_UInt gindex );
/third_party/skia/third_party/externals/freetype/src/pfr/
Dpfrdrivr.c66 FT_UInt gindex, in pfr_get_advance() argument
75 if ( !gindex ) in pfr_get_advance()
78 gindex--; in pfr_get_advance()
85 if ( gindex < phys->num_chars ) in pfr_get_advance()
87 *anadvance = phys->chars[gindex].advance; in pfr_get_advance()
Dpfrobjs.c317 FT_UInt gindex, in pfr_slot_load() argument
329 FT_TRACE1(( "pfr_slot_load: glyph index %d\n", gindex )); in pfr_slot_load()
331 if ( gindex > 0 ) in pfr_slot_load()
332 gindex--; in pfr_slot_load()
334 if ( !face || gindex >= face->phy_font.num_chars ) in pfr_slot_load()
346 gindex, in pfr_slot_load()
358 gchar = face->phy_font.chars + gindex; in pfr_slot_load()
/third_party/skia/third_party/externals/freetype/src/base/
Dftadvanc.c75 FT_UInt gindex, in FT_Get_Advance() argument
88 if ( gindex >= (FT_UInt)face->num_glyphs ) in FT_Get_Advance()
97 error = func( face, gindex, 1, flags, padvance ); in FT_Get_Advance()
105 return FT_Get_Advances( face, gindex, 1, flags, padvance ); in FT_Get_Advance()
/third_party/skia/third_party/externals/freetype/include/freetype/
Dftcache.h787 FT_UInt gindex,
847 FT_UInt gindex,
1014 FT_UInt gindex,
1075 FT_UInt gindex,
/third_party/skia/third_party/externals/libjpeg-turbo/
Drdbmp.c188 register int gindex = rgb_green[cinfo->in_color_space]; in get_8bit_row() local
199 outptr[gindex] = colormap[1][t]; in get_8bit_row()
210 outptr[gindex] = colormap[1][t]; in get_8bit_row()
257 register int gindex = rgb_green[cinfo->in_color_space]; in get_24bit_row() local
265 outptr[gindex] = *inptr++; in get_24bit_row()
273 outptr[gindex] = *inptr++; in get_24bit_row()
322 register int gindex = rgb_green[cinfo->in_color_space]; in get_32bit_row() local
330 outptr[gindex] = *inptr++; in get_32bit_row()
338 outptr[gindex] = *inptr++; in get_32bit_row()
/third_party/openssl/crypto/ffc/
Dffc_params.c24 params->gindex = FFC_UNVERIFIABLE_GINDEX; in ossl_ffc_params_init()
101 params->gindex = index; in ossl_ffc_params_set_gindex()
199 dst->gindex = src->gindex; in ossl_ffc_params_copy()
234 ffc->gindex)) in ossl_ffc_params_todata()
/third_party/node/deps/openssl/openssl/crypto/ffc/
Dffc_params.c24 params->gindex = FFC_UNVERIFIABLE_GINDEX; in ossl_ffc_params_init()
101 params->gindex = index; in ossl_ffc_params_set_gindex()
199 dst->gindex = src->gindex; in ossl_ffc_params_copy()
234 ffc->gindex)) in ossl_ffc_params_todata()
/third_party/openssl/doc/man7/
DEVP_PKEY-DH.pod137 I<seed>, I<pcounter> and I<gindex> or I<hindex> may need to be stored for
140 (but the I<gindex> or I<hindex> cannot be stored). It is recommended to use a
197 int gindex = 2;
209 params[2] = OSSL_PARAM_construct_int("gindex", &gindex);
245 int gindex = ...; /* for the validation */
258 * NOTE: For unverifiable g use "hindex" instead of "gindex"
261 extra_params[1] = OSSL_PARAM_construct_int("gindex", &gindex);
DEVP_PKEY-DSA.pod12 and I<gindex> may need to be stored for validation purposes. For B<DSA> these
58 int gindex = 1;
68 params[2] = OSSL_PARAM_construct_int("gindex", &gindex);
/third_party/openssl/demos/pkey/
DEVP_PKEY_DSA_paramgen.c28 int gindex = 42; in main() local
43 params[3] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_FFC_GINDEX, &gindex); in main()
/third_party/alsa-lib/src/topology/
Dsave.c422 int gindex, const char *prefix) in tplg_save() argument
442 if (gindex >= 0 && elem->index != gindex) in tplg_save()
472 if (gindex >= 0 && elem->index != gindex) in tplg_save()
497 err = tptr->gsave(tplg, gindex, dst, prefix); in tplg_save()

1234