Home
last modified time | relevance | path

Searched refs:value_p (Results 1 – 25 of 61) sorted by relevance

123

/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-external-pointers.c56 ecma_property_value_t *value_p; in ecma_create_native_pointer_property() local
57value_p = ecma_create_named_data_property (obj_p, name_p, ECMA_PROPERTY_CONFIGURABLE_WRITABLE, &pr… in ecma_create_native_pointer_property()
63 ECMA_SET_INTERNAL_VALUE_POINTER (value_p->value, native_pointer_p); in ecma_create_native_pointer_property()
67 ecma_property_value_t *value_p = ECMA_PROPERTY_VALUE_PTR (property_p); in ecma_create_native_pointer_property() local
69 …ecma_native_pointer_t *iter_p = ECMA_GET_INTERNAL_VALUE_POINTER (ecma_native_pointer_t, value_p->v… in ecma_create_native_pointer_property()
132 ecma_property_value_t *value_p = ECMA_PROPERTY_VALUE_PTR (property_p); in ecma_get_native_pointer_value() local
135 value_p->value); in ecma_get_native_pointer_value()
180 ecma_property_value_t *value_p = ECMA_PROPERTY_VALUE_PTR (property_p); in ecma_delete_native_pointer_property() local
183 value_p->value); in ecma_delete_native_pointer_property()
Decma-helpers-value.c931 ecma_value_assign_value (ecma_value_t *value_p, /**< [in, out] ecma value */ in ecma_value_assign_value() argument
937 if (*value_p == ecma_value) in ecma_value_assign_value()
942 if (ecma_get_value_type_field (ecma_value || *value_p) == ECMA_TYPE_DIRECT) in ecma_value_assign_value()
944 *value_p = ecma_value; in ecma_value_assign_value()
947 && ecma_is_value_float_number (*value_p)) in ecma_value_assign_value()
950 ecma_number_t *num_dst_p = (ecma_number_t *) ecma_get_pointer_from_ecma_value (*value_p); in ecma_value_assign_value()
956 ecma_free_value_if_not_object (*value_p); in ecma_value_assign_value()
957 *value_p = ecma_copy_value_if_not_object (ecma_value); in ecma_value_assign_value()
997 ecma_value_assign_float_number (ecma_value_t *value_p, /**< [in, out] ecma value */ in ecma_value_assign_float_number() argument
1000 if (ecma_is_value_float_number (*value_p)) in ecma_value_assign_float_number()
[all …]
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects-general.c166 ecma_array_object_delete_property (obj_p, property_name_p, property_ref.value_p); in ecma_op_general_object_delete()
171 ecma_delete_property (obj_p, property_ref.value_p); in ecma_op_general_object_delete()
403 …ecma_extended_property_ref_t ext_property_ref = { .property_ref.value_p = NULL, .property_p = NULL… in ecma_op_general_object_define_own_property()
512 ext_property_ref.property_ref.value_p->value)))) in ecma_op_general_object_define_own_property()
522 ecma_property_value_t *value_p = ext_property_ref.property_ref.value_p; in ecma_op_general_object_define_own_property() local
524 ecma_getter_setter_pointers_t *get_set_pair_p = ecma_get_named_accessor_property (value_p); in ecma_op_general_object_define_own_property()
549 ecma_property_value_t *value_p = ext_property_ref.property_ref.value_p; in ecma_op_general_object_define_own_property() local
554 ecma_free_value_if_not_object (value_p->value); in ecma_op_general_object_define_own_property()
561 ECMA_SET_NON_NULL_POINTER (value_p->getter_setter_pair_cp, getter_setter_pair_p); in ecma_op_general_object_define_own_property()
563 value_p->getter_setter_pair.getter_cp = JMEM_CP_NULL; in ecma_op_general_object_define_own_property()
[all …]
Decma-container-object.c708 ecma_property_value_t *value_p = ecma_create_named_data_property (key_p, in ecma_op_container_set_weak() local
714 ECMA_SET_INTERNAL_VALUE_POINTER (value_p->value, refs_p); in ecma_op_container_set_weak()
1067 ecma_property_value_t *value_p = ECMA_PROPERTY_VALUE_PTR (property_p); in ecma_op_iterator_get_index() local
1069 return (uint32_t) (ecma_get_number_from_value (value_p->value)); in ecma_op_iterator_get_index()
1088 ecma_property_value_t *value_p; in ecma_op_iterator_set_index() local
1092value_p = ecma_create_named_data_property (iter_obj_p, prop_name_p, ECMA_PROPERTY_FLAG_WRITABLE, &… in ecma_op_iterator_set_index()
1093 value_p->value = ecma_make_uint32_value (index); in ecma_op_iterator_set_index()
1097 value_p = ECMA_PROPERTY_VALUE_PTR (property_p); in ecma_op_iterator_set_index()
1098 value_p->value = ecma_make_uint32_value (index); in ecma_op_iterator_set_index()
/third_party/abseil-cpp/absl/strings/
Dnumbers.cc794 IntType* value_p) { in safe_parse_positive_int() argument
810 *value_p = value; in safe_parse_positive_int()
814 *value_p = vmax; in safe_parse_positive_int()
819 *value_p = vmax; in safe_parse_positive_int()
824 *value_p = value; in safe_parse_positive_int()
830 IntType* value_p) { in safe_parse_negative_int() argument
853 *value_p = value; in safe_parse_negative_int()
857 *value_p = vmin; in safe_parse_negative_int()
862 *value_p = vmin; in safe_parse_negative_int()
867 *value_p = value; in safe_parse_negative_int()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dnumbers.cc918 IntType* value_p) { in safe_parse_positive_int() argument
934 *value_p = value; in safe_parse_positive_int()
938 *value_p = vmax; in safe_parse_positive_int()
943 *value_p = vmax; in safe_parse_positive_int()
948 *value_p = value; in safe_parse_positive_int()
954 IntType* value_p) { in safe_parse_negative_int() argument
977 *value_p = value; in safe_parse_negative_int()
981 *value_p = vmin; in safe_parse_negative_int()
986 *value_p = vmin; in safe_parse_negative_int()
991 *value_p = value; in safe_parse_negative_int()
[all …]
/third_party/glib/gio/
Dgfileattribute.c562 gpointer value_p, in _g_file_attribute_value_set_from_pointer() argument
572 value->u.string = g_strdup (value_p); in _g_file_attribute_value_set_from_pointer()
574 value->u.string = value_p; in _g_file_attribute_value_set_from_pointer()
579 value->u.stringv = g_strdupv (value_p); in _g_file_attribute_value_set_from_pointer()
581 value->u.stringv = value_p; in _g_file_attribute_value_set_from_pointer()
586 value->u.obj = g_object_ref (value_p); in _g_file_attribute_value_set_from_pointer()
588 value->u.obj = value_p; in _g_file_attribute_value_set_from_pointer()
592 value->u.boolean = *(gboolean *)value_p; in _g_file_attribute_value_set_from_pointer()
596 value->u.uint32 = *(guint32 *)value_p; in _g_file_attribute_value_set_from_pointer()
600 value->u.int32 = *(gint32 *)value_p; in _g_file_attribute_value_set_from_pointer()
[all …]
Dglocalfileinfo.c432 char *value_p; in get_one_xattr() local
439 value_p = NULL; in get_one_xattr()
441 value_p = value; in get_one_xattr()
449 value_p = g_malloc (len+1); in get_one_xattr()
451 len = g_getxattr (path, xattr, value_p, len, follow_symlinks); in get_one_xattr()
455 g_free (value_p); in get_one_xattr()
463 value_p[len] = 0; in get_one_xattr()
465 escape_xattr (info, gio_attr, value_p, len); in get_one_xattr()
467 if (value_p != value) in get_one_xattr()
468 g_free (value_p); in get_one_xattr()
[all …]
/third_party/freetype/src/gxvalid/
Dgxvopbd.c71 GXV_LookupValueCPtr value_p, in gxv_opbd_LookupValue_validate() argument
75 FT_Bytes p = gxvalid->root->base + value_p->u; in gxv_opbd_LookupValue_validate()
81 if ( value_p->u < GXV_OPBD_DATA( valueOffset_min ) ) in gxv_opbd_LookupValue_validate()
82 GXV_OPBD_DATA( valueOffset_min ) = value_p->u; in gxv_opbd_LookupValue_validate()
Dgxvjust.c408 GXV_LookupValueCPtr value_p, in gxv_just_pcTable_LookupValue_entry_validate() argument
413 if ( value_p->u > GXV_JUST_DATA( pc_offset_max ) ) in gxv_just_pcTable_LookupValue_entry_validate()
414 GXV_JUST_DATA( pc_offset_max ) = value_p->u; in gxv_just_pcTable_LookupValue_entry_validate()
415 if ( value_p->u < GXV_JUST_DATA( pc_offset_max ) ) in gxv_just_pcTable_LookupValue_entry_validate()
416 GXV_JUST_DATA( pc_offset_min ) = value_p->u; in gxv_just_pcTable_LookupValue_entry_validate()
544 GXV_LookupValueCPtr value_p, in gxv_just_wdcTable_LookupValue_validate() argument
549 if ( value_p->u > GXV_JUST_DATA( wdc_offset_max ) ) in gxv_just_wdcTable_LookupValue_validate()
550 GXV_JUST_DATA( wdc_offset_max ) = value_p->u; in gxv_just_wdcTable_LookupValue_validate()
551 if ( value_p->u < GXV_JUST_DATA( wdc_offset_min ) ) in gxv_just_wdcTable_LookupValue_validate()
552 GXV_JUST_DATA( wdc_offset_min ) = value_p->u; in gxv_just_wdcTable_LookupValue_validate()
Dgxvmort4.c44 GXV_LookupValueCPtr value_p, in gxv_mort_subtable_type4_lookupval_validate() argument
49 gxv_glyphid_validate( value_p->u, gxvalid ); in gxv_mort_subtable_type4_lookupval_validate()
Dgxvmorx1.c162 GXV_LookupValueCPtr value_p, in gxv_morx_subtable_type1_LookupValue_validate() argument
167 GXV_TRACE(( "morx subtable type1 subst.: %d -> %d\n", glyph, value_p->u )); in gxv_morx_subtable_type1_LookupValue_validate()
169 if ( value_p->u > gxvalid->face->num_glyphs ) in gxv_morx_subtable_type1_LookupValue_validate()
Dgxvlcar.c87 GXV_LookupValueCPtr value_p, in gxv_lcar_LookupValue_validate() argument
90 FT_Bytes p = gxvalid->root->base + value_p->u; in gxv_lcar_LookupValue_validate()
/third_party/skia/third_party/externals/freetype/src/gxvalid/
Dgxvopbd.c71 GXV_LookupValueCPtr value_p, in gxv_opbd_LookupValue_validate() argument
75 FT_Bytes p = gxvalid->root->base + value_p->u; in gxv_opbd_LookupValue_validate()
81 if ( value_p->u < GXV_OPBD_DATA( valueOffset_min ) ) in gxv_opbd_LookupValue_validate()
82 GXV_OPBD_DATA( valueOffset_min ) = value_p->u; in gxv_opbd_LookupValue_validate()
Dgxvjust.c409 GXV_LookupValueCPtr value_p, in gxv_just_pcTable_LookupValue_entry_validate() argument
414 if ( value_p->u > GXV_JUST_DATA( pc_offset_max ) ) in gxv_just_pcTable_LookupValue_entry_validate()
415 GXV_JUST_DATA( pc_offset_max ) = value_p->u; in gxv_just_pcTable_LookupValue_entry_validate()
416 if ( value_p->u < GXV_JUST_DATA( pc_offset_max ) ) in gxv_just_pcTable_LookupValue_entry_validate()
417 GXV_JUST_DATA( pc_offset_min ) = value_p->u; in gxv_just_pcTable_LookupValue_entry_validate()
545 GXV_LookupValueCPtr value_p, in gxv_just_wdcTable_LookupValue_validate() argument
550 if ( value_p->u > GXV_JUST_DATA( wdc_offset_max ) ) in gxv_just_wdcTable_LookupValue_validate()
551 GXV_JUST_DATA( wdc_offset_max ) = value_p->u; in gxv_just_wdcTable_LookupValue_validate()
552 if ( value_p->u < GXV_JUST_DATA( wdc_offset_min ) ) in gxv_just_wdcTable_LookupValue_validate()
553 GXV_JUST_DATA( wdc_offset_min ) = value_p->u; in gxv_just_wdcTable_LookupValue_validate()
Dgxvmort4.c44 GXV_LookupValueCPtr value_p, in gxv_mort_subtable_type4_lookupval_validate() argument
49 gxv_glyphid_validate( value_p->u, gxvalid ); in gxv_mort_subtable_type4_lookupval_validate()
Dgxvmorx1.c162 GXV_LookupValueCPtr value_p, in gxv_morx_subtable_type1_LookupValue_validate() argument
167 GXV_TRACE(( "morx subtable type1 subst.: %d -> %d\n", glyph, value_p->u )); in gxv_morx_subtable_type1_LookupValue_validate()
169 if ( value_p->u > gxvalid->face->num_glyphs ) in gxv_morx_subtable_type1_LookupValue_validate()
Dgxvlcar.c87 GXV_LookupValueCPtr value_p, in gxv_lcar_LookupValue_validate() argument
90 FT_Bytes p = gxvalid->root->base + value_p->u; in gxv_lcar_LookupValue_validate()
/third_party/flutter/skia/third_party/externals/freetype/src/gxvalid/
Dgxvopbd.c71 GXV_LookupValueCPtr value_p, in gxv_opbd_LookupValue_validate() argument
75 FT_Bytes p = gxvalid->root->base + value_p->u; in gxv_opbd_LookupValue_validate()
81 if ( value_p->u < GXV_OPBD_DATA( valueOffset_min ) ) in gxv_opbd_LookupValue_validate()
82 GXV_OPBD_DATA( valueOffset_min ) = value_p->u; in gxv_opbd_LookupValue_validate()
Dgxvjust.c408 GXV_LookupValueCPtr value_p, in gxv_just_pcTable_LookupValue_entry_validate() argument
413 if ( value_p->u > GXV_JUST_DATA( pc_offset_max ) ) in gxv_just_pcTable_LookupValue_entry_validate()
414 GXV_JUST_DATA( pc_offset_max ) = value_p->u; in gxv_just_pcTable_LookupValue_entry_validate()
415 if ( value_p->u < GXV_JUST_DATA( pc_offset_max ) ) in gxv_just_pcTable_LookupValue_entry_validate()
416 GXV_JUST_DATA( pc_offset_min ) = value_p->u; in gxv_just_pcTable_LookupValue_entry_validate()
544 GXV_LookupValueCPtr value_p, in gxv_just_wdcTable_LookupValue_validate() argument
549 if ( value_p->u > GXV_JUST_DATA( wdc_offset_max ) ) in gxv_just_wdcTable_LookupValue_validate()
550 GXV_JUST_DATA( wdc_offset_max ) = value_p->u; in gxv_just_wdcTable_LookupValue_validate()
551 if ( value_p->u < GXV_JUST_DATA( wdc_offset_min ) ) in gxv_just_wdcTable_LookupValue_validate()
552 GXV_JUST_DATA( wdc_offset_min ) = value_p->u; in gxv_just_wdcTable_LookupValue_validate()
Dgxvmort4.c44 GXV_LookupValueCPtr value_p, in gxv_mort_subtable_type4_lookupval_validate() argument
49 gxv_glyphid_validate( value_p->u, gxvalid ); in gxv_mort_subtable_type4_lookupval_validate()
Dgxvmorx1.c162 GXV_LookupValueCPtr value_p, in gxv_morx_subtable_type1_LookupValue_validate() argument
167 GXV_TRACE(( "morx subtable type1 subst.: %d -> %d\n", glyph, value_p->u )); in gxv_morx_subtable_type1_LookupValue_validate()
169 if ( value_p->u > gxvalid->face->num_glyphs ) in gxv_morx_subtable_type1_LookupValue_validate()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-symbol.c117 ecma_string_t *value_p = JMEM_CP_GET_NON_NULL_POINTER (ecma_string_t, in ecma_builtin_symbol_for_helper() local
122 ecma_string_t *symbol_desc_p = ecma_get_symbol_description (value_p); in ecma_builtin_symbol_for_helper()
129 return ecma_copy_value (ecma_make_symbol_value (value_p)); in ecma_builtin_symbol_for_helper()
134 if (string_p == value_p) in ecma_builtin_symbol_for_helper()
/third_party/glib/glib/
Dgscanner.c358 GTokenValue *value_p,
363 GTokenValue *value_p,
480 GTokenValue *value_p) in g_scanner_free_value() argument
489 g_free (value_p->v_string); in g_scanner_free_value()
1654 GTokenValue *value_p, in g_scanner_get_token_i() argument
1660 g_scanner_free_value (token_p, value_p); in g_scanner_get_token_i()
1661 g_scanner_get_token_ll (scanner, token_p, value_p, line_p, position_p); in g_scanner_get_token_i()
1666 strchr (scanner->config->cset_skip_characters, value_p->v_char)) || in g_scanner_get_token_i()
1681 *token_p = (GTokenType)(intptr_t)value_p->v_symbol; in g_scanner_get_token_i()
1704 gint64 temp = value_p->v_int64; in g_scanner_get_token_i()
[all …]
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil.cc697 string text, IntType* value_p) { in safe_parse_positive_int() argument
711 *value_p = value; in safe_parse_positive_int()
715 *value_p = vmax; in safe_parse_positive_int()
720 *value_p = vmax; in safe_parse_positive_int()
725 *value_p = value; in safe_parse_positive_int()
731 const string& text, IntType* value_p) { in safe_parse_negative_int() argument
752 *value_p = value; in safe_parse_negative_int()
756 *value_p = vmin; in safe_parse_negative_int()
761 *value_p = vmin; in safe_parse_negative_int()
766 *value_p = value; in safe_parse_negative_int()
[all …]

123