/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-layout-gdef-table.hh | 525 bool has_data () const { return version.to_int (); } in has_data() 554 bool has_mark_sets () const { return version.to_int () >= 0x00010002u && markGlyphSetsDef != 0; } in has_mark_sets() 556 { return version.to_int () >= 0x00010002u && (this+markGlyphSetsDef).covers (set_index, glyph_id); } in mark_set_covers() 558 bool has_var_store () const { return version.to_int () >= 0x00010003u && varStore != 0; } in has_var_store() 560 { return version.to_int () >= 0x00010003u ? this+varStore : Null (VariationStore); } in get_var_store() 606 (version.to_int () >= 0x00010002u ? markGlyphSetsDef.static_size : 0) + in get_size() 607 (version.to_int () >= 0x00010003u ? varStore.static_size : 0); in get_size() 616 if (version.to_int () < 0x00010003u || !varStore) return; in remap_layout_variation_indices() 650 if (version.to_int () >= 0x00010002u) in subset() 654 version.to_int () in subset() [all...] |
H A D | hb-ot-post-table.hh | 121 version = table->version.to_int (); in init() 263 bool has_data () const { return version.to_int (); } in has_data() 269 (version.to_int () == 0x00010000 || in sanitize() 270 (version.to_int () == 0x00020000 && v2X.sanitize (c)) || in sanitize() 271 version.to_int () == 0x00030000))); in sanitize()
|
H A D | hb-ot-cff1-table.cc | 375 hb_codepoint_t base = param.cff->std_code_to_glyph (env.argStack[n-2].to_int ()); in process_seac() 376 hb_codepoint_t accent = param.cff->std_code_to_glyph (env.argStack[n-1].to_int ()); in process_seac() 529 hb_codepoint_t base = param.cff->std_code_to_glyph (env.argStack[n-2].to_int ()); in process_seac() 530 hb_codepoint_t accent = param.cff->std_code_to_glyph (env.argStack[n-1].to_int ()); in process_seac() 590 hb_codepoint_t base_char = (hb_codepoint_t)env.argStack[n-2].to_int (); in process_seac() 591 hb_codepoint_t accent_char = (hb_codepoint_t)env.argStack[n-1].to_int (); in process_seac()
|
H A D | hb-cff-interp-common.hh | 224 int to_int () const { return value; } in to_int() function 233 { return ((double) (int16_t) to_int () == value); } in in_int_range() 488 int pop_int () { return this->pop ().to_int (); } in pop_int()
|
H A D | hb-ot-vorg-table.hh | 62 bool has_data () const { return version.to_int (); } in has_data()
|
H A D | hb-ot-layout-base-table.hh | 452 { return version.to_int () < 0x00010001u ? Null (VariationStore) : this+varStore; } in get_var_store() 499 (version.to_int () < 0x00010001u || varStore.sanitize (c, this)))); in sanitize()
|
H A D | hb-aat-layout-feat-table.hh | 164 bool has_data () const { return version.to_int (); } in has_data()
|
H A D | hb-aat-layout-trak-table.hh | 158 bool has_data () const { return version.to_int (); } in has_data()
|
H A D | hb-ot-stat-table.hh | 293 bool has_data () const { return version.to_int (); } in has_data()
|
H A D | hb-ot-var-fvar-table.hh | 164 bool has_data () const { return version.to_int (); } in has_data()
|
H A D | hb-ot-layout-gsubgpos.hh | 3560 bool has_data () const { return version.to_int (); } 3599 return (version.to_int () >= 0x00010001u ? this+featureVars : Null (FeatureVariations)) 3607 version.to_int () >= 0x00010001u) 3622 if (version.to_int () >= 0x00010001u) 3682 if (version.to_int () >= 0x00010001u) 3776 if (version.to_int () >= 0x00010001u) 3813 (version.to_int () >= 0x00010001u ? featureVars.static_size : 0); 3829 if (unlikely (!(version.to_int () < 0x00010001u || featureVars.sanitize (c, this))))
|
H A D | hb-ot-math-table.hh | 998 bool has_data () const { return version.to_int (); } in has_data()
|
H A D | hb-subset-cff-common.hh | 86 encode_int (n.to_int ()); in encode_num()
|
H A D | hb-open-type.hh | 266 uint32_t to_int () const { return (major << (sizeof (FixedType) * 8)) + minor; }
|
/third_party/node/deps/openssl/openssl/crypto/conf/ |
H A D | conf_lib.c | 336 int (*to_int)(const CONF *, char) = &default_to_int; in NCONF_get_number_e() 351 if (conf->meth->to_int != NULL) in NCONF_get_number_e() 352 to_int = conf->meth->to_int; in NCONF_get_number_e() 355 const int d = to_int(conf, *str); in NCONF_get_number_e()
|
/third_party/openssl/crypto/conf/ |
H A D | conf_lib.c | 336 int (*to_int)(const CONF *, char) = &default_to_int; in NCONF_get_number_e() 351 if (conf->meth->to_int != NULL) in NCONF_get_number_e() 352 to_int = conf->meth->to_int; in NCONF_get_number_e() 355 const int d = to_int(conf, *str); in NCONF_get_number_e()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-helpers.c | 340 ecma_number_t to_int; in ecma_builtin_helper_array_index_normalize() local 342 if (ECMA_IS_VALUE_ERROR (ecma_op_to_integer (arg, &to_int))) in ecma_builtin_helper_array_index_normalize() 347 *number_p = ((to_int < 0) ? (uint32_t) JERRY_MAX ((length + to_int), 0) in ecma_builtin_helper_array_index_normalize() 348 : (uint32_t) JERRY_MIN (to_int, length)); in ecma_builtin_helper_array_index_normalize()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | conftypes.h | 30 int (*to_int) (const CONF *conf, char c); member
|
/third_party/openssl/include/openssl/ |
H A D | conftypes.h | 30 int (*to_int) (const CONF *conf, char c); member
|
/third_party/skia/third_party/externals/freetype/src/cid/ |
H A D | cidparse.h | 107 #define cid_parser_to_int( p ) (p)->root.funcs.to_int( &(p)->root )
|
/third_party/skia/third_party/externals/freetype/src/type1/ |
H A D | t1parse.h | 99 #define T1_ToInt( p ) (p)->root.funcs.to_int( &(p)->root )
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | conf.h | 46 int (*to_int) (const CONF *conf, char c); member
|
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
H A D | psaux.h | 389 (*to_int)( PS_Parser parser ); member
|
/third_party/skia/third_party/externals/freetype/src/type42/ |
H A D | t42parse.c | 118 (p)->root.funcs.to_int( &(p)->root )
|