Home
last modified time | relevance | path

Searched refs:gid (Results 1 – 22 of 22) sorted by relevance

/AliOS-Things-master/components/freetype/src/gxvalid/
A Dgxvcommn.c499 FT_UShort gid; in gxv_LookupTable_fmt2_validate() local
527 if ( lastGlyph < gid ) in gxv_LookupTable_fmt2_validate()
546 gid = firstGlyph; in gxv_LookupTable_fmt2_validate()
548 lastGlyph = gid; in gxv_LookupTable_fmt2_validate()
551 for ( gid = firstGlyph; gid <= lastGlyph; gid++ ) in gxv_LookupTable_fmt2_validate()
571 FT_UShort gid; in gxv_LookupTable_fmt4_validate() local
598 if ( lastGlyph < gid ) in gxv_LookupTable_fmt4_validate()
619 lastGlyph = gid; in gxv_LookupTable_fmt4_validate()
625 for ( gid = firstGlyph; gid <= lastGlyph; gid++ ) in gxv_LookupTable_fmt4_validate()
819 if ( gid == 0xFFFFU ) in gxv_glyphid_validate()
[all …]
A Dgxvprop.c77 gxv_prop_zero_advance_validate( FT_UShort gid, in gxv_prop_zero_advance_validate() argument
90 gid, in gxv_prop_zero_advance_validate()
A Dgxvjust.c70 gxv_just_check_max_gid( FT_UShort gid, in gxv_just_check_max_gid() argument
74 if ( gid < valid->face->num_glyphs ) in gxv_just_check_max_gid()
79 msg_tag, gid, valid->face->num_glyphs )); in gxv_just_check_max_gid()
A Dgxvcommn.h393 gxv_glyphid_validate( FT_UShort gid,
406 gxv_ctlPoint_validate( FT_UShort gid,
/AliOS-Things-master/components/littlevgl/src/lv_font/
A Dlv_font_fmt_txt.c57 uint32_t gid = get_glyph_dsc_id(font, unicode_letter); in lv_font_get_bitmap_fmt_txt() local
58 if(!gid) return false; in lv_font_get_bitmap_fmt_txt()
60 const lv_font_fmt_txt_glyph_dsc_t * gdsc = &fdsc->glyph_dsc[gid]; in lv_font_get_bitmap_fmt_txt()
79 uint32_t gid = get_glyph_dsc_id(font, unicode_letter); in lv_font_get_glyph_dsc_fmt_txt() local
80 if(!gid) return false; in lv_font_get_glyph_dsc_fmt_txt()
86 kvalue = get_kern_value(font, gid, gid_next); in lv_font_get_glyph_dsc_fmt_txt()
91 const lv_font_fmt_txt_glyph_dsc_t * gdsc = &fdsc->glyph_dsc[gid]; in lv_font_get_glyph_dsc_fmt_txt()
/AliOS-Things-master/components/freetype/src/otvalid/
A Dotvmath.c301 FT_UInt gid; in otv_GlyphAssembly_validate() local
304 gid = FT_NEXT_USHORT( p ); in otv_GlyphAssembly_validate()
305 if ( gid >= valid->glyph_count ) in otv_GlyphAssembly_validate()
337 FT_UInt gid; in otv_MathGlyphConstruction_validate() local
340 gid = FT_NEXT_USHORT( p ); in otv_MathGlyphConstruction_validate()
341 if ( gid >= valid->glyph_count ) in otv_MathGlyphConstruction_validate()
A Dotvcommn.c73 FT_UInt gid; in otv_Coverage_validate() local
76 gid = FT_NEXT_USHORT( p ); in otv_Coverage_validate()
77 if ( gid >= valid->glyph_count ) in otv_Coverage_validate()
/AliOS-Things-master/components/freetype/src/tools/ftrandom/
A Dftrandom.c150 int gid; in TestFace() local
163 for ( gid = 0; gid < face->num_glyphs; ++gid ) in TestFace()
168 if ( !FT_Load_Glyph( face, gid, load_flags ) ) in TestFace()
172 FT_Load_Glyph( face, gid, load_flags ); in TestFace()
/AliOS-Things-master/components/freetype/src/cff/
A Dcf2ft.c547 CF2_Int gid; in cf2_getSeacComponent() local
557 gid = cff_lookup_glyph_by_stdcharcode( decoder->cff, code ); in cf2_getSeacComponent()
558 if ( gid < 0 ) in cf2_getSeacComponent()
562 gid, in cf2_getSeacComponent()
A Dcffload.c1270 FT_UInt gid = 0; in cff_encoding_load() local
1274 gid = cff_charset_cid_to_gindex( charset, sid ); in cff_encoding_load()
1276 if ( gid != 0 ) in cff_encoding_load()
1278 encoding->codes[j] = (FT_UShort)gid; in cff_encoding_load()
/AliOS-Things-master/components/mbedtls/include/mbedtls/
A Decdsa.h478 int mbedtls_ecdsa_genkey( mbedtls_ecdsa_context *ctx, mbedtls_ecp_group_id gid,
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A DChangelog14 - added env, uid and gid options in os.exec()
A Dquickjs-libc.c2729 uint32_t uid = -1, gid = -1; in js_os_exec() local
2828 ret = JS_ToUint32(ctx, &gid, val); in js_os_exec()
2862 if (gid != -1) { in js_os_exec()
2863 if (setgid(gid) < 0) in js_os_exec()
/AliOS-Things-master/components/mbedtls/library/
A Decdsa.c800 int mbedtls_ecdsa_genkey( mbedtls_ecdsa_context *ctx, mbedtls_ecp_group_id gid, in mbedtls_ecdsa_genkey() argument
806 return( mbedtls_ecp_group_load( &ctx->grp, gid ) || in mbedtls_ecdsa_genkey()
A Dssl_srv.c3032 const mbedtls_ecp_group_id *gid; in ssl_prepare_server_key_exchange() local
3037 for( gid = ssl->conf->curve_list; *gid != MBEDTLS_ECP_DP_NONE; gid++ ) in ssl_prepare_server_key_exchange()
3039 if( (*curve)->grp_id == *gid ) in ssl_prepare_server_key_exchange()
A Dx509_crt.c215 const mbedtls_ecp_group_id gid = mbedtls_pk_ec( *pk )->grp.id; in x509_profile_check_key() local
217 if( gid == MBEDTLS_ECP_DP_NONE ) in x509_profile_check_key()
220 if( ( profile->allowed_curves & MBEDTLS_X509_ID_FLAG( gid ) ) != 0 ) in x509_profile_check_key()
A Dssl_tls.c9486 const mbedtls_ecp_group_id *gid; in mbedtls_ssl_check_curve() local
9491 for( gid = ssl->conf->curve_list; *gid != MBEDTLS_ECP_DP_NONE; gid++ ) in mbedtls_ssl_check_curve()
9492 if( *gid == grp_id ) in mbedtls_ssl_check_curve()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/untgz/
A Duntgz.c73 char gid[8]; /* 116 */ member
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/libc/
A Dquickjs_libc.c2999 uint32_t uid = -1, gid = -1; in js_os_exec() local
3117 ret = JS_ToUint32(ctx, &gid, val); in js_os_exec()
3156 if (gid != -1) { in js_os_exec()
3157 if (setgid(gid) < 0) { in js_os_exec()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/doc/
A Dquickjs.texi633 uid, gid, rdev, size, blocks, atime, mtime, ctime. The times are
731 @item gid
732 Integer. If present, the process gid with @code{setgid}.
/AliOS-Things-master/components/freetype/src/sfnt/
A Dttcmap.c2859 FT_ULong gid = TT_NEXT_USHORT( ndp ); in tt_cmap14_validate() local
2871 gid >= TT_VALID_GLYPH_COUNT( valid ) ) in tt_cmap14_validate()
/AliOS-Things-master/hardware/chip/haas1000/drivers/rtos/rhino/kernel/include/network/curl/
A Dcurl.h300 int gid; member

Completed in 76 milliseconds