Home
last modified time | relevance | path

Searched refs:to_int (Results 1 - 24 of 24) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-layout-gdef-table.hh525 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 Dhb-ot-post-table.hh121 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 Dhb-ot-cff1-table.cc375 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 Dhb-cff-interp-common.hh224 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 Dhb-ot-vorg-table.hh62 bool has_data () const { return version.to_int (); } in has_data()
H A Dhb-ot-layout-base-table.hh452 { 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 Dhb-aat-layout-feat-table.hh164 bool has_data () const { return version.to_int (); } in has_data()
H A Dhb-aat-layout-trak-table.hh158 bool has_data () const { return version.to_int (); } in has_data()
H A Dhb-ot-stat-table.hh293 bool has_data () const { return version.to_int (); } in has_data()
H A Dhb-ot-var-fvar-table.hh164 bool has_data () const { return version.to_int (); } in has_data()
H A Dhb-ot-layout-gsubgpos.hh3560 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 Dhb-ot-math-table.hh998 bool has_data () const { return version.to_int (); } in has_data()
H A Dhb-subset-cff-common.hh86 encode_int (n.to_int ()); in encode_num()
H A Dhb-open-type.hh266 uint32_t to_int () const { return (major << (sizeof (FixedType) * 8)) + minor; }
/third_party/node/deps/openssl/openssl/crypto/conf/
H A Dconf_lib.c336 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 Dconf_lib.c336 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 Decma-builtin-helpers.c340 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 Dconftypes.h30 int (*to_int) (const CONF *conf, char c); member
/third_party/openssl/include/openssl/
H A Dconftypes.h30 int (*to_int) (const CONF *conf, char c); member
/third_party/skia/third_party/externals/freetype/src/cid/
H A Dcidparse.h107 #define cid_parser_to_int( p ) (p)->root.funcs.to_int( &(p)->root )
/third_party/skia/third_party/externals/freetype/src/type1/
H A Dt1parse.h99 #define T1_ToInt( p ) (p)->root.funcs.to_int( &(p)->root )
/third_party/openssl/ohos_lite/include/openssl/
H A Dconf.h46 int (*to_int) (const CONF *conf, char c); member
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
H A Dpsaux.h389 (*to_int)( PS_Parser parser ); member
/third_party/skia/third_party/externals/freetype/src/type42/
H A Dt42parse.c118 (p)->root.funcs.to_int( &(p)->root )

Completed in 25 milliseconds