Home
last modified time | relevance | path

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

12345678910>>...44

/dports/lang/gnu-apl/apl-1.8/src/
H A DValue_P.icc25 if (value_p)
35 if (value_p)
39 value_p ? value_p->owner_count : -99, loc);
48 if (value_p)
52 value_p ? value_p->owner_count : -99, loc);
65 value_p = 0;
78 if (value_p)
89 value_p = 0;
195 value_p = other.value_p;
205 value_p = other.value_p;
[all …]
H A DValue_P.hh57 { return value_p == other.value_p; } in operator ==()
61 { return value_p != other.value_p; } in operator !=()
65 { return value_p; } in operator ->()
69 { return value_p; } in operator ->()
73 { return *value_p; } in operator *()
77 { return value_p; } in get()
81 { return value_p; } in get()
85 { return *value_p; } in getref()
89 { return *value_p; } in getref()
104 Value * value_p; member in Value_P_Base
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/sys/dev/pci/n8/common/api/
H A Dn8_system.c119 CHECK_OBJECT(value_p, ret); in N8_GetSystemParameter()
166 ret = setFD(value_p); in N8_GetSystemParameter()
227 CHECK_OBJECT(value_p, ret); in setCount()
304 CHECK_OBJECT(value_p, ret); in setType()
377 CHECK_OBJECT(value_p, ret); in setHWversion()
450 CHECK_OBJECT(value_p, ret); in setHWrevision()
507 CHECK_OBJECT(value_p, ret); in setSWversion()
554 CHECK_OBJECT(value_p, ret); in setContextSize()
611 CHECK_OBJECT(value_p, ret); in setSKSsize()
730 CHECK_OBJECT(value_p, ret); in setFD()
[all …]
H A Dn8_pk_ops.c100 out_p->value_p = in_p->value_p; in stripLeadingZeros()
111 out_p->value_p = in_p->value_p; in stripLeadingZeros()
116 out_p->value_p = &(in_p->value_p[i]); in stripLeadingZeros()
152 if (op_p == NULL || op_p->value_p == NULL) in verifyParameter()
211 if (x_p == NULL || x_p->value_p == NULL) in verify_x_lt_y()
216 if (y_p == NULL || y_p->value_p == NULL) in verify_x_lt_y()
244 int cmp = memcmp(stripped_x.value_p, stripped_y.value_p, in verify_x_lt_y()
383 req_p->copyBackTo_p = result_p->value_p; in n8_pk_gen_command()
862 req_p->copyBackTo_p = result_p->value_p; in N8_ModExponentiate()
872 memcpy(p, a_p->value_p, a_p->lengthBytes); in N8_ModExponentiate()
[all …]
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/utils/
H A DValue.cpp41 value_p = 0; in copyValue()
42 if(v.value_p != 0) in copyValue()
49 …case _real: value_p = reinterpret_cast<void*>(new real_t(*reinterpret_cast<real_t*>(v.value_p))… in copyValue()
50 …case _complex: value_p = reinterpret_cast<void*>(new complex_t(*reinterpret_cast<complex_t*>(v.val… in copyValue()
57 …case _real: value_p = reinterpret_cast<void*>(new Vector<real_t>(*reinterpret_cast<Vector<real_… in copyValue()
58 …case _complex: value_p = reinterpret_cast<void*>(new Vector<complex_t>(*reinterpret_cast<Vector<co… in copyValue()
64 …case _real: value_p = reinterpret_cast<void*>(new Matrix<real_t>(*reinterpret_cast<Matrix<real_… in copyValue()
111 value_p = reinterpret_cast<void*>(new real_t(v)); in Value()
147 value_p = reinterpret_cast<void*>(new complex_t(v)); in Value()
187 if(value_p != 0) in clearValue()
[all …]
H A DValue.hpp234 T* vp = reinterpret_cast<T*>(value_p); in valueSafe()
261 T* vp = reinterpret_cast<T*>(value_p); in value()
267 if (value_p==0) in asReal()
278 return *reinterpret_cast<real_t*>(value_p); in asReal()
283 if (value_p==0) in asComplex()
295 return *reinterpret_cast<complex_t*>(value_p); in asComplex()
300 if (value_p==0) in asRealVector()
311 return *reinterpret_cast<Vector<real_t>*>(value_p); in asRealVector()
316 if (value_p==0) in asComplexVector()
333 if (value_p==0) in asRealMatrix()
[all …]
/dports/cad/freehdl/freehdl-0.0.7/v2cc/
H A Dv2cc.h324 value_p = NULL; in StaticDataType()
326 value_p = v.value_p->clone (); in StaticDataType()
331 if (value_p != NULL)
332 delete value_p; member
340 if (value_p != NULL)
341 delete value_p; member
351 delete value_p; in ~StaticDataType() local
352 value_p = NULL; in ~StaticDataType()
357 if (value_p == NULL) value_p = new StaticLint; in long_value()
362 if (value_p == NULL) value_p = new StaticDouble; in double_value()
[all …]
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/misc/avl/
H A Davl.doc47 avl_first(tree, key_p, value_p)
50 char **value_p;
55 avl_last(tree, key_p, value_p)
58 char **value_p;
63 avl_lookup(tree, key, value_p)
66 char **value_p;
80 avl_delete(tree, key_p, value_p)
83 char **value_p;
140 avl_gen(gen, key_p, value_p)
143 char **value_p;
[all …]
H A Davl.c61 avl_lookup (tree, key, value_p) in avl_lookup() argument
64 char **value_p;
85 avl_first (tree, key_p, value_p) in avl_first() argument
88 char **value_p;
111 avl_last (tree, key_p, value_p) in avl_last() argument
114 char **value_p;
210 char **value_p;
234 if (value_p != 0)
235 *value_p = node->value;
314 avl_gen (gen, key_p, value_p) in avl_gen() argument
[all …]
/dports/lang/gjs/gjs-1.70.0/gi/
H A Dvalue.cpp811 value_p.setNull(); in gjs_value_from_g_value_internal()
819 value_p.setInt32(v); in gjs_value_from_g_value_internal()
823 value_p.setInt32(v); in gjs_value_from_g_value_internal()
831 value_p.setNumber(v); in gjs_value_from_g_value_internal()
835 value_p.setNumber(d); in gjs_value_from_g_value_internal()
839 value_p.setNumber(d); in gjs_value_from_g_value_internal()
847 value_p); in gjs_value_from_g_value_internal()
911 value_p.setNull(); in gjs_value_from_g_value_internal()
1015 value_p.setNull(); in gjs_value_from_g_value_internal()
1031 value_p.setNull(); in gjs_value_from_g_value_internal()
[all …]
/dports/games/cdogs-sdl/cdogs-sdl-1.0.1/src/cdogs/
H A Dfind_steam_game.h162 const char *value_p = value_start; in fsg_get_steam_game_path() local
164 while (value_p < value_end) in fsg_get_steam_game_path()
167 *out_p++ = *value_p++; in fsg_get_steam_game_path()
168 if (*value_p == '\\' && value_p > value_start && in fsg_get_steam_game_path()
169 *(value_p - 1) == '\\') in fsg_get_steam_game_path()
224 const char *value_p = value_start; in fsg_get_steam_game_path() local
226 while (value_p < value_end) in fsg_get_steam_game_path()
229 *out_p++ = *value_p++; in fsg_get_steam_game_path()
/dports/lang/cjs/cjs-4.8.2/gi/
H A Dvalue.cpp803 value_p.setNull(); in gjs_value_from_g_value_internal()
811 value_p.setInt32(v); in gjs_value_from_g_value_internal()
815 value_p.setInt32(v); in gjs_value_from_g_value_internal()
823 value_p.setNumber(v); in gjs_value_from_g_value_internal()
827 value_p.setNumber(d); in gjs_value_from_g_value_internal()
831 value_p.setNumber(d); in gjs_value_from_g_value_internal()
835 value_p.setBoolean(!!v); in gjs_value_from_g_value_internal()
847 value_p.setNull(); in gjs_value_from_g_value_internal()
876 value_p.setNull(); in gjs_value_from_g_value_internal()
973 value_p.setNull(); in gjs_value_from_g_value_internal()
[all …]
/dports/devel/p5-Glib-Object-Introspection/Glib-Object-Introspection-0.049/
H A Dgperl-i11n-marshal-hash.c14 gpointer key_p, value_p; in ghash_to_sv() local
44 while (g_hash_table_iter_next (&iter, &key_p, &value_p)) { in ghash_to_sv()
58 dwarn (" value pointer %p\n", value_p); in ghash_to_sv()
59 arg.v_pointer = value_p; in ghash_to_sv()
151 gpointer key_p, value_p; in sv_to_ghash() local
153 key_p = value_p = NULL; in sv_to_ghash()
169 value_p = arg.v_pointer; in sv_to_ghash()
172 if (key_p != NULL && value_p != NULL) in sv_to_ghash()
173 g_hash_table_insert (hash, key_p, value_p); in sv_to_ghash()
/dports/devel/gvfs/gvfs-1.46.2/common/
H A Dgvfsdaemonprotocol.c150 gpointer value_p) in _g_dbus_append_file_attribute() argument
158 dbus_type = get_object_signature ((GObject *)value_p); in _g_dbus_append_file_attribute()
161 v = append_object ((GObject *)value_p); in _g_dbus_append_file_attribute()
167 v = g_variant_new (s, value_p); in _g_dbus_append_file_attribute()
171 v = g_variant_new (dbus_type, *(guint32 *)value_p); in _g_dbus_append_file_attribute()
173 v = g_variant_new (dbus_type, *(gint32 *)value_p); in _g_dbus_append_file_attribute()
175 v = g_variant_new (dbus_type, *(guint64 *)value_p); in _g_dbus_append_file_attribute()
177 v = g_variant_new (dbus_type, *(gint64 *)value_p); in _g_dbus_append_file_attribute()
179 v = g_variant_new (dbus_type, *(gboolean *)value_p); in _g_dbus_append_file_attribute()
181 v = g_variant_new (dbus_type, value_p); in _g_dbus_append_file_attribute()
[all …]
/dports/devel/aegis/aegis-4.25.D510/libaegis/introspector/
H A Denumeration.cc64 int *value_p = members.query(member); in enumeration() local
65 if (value_p) in enumeration()
67 int value = *value_p; in enumeration()
86 value_p = members.query(guess); in enumeration()
87 assert(value_p); in enumeration()
88 int value = *value_p; in enumeration()
/dports/cad/gplcver/gplcver-2.12a.src/src/
H A Dv_vpi3.c1390 get_var_bit(hp, value_p); in vpi_get_value()
1397 get_expr_val(hp, value_p); in vpi_get_value()
1724 if (value_p->format == vpiObjTypeVal) expr_correct_objtypval(xp, value_p); in get_expr_val()
1783 if (value_p->format == vpiObjTypeVal) expr_correct_objtypval(xp, value_p); in get_primterm_val()
1817 if (value_p->format == vpiObjTypeVal) expr_correct_objtypval(xp, value_p); in get_primterm_val()
2474 if (value_p->format == vpiObjTypeVal) expr_correct_objtypval(xp, value_p); in get_vpi_attrval()
2602 value_p->value.real = d1; in fill_valuep()
2642 value_p->format); in fill_valuep()
3168 if (value_p->format == vpiSuppressVal || value_p->format == vpiObjTypeVal) in good_value_p()
4118 d1 = value_p->value.real; in push_vpi_valuep()
[all …]
/dports/x11-toolkits/gtk40/gtk-4.4.1/gsk/
H A Dgskprofiler.c385 gpointer value_p = NULL; in gsk_profiler_reset() local
390 while (g_hash_table_iter_next (&iter, NULL, &value_p)) in gsk_profiler_reset()
392 NamedCounter *counter = value_p; in gsk_profiler_reset()
401 NamedTimer *timer = value_p; in gsk_profiler_reset()
420 gpointer value_p = NULL; in gsk_profiler_push_samples() local
428 NamedTimer *timer = value_p; in gsk_profiler_push_samples()
451 gpointer value_p = NULL; in gsk_profiler_append_counters() local
459 NamedCounter *counter = value_p; in gsk_profiler_append_counters()
472 gpointer value_p = NULL; in gsk_profiler_append_timers() local
481 NamedTimer *timer = value_p; in gsk_profiler_append_timers()
[all …]
/dports/devel/color/color-a04952cf27cc315e31811f2e940221bf8cf9f8ca/src/color/hsv/check/
H A Dunique.hpp32 ,value_p = ::color::place::_internal::value<category_type>::position_enum enumerator
39 … if( m.template get<value_p>() == bound_type::template minimum<value_p>() ) { return false; } in process()
41 if( m.template get<value_p>() == bound_type::template maximum<value_p>() ) in process()
/dports/graphics/clutter/clutter-1.26.4/tests/conform/
H A Dinterval.c43 const GValue *value_p = NULL; in interval_transform() local
57 value_p = clutter_interval_peek_initial_value (interval); in interval_transform()
58 g_assert (G_VALUE_HOLDS_FLOAT (value_p)); in interval_transform()
59 g_assert_cmpfloat (g_value_get_float (value_p), ==, 0.f); in interval_transform()
61 value_p = clutter_interval_peek_final_value (interval); in interval_transform()
62 g_assert (G_VALUE_HOLDS_FLOAT (value_p)); in interval_transform()
63 g_assert_cmpfloat (g_value_get_float (value_p), ==, 100.f); in interval_transform()
/dports/x11-wm/mutter/mutter-41.1/src/tests/clutter/conform/
H A Dinterval.c45 const GValue *value_p = NULL; in interval_transform() local
59 value_p = clutter_interval_peek_initial_value (interval); in interval_transform()
60 g_assert (G_VALUE_HOLDS_FLOAT (value_p)); in interval_transform()
61 g_assert_cmpfloat (g_value_get_float (value_p), ==, 0.f); in interval_transform()
63 value_p = clutter_interval_peek_final_value (interval); in interval_transform()
64 g_assert (G_VALUE_HOLDS_FLOAT (value_p)); in interval_transform()
65 g_assert_cmpfloat (g_value_get_float (value_p), ==, 100.f); in interval_transform()
/dports/x11-wm/muffin/muffin-4.8.0/clutter/tests/conform/
H A Dinterval.c43 const GValue *value_p = NULL; in interval_transform() local
57 value_p = clutter_interval_peek_initial_value (interval); in interval_transform()
58 g_assert (G_VALUE_HOLDS_FLOAT (value_p)); in interval_transform()
59 g_assert_cmpfloat (g_value_get_float (value_p), ==, 0.f); in interval_transform()
61 value_p = clutter_interval_peek_final_value (interval); in interval_transform()
62 g_assert (G_VALUE_HOLDS_FLOAT (value_p)); in interval_transform()
63 g_assert_cmpfloat (g_value_get_float (value_p), ==, 100.f); in interval_transform()
/dports/graphics/clutter/clutter-1.26.4/clutter/
H A Dclutter-property-transition.c71 GValue *value_p; in G_DEFINE_TYPE_WITH_PRIVATE() local
77 value_p = clutter_interval_peek_initial_value (interval); in G_DEFINE_TYPE_WITH_PRIVATE()
78 if (!G_IS_VALUE (value_p)) in G_DEFINE_TYPE_WITH_PRIVATE()
80 g_value_init (value_p, clutter_interval_get_value_type (interval)); in G_DEFINE_TYPE_WITH_PRIVATE()
83 value_p); in G_DEFINE_TYPE_WITH_PRIVATE()
87 value_p = clutter_interval_peek_final_value (interval); in G_DEFINE_TYPE_WITH_PRIVATE()
88 if (!G_IS_VALUE (value_p)) in G_DEFINE_TYPE_WITH_PRIVATE()
90 g_value_init (value_p, clutter_interval_get_value_type (interval)); in G_DEFINE_TYPE_WITH_PRIVATE()
93 value_p); in G_DEFINE_TYPE_WITH_PRIVATE()
/dports/x11-wm/muffin/muffin-4.8.0/clutter/clutter/
H A Dclutter-property-transition.c71 GValue *value_p; in G_DEFINE_TYPE_WITH_PRIVATE() local
77 value_p = clutter_interval_peek_initial_value (interval); in G_DEFINE_TYPE_WITH_PRIVATE()
78 if (!G_IS_VALUE (value_p)) in G_DEFINE_TYPE_WITH_PRIVATE()
80 g_value_init (value_p, clutter_interval_get_value_type (interval)); in G_DEFINE_TYPE_WITH_PRIVATE()
83 value_p); in G_DEFINE_TYPE_WITH_PRIVATE()
87 value_p = clutter_interval_peek_final_value (interval); in G_DEFINE_TYPE_WITH_PRIVATE()
88 if (!G_IS_VALUE (value_p)) in G_DEFINE_TYPE_WITH_PRIVATE()
90 g_value_init (value_p, clutter_interval_get_value_type (interval)); in G_DEFINE_TYPE_WITH_PRIVATE()
93 value_p); in G_DEFINE_TYPE_WITH_PRIVATE()
/dports/x11-toolkits/tepl6/tepl-6.00.0/tepl/
H A Dtepl-metadata-attic.c124 gpointer value_p; in append_entries_to_string() local
127 while (g_hash_table_iter_next (&iter, &key_p, &value_p)) in append_entries_to_string()
130 const gchar *value = value_p; in append_entries_to_string()
185 gpointer value_p; in _tepl_metadata_attic_copy_from() local
191 while (g_hash_table_iter_next (&iter, &key_p, &value_p)) in _tepl_metadata_attic_copy_from()
194 const gchar *value = value_p; in _tepl_metadata_attic_copy_from()
204 gpointer value_p, in merge_into__from_metadata_foreach_cb() argument
208 const gchar *value = value_p; /* Can be NULL. */ in merge_into__from_metadata_foreach_cb()
/dports/x11-toolkits/tepl/tepl-5.1.1/tepl/
H A Dtepl-metadata-attic.c124 gpointer value_p; in append_entries_to_string() local
127 while (g_hash_table_iter_next (&iter, &key_p, &value_p)) in append_entries_to_string()
130 const gchar *value = value_p; in append_entries_to_string()
185 gpointer value_p; in _tepl_metadata_attic_copy_from() local
191 while (g_hash_table_iter_next (&iter, &key_p, &value_p)) in _tepl_metadata_attic_copy_from()
194 const gchar *value = value_p; in _tepl_metadata_attic_copy_from()
204 gpointer value_p, in merge_into__from_metadata_foreach_cb() argument
208 const gchar *value = value_p; /* Can be NULL. */ in merge_into__from_metadata_foreach_cb()

12345678910>>...44