Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-helpers-external-pointers.c56 ecma_property_value_t *value_p; in ecma_create_native_pointer_property() local
57 value_p = ecma_create_named_data_property (obj_p, name_p, ECMA_PROPERTY_CONFIGURABLE_WRITABLE, &property_p); 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->value); 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()
H A 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()
1024 ecma_value_assign_number(ecma_value_t *value_p, ecma_number_t ecma_number) ecma_value_assign_number() argument
[all...]
H A Decma-literal-storage.c187 ecma_string_t *value_p = JMEM_CP_GET_NON_NULL_POINTER (ecma_string_t, in ecma_find_or_create_literal_string() local
190 if (ecma_compare_ecma_strings (string_p, value_p)) in ecma_find_or_create_literal_string()
194 return ecma_make_string_value (value_p); in ecma_find_or_create_literal_string()
H A Decma-helpers.h276 void ecma_value_assign_value (ecma_value_t *value_p, ecma_value_t ecma_value);
277 void ecma_value_assign_number (ecma_value_t *value_p, ecma_number_t ecma_number);
H A Decma-gc.c790 ecma_property_value_t *value_p = ECMA_PROPERTY_VALUE_PTR (property_p); in ecma_gc_free_native_pointer() local
794 value_p->value); in ecma_gc_free_native_pointer()
H A Decma-globals.h603 ecma_property_value_t *value_p; /**< property value pointer for real properties */ member
/third_party/jerryscript/jerry-core/ecma/operations/
H A 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 in ecma_op_general_object_define_own_property()
[all...]
H A 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
1092 value_p = ecma_create_named_data_property (iter_obj_p, prop_name_p, ECMA_PROPERTY_FLAG_WRITABLE, &property_p); 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()
H A Decma-promise-object.c478 ecma_property_value_t *value_p; in ecma_promise_create_resolving_functions() local
480 value_p = ecma_create_named_data_property (ecma_get_object_from_value (funcs->resolve), in ecma_promise_create_resolving_functions()
484 value_p->value = already_resolved; in ecma_promise_create_resolving_functions()
486 value_p = ecma_create_named_data_property (ecma_get_object_from_value (funcs->reject), in ecma_promise_create_resolving_functions()
490 value_p->value = already_resolved; in ecma_promise_create_resolving_functions()
H A Decma-function-object.c1413 ecma_property_value_t *value_p = ecma_create_named_data_property (object_p, in ecma_op_function_try_to_lazy_instantiate_property() local
1417 value_p->value = ecma_make_uint32_value (len); in ecma_op_function_try_to_lazy_instantiate_property()
1442 ecma_property_value_t *value_p = ecma_create_named_data_property (object_p, in ecma_op_function_try_to_lazy_instantiate_property() local
1446 value_p->value = ECMA_VALUE_NULL; in ecma_op_function_try_to_lazy_instantiate_property()
H A Decma-objects.c346 property_ref_p->value_p = ECMA_PROPERTY_VALUE_PTR (property_p); in ecma_op_object_get_own_property()
1541 setter_cp = ecma_get_named_accessor_property (property_ref.value_p)->setter_cp; in ecma_op_object_put_with_receiver()
1921 prop_desc_p->value = ecma_copy_value (property_ref.value_p->value); in ecma_op_object_get_own_property_descriptor()
1936 ecma_getter_setter_pointers_t *get_set_pair_p = ecma_get_named_accessor_property (property_ref.value_p); in ecma_op_object_get_own_property_descriptor()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dnumbers.cc918 IntType* value_p) { in safe_parse_positive_int()
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() member
954 IntType* value_p) { in safe_parse_negative_int()
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 in safe_parse_negative_int()
917 safe_parse_positive_int(absl::string_view text, int base, IntType* value_p) safe_parse_positive_int() argument
953 safe_parse_negative_int(absl::string_view text, int base, IntType* value_p) safe_parse_negative_int() argument
[all...]
/third_party/skia/third_party/externals/freetype/src/gxvalid/
H A Dgxvjust.c409 GXV_LookupValueCPtr value_p, in gxv_just_pcTable_LookupValue_entry_validate()
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()
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 in gxv_just_wdcTable_LookupValue_validate()
408 gxv_just_pcTable_LookupValue_entry_validate( FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator gxvalid ) gxv_just_pcTable_LookupValue_entry_validate() argument
544 gxv_just_wdcTable_LookupValue_validate( FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator gxvalid ) gxv_just_wdcTable_LookupValue_validate() argument
[all...]
H A Dgxvopbd.c71 GXV_LookupValueCPtr value_p, in gxv_opbd_LookupValue_validate()
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()
70 gxv_opbd_LookupValue_validate( FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator gxvalid ) gxv_opbd_LookupValue_validate() argument
H A Dgxvmort4.c44 GXV_LookupValueCPtr value_p, in gxv_mort_subtable_type4_lookupval_validate()
49 gxv_glyphid_validate( value_p->u, gxvalid ); in gxv_mort_subtable_type4_lookupval_validate()
43 gxv_mort_subtable_type4_lookupval_validate( FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator gxvalid ) gxv_mort_subtable_type4_lookupval_validate() argument
H A Dgxvmorx1.c162 GXV_LookupValueCPtr value_p, in gxv_morx_subtable_type1_LookupValue_validate()
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()
161 gxv_morx_subtable_type1_LookupValue_validate( FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator gxvalid ) gxv_morx_subtable_type1_LookupValue_validate() argument
H A Dgxvlcar.c87 GXV_LookupValueCPtr value_p, in gxv_lcar_LookupValue_validate()
90 FT_Bytes p = gxvalid->root->base + value_p->u; in gxv_lcar_LookupValue_validate()
86 gxv_lcar_LookupValue_validate( FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator gxvalid ) gxv_lcar_LookupValue_validate() argument
H A Dgxvbsln.c75 GXV_LookupValueCPtr value_p, in gxv_bsln_LookupValue_validate()
78 FT_UShort v = value_p->u; in gxv_bsln_LookupValue_validate()
74 gxv_bsln_LookupValue_validate( FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator gxvalid ) gxv_bsln_LookupValue_validate() argument
H A Dgxvprop.c190 GXV_LookupValueCPtr value_p, in gxv_prop_LookupValue_validate()
193 gxv_prop_property_validate( value_p->u, glyph, gxvalid ); in gxv_prop_LookupValue_validate()
189 gxv_prop_LookupValue_validate( FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator gxvalid ) gxv_prop_LookupValue_validate() argument
H A Dgxvcommn.c1338 GXV_LookupValueCPtr value_p, in gxv_XClassTable_lookupval_validate()
1343 if ( value_p->u >= gxvalid->xstatetable.nClasses ) in gxv_XClassTable_lookupval_validate()
1345 if ( value_p->u > gxvalid->xstatetable.maxClassID ) in gxv_XClassTable_lookupval_validate()
1346 gxvalid->xstatetable.maxClassID = value_p->u; in gxv_XClassTable_lookupval_validate()
1337 gxv_XClassTable_lookupval_validate( FT_UShort glyph, GXV_LookupValueCPtr value_p, GXV_Validator gxvalid ) gxv_XClassTable_lookupval_validate() argument
H A Dgxvcommn.h110 GXV_LookupValueCPtr value_p,
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A 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/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc697 string text, IntType* value_p) { in safe_parse_positive_int()
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()
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 in safe_parse_negative_int()
696 safe_parse_positive_int( string text, IntType* value_p) safe_parse_positive_int() argument
730 safe_parse_negative_int( const string& text, IntType* value_p) safe_parse_negative_int() argument
[all...]
/third_party/python/Python/
H A Dpythonrun.c951 PyObject **value_p) in print_exception_file_and_line()
956 int res = _PyObject_LookupAttr(*value_p, &_Py_ID(print_file_and_line), &tmp); in print_exception_file_and_line()
967 if (!parse_syntax_error(*value_p, &message, &filename, in print_exception_file_and_line()
974 Py_SETREF(*value_p, message); in print_exception_file_and_line()
950 print_exception_file_and_line(struct exception_print_context *ctx, PyObject **value_p) print_exception_file_and_line() argument
/third_party/jerryscript/jerry-core/api/
H A Djerry.c2519 ecma_property_value_t *value_p = ecma_create_named_data_property (obj_p, in jerry_set_internal_property() local
2534 value_p->value = ecma_make_object_value (internal_object_p); in jerry_set_internal_property()
2547 ecma_property_value_t *value_p = ecma_create_named_data_property (internal_object_p, in jerry_set_internal_property() local
2552 value_p->value = ecma_copy_value_if_not_object (value_to_set); in jerry_set_internal_property()

Completed in 39 milliseconds