Searched refs:value (Results 176 - 200 of 4996) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp9732a.C11 struct value { struct
15 int crash(const value* capt, value* jet) {
21 value number() const { return _value; }
25 value _value;
29 const value& capt = number();
30 value jet;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Dgcore.c54 int factorial_func (int value) argument
56 int factorial_func (value)
57 int value;
60 if (value > 1) {
61 value *= factorial_func (value - 1);
64 return (value);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dgcore.c54 int factorial_func (int value) argument
56 int factorial_func (value)
57 int value;
60 if (value > 1) {
61 value *= factorial_func (value - 1);
64 return (value);
/netbsd-6-1-5-RELEASE/tests/lib/libbluetooth/
H A Dt_sdp_data.c51 sdp_data_t value; local
53 ATF_REQUIRE(sdp_get_data(&test, &value));
54 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_NIL);
56 ATF_REQUIRE(sdp_get_data(&test, &value));
57 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_UINT8);
91 sdp_data_t value; local
93 ATF_REQUIRE(sdp_get_data(&test, &value));
94 ATF_CHECK_EQ(sdp_data_size(&value), 1);
96 ATF_REQUIRE(sdp_get_data(&test, &value));
97 ATF_CHECK_EQ(sdp_data_size(&value),
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/
H A Dinquire_sec_context_by_oid.c55 gss_buffer_desc value; local
57 value.length = ctx->sessionkey.length;
58 value.value = ctx->sessionkey.data;
61 &value,
74 gss_buffer_desc value; local
82 value.length = sizeof(num);
83 value.value = #
86 &value,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/4_metaprogramming/extent/
H A Dvalue.cc36 VERIFY( (extent<int, 1>::value == 0) );
37 VERIFY( (extent<int[2], 1>::value == 0) );
38 VERIFY( (extent<int[2][4], 1>::value == 4) );
39 VERIFY( (extent<int[][4], 1>::value == 4) );
40 VERIFY( (extent<int[10][4][6][8][12][2], 4>::value == 12) );
45 VERIFY( (extent<ClassType, 1>::value == 0) );
46 VERIFY( (extent<ClassType[2], 1>::value == 0) );
47 VERIFY( (extent<ClassType[2][4], 1>::value == 4) );
48 VERIFY( (extent<ClassType[][4], 1>::value == 4) );
49 VERIFY( (extent<ClassType[10][4][6][8][12][2], 4>::value
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/4_metaprogramming/remove_all_extents/
H A Dvalue.cc33 VERIFY( (is_same<remove_all_extents<int>::type, int>::value) );
34 VERIFY( (is_same<remove_all_extents<int[2]>::type, int>::value) );
35 VERIFY( (is_same<remove_all_extents<int[2][3]>::type, int>::value) );
36 VERIFY( (is_same<remove_all_extents<int[][3]>::type, int>::value) );
38 const int>::value) );
39 VERIFY( (is_same<remove_all_extents<ClassType>::type, ClassType>::value) );
40 VERIFY( (is_same<remove_all_extents<ClassType[2]>::type, ClassType>::value) );
42 ClassType>::value) );
44 ClassType>::value) );
46 const ClassType>::value) );
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/4_metaprogramming/remove_extent/
H A Dvalue.cc33 VERIFY( (is_same<remove_extent<int>::type, int>::value) );
34 VERIFY( (is_same<remove_extent<int[2]>::type, int>::value) );
35 VERIFY( (is_same<remove_extent<int[2][3]>::type, int[3]>::value) );
36 VERIFY( (is_same<remove_extent<int[][3]>::type, int[3]>::value) );
37 VERIFY( (is_same<remove_extent<const int[2]>::type, const int>::value) );
38 VERIFY( (is_same<remove_extent<ClassType>::type, ClassType>::value) );
39 VERIFY( (is_same<remove_extent<ClassType[2]>::type, ClassType>::value) );
41 ClassType[3]>::value) );
43 ClassType[3]>::value) );
45 const ClassType>::value) );
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/tr1/4_metaprogramming/array_modifications/
H A Dremove_all_extents.cc34 VERIFY( (is_same<remove_all_extents<int>::type, int>::value) );
35 VERIFY( (is_same<remove_all_extents<int[2]>::type, int>::value) );
36 VERIFY( (is_same<remove_all_extents<int[2][3]>::type, int>::value) );
37 VERIFY( (is_same<remove_all_extents<int[][3]>::type, int>::value) );
39 const int>::value) );
40 VERIFY( (is_same<remove_all_extents<ClassType>::type, ClassType>::value) );
41 VERIFY( (is_same<remove_all_extents<ClassType[2]>::type, ClassType>::value) );
43 ClassType>::value) );
45 ClassType>::value) );
47 const ClassType>::value) );
[all...]
H A Dremove_extent.cc34 VERIFY( (is_same<remove_extent<int>::type, int>::value) );
35 VERIFY( (is_same<remove_extent<int[2]>::type, int>::value) );
36 VERIFY( (is_same<remove_extent<int[2][3]>::type, int[3]>::value) );
37 VERIFY( (is_same<remove_extent<int[][3]>::type, int[3]>::value) );
38 VERIFY( (is_same<remove_extent<const int[2]>::type, const int>::value) );
39 VERIFY( (is_same<remove_extent<ClassType>::type, ClassType>::value) );
40 VERIFY( (is_same<remove_extent<ClassType[2]>::type, ClassType>::value) );
42 ClassType[3]>::value) );
44 ClassType[3]>::value) );
46 const ClassType>::value) );
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/tr1/4_metaprogramming/type_properties/extent/
H A Dextent.cc37 VERIFY( (extent<int, 1>::value == 0) );
38 VERIFY( (extent<int[2], 1>::value == 0) );
39 VERIFY( (extent<int[2][4], 1>::value == 4) );
40 VERIFY( (extent<int[][4], 1>::value == 4) );
41 VERIFY( (extent<int[10][4][6][8][12][2], 4>::value == 12) );
46 VERIFY( (extent<ClassType, 1>::value == 0) );
47 VERIFY( (extent<ClassType[2], 1>::value == 0) );
48 VERIFY( (extent<ClassType[2][4], 1>::value == 4) );
49 VERIFY( (extent<ClassType[][4], 1>::value == 4) );
50 VERIFY( (extent<ClassType[10][4][6][8][12][2], 4>::value
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D950729-1.c5 f (char *buffer, long long value, char type) argument
28 buffer[i--] = ucset[((unsigned long long) value) % base];
30 buffer[i--] = lcset[((unsigned long long) value) % base];
32 if ((value = ((unsigned long long) value) / base) == 0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/6_containers/tuple/
H A Dtuple_size.cc32 VERIFY(tuple_size<tuple<> >::value == 0);
33 VERIFY(tuple_size<tuple<int> >::value == 1);
34 VERIFY(tuple_size<tuple<void> >::value == 1);
36 VERIFY(tuple_size<test_tuple1>::value == 3);
37 VERIFY(tuple_size<tuple<tuple<void> > >::value == 1);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D950729-1.c5 f (char *buffer, long long value, char type) argument
28 buffer[i--] = ucset[((unsigned long long) value) % base];
30 buffer[i--] = lcset[((unsigned long long) value) % base];
32 if ((value = ((unsigned long long) value) / base) == 0)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/
H A Dtestsuite_tr1.h40 test_category(bool value) argument
43 ret &= Category<Type>::value == value;
44 ret &= Category<const Type>::value == value;
45 ret &= Category<volatile Type>::value == value;
46 ret &= Category<const volatile Type>::value == value;
47 ret &= Category<Type>::type::value
57 test_property(typename Property<Type>::value_type value) argument
68 test_relationship(bool value) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/template/
H A Dsfinae10.C31 static const bool value = \
47 static const bool value = \
97 STATIC_ASSERT((has_unary_plus<int>::value));
98 STATIC_ASSERT((!has_unary_plus<int X::*>::value));
99 STATIC_ASSERT((has_unary_plus<W>::value));
100 STATIC_ASSERT((has_unary_plus<X>::value));
101 STATIC_ASSERT((!has_unary_plus<Y>::value));
105 STATIC_ASSERT((is_negatable<int>::value));
106 STATIC_ASSERT((!is_negatable<int X::*>::value));
107 STATIC_ASSERT((is_negatable<W>::value));
[all...]
H A Dsfinae8.C32 static const bool value = \
57 STATIC_ASSERT((is_less_than_comparable<int>::value));
58 STATIC_ASSERT((is_less_than_comparable<int, long>::value));
59 STATIC_ASSERT((is_less_than_comparable<int*>::value));
60 STATIC_ASSERT((is_less_than_comparable<X>::value));
61 STATIC_ASSERT((is_less_than_comparable<X, Y>::value));
62 STATIC_ASSERT((!is_less_than_comparable<Y, X>::value));
63 STATIC_ASSERT((!is_less_than_comparable<Y>::value));
71 STATIC_ASSERT((is_less_equal_comparable<int>::value));
72 STATIC_ASSERT((is_less_equal_comparable<int, long>::value));
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/util/
H A Dtestsuite_tr1.h32 test_category(bool value) argument
35 ret &= Category<Type>::value == value;
36 ret &= Category<const Type>::value == value;
37 ret &= Category<volatile Type>::value == value;
38 ret &= Category<const volatile Type>::value == value;
39 ret &= Category<Type>::type::value
48 test_property(typename Property<Type>::value_type value) argument
61 test_property(typename Property<Type, Uint>::value_type value) argument
72 test_property(typename Property<Types...>::value_type value) argument
84 test_relationship(bool value) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/bfd/
H A Delf32-cr16c.c203 long value; local
233 value = bfd_get_8 (abfd, (char *) data + octets);
237 value = sword;
240 value = bfd_get_32 (abfd, (bfd_byte *) data + octets);
251 value = bfd_get_8 (abfd, (char *) data + octets);
252 left_val = value & 0xF;
253 value = (value & 0xF0) >> 4;
254 value++;
255 value <<
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/bfd/
H A Delf32-cr16c.c203 long value; local
233 value = bfd_get_8 (abfd, (char *) data + octets);
237 value = sword;
240 value = bfd_get_32 (abfd, (bfd_byte *) data + octets);
251 value = bfd_get_8 (abfd, (char *) data + octets);
252 left_val = value & 0xF;
253 value = (value & 0xF0) >> 4;
254 value++;
255 value <<
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/cpp0x/
H A Ddecltype12.C6 static const bool value = false; member in struct:is_same
12 static const bool value = true; member in struct:is_same
26 static_assert(is_same<decltype(f(i)), int&&>::value, "direct call");
27 static_assert(is_same<decltype(fp(i)), int&&>::value, "pointer");
28 static_assert(is_same<decltype((*fp)(i)), int&&>::value,
30 static_assert(is_same<decltype(fr(i)), int&&>::value,
32 static_assert(is_same<decltype(xr.f(i)), int&&>::value,
34 static_assert(is_same<decltype((xr.*mfp)(i)), int&&>::value,
36 static_assert(is_same<decltype((xp->*mfp)(i)), int&&>::value, local
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/add_rvalue_reference/
H A Dvalue.cc32 VERIFY( (is_same<add_rvalue_reference<int>::type, int&&>::value) );
33 VERIFY( (is_same<add_rvalue_reference<int&&>::type, int&&>::value) );
34 VERIFY( (is_same<add_rvalue_reference<const int>::type, const int&&>::value) );
35 VERIFY( (is_same<add_rvalue_reference<int*>::type, int*&&>::value) );
36 VERIFY( (is_same<add_rvalue_reference<ClassType&&>::type, ClassType&&>::value) );
37 VERIFY( (is_same<add_rvalue_reference<ClassType>::type, ClassType&&>::value) );
38 VERIFY( (is_same<add_rvalue_reference<int(int)>::type, int(&&)(int)>::value) );
39 VERIFY( (is_same<add_rvalue_reference<void>::type, void>::value) );
40 VERIFY( (is_same<add_rvalue_reference<const void>::type, const void>::value) );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/identity/
H A Dvalue.cc32 VERIFY( (is_same<identity<int>::type, int>::value) );
33 VERIFY( (is_same<identity<int&>::type, int&>::value) );
34 VERIFY( (is_same<identity<int&&>::type, int&&>::value) );
35 VERIFY( (is_same<identity<int*>::type, int*>::value) );
36 VERIFY( (is_same<identity<ClassType&&>::type, ClassType&&>::value) );
37 VERIFY( (is_same<identity<ClassType>::type, ClassType>::value) );
38 VERIFY( (is_same<identity<int(int)>::type, int(int)>::value) );
39 VERIFY( (is_same<identity<void>::type, void>::value) );
40 VERIFY( (is_same<identity<const void>::type, const void>::value) );
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/xz/
H A Dutil.c48 str_to_uint64(const char *name, const char *value, uint64_t min, uint64_t max) argument
53 while (*value == ' ' || *value == '\t')
54 ++value;
56 // Accept special value "max". Supporting "min" doesn't seem useful.
57 if (strcmp(value, "max") == 0)
60 if (*value < '0' || *value > '9')
62 "decimal integer"), value);
72 const uint32_t add = *value
151 uint64_to_str(uint64_t value, uint32_t slot) argument
167 uint64_to_nicestr(uint64_t value, enum nicestr_unit unit_min, enum nicestr_unit unit_max, bool always_also_bytes, uint32_t slot) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/remove_reference/
H A Dvalue.cc32 VERIFY( (is_same<remove_reference<int&>::type, int>::value) );
33 VERIFY( (is_same<remove_reference<int>::type, int>::value) );
34 VERIFY( (is_same<remove_reference<const int&>::type, const int>::value) );
35 VERIFY( (is_same<remove_reference<int*&>::type, int*>::value) );
36 VERIFY( (is_same<remove_reference<ClassType&>::type, ClassType>::value) );
37 VERIFY( (is_same<remove_reference<ClassType>::type, ClassType>::value) );
38 VERIFY( (is_same<remove_reference<int(&)(int)>::type, int(int)>::value) );
39 VERIFY( (is_same<remove_reference<int&&>::type, int>::value) );
40 VERIFY( (is_same<remove_reference<int>::type, int>::value) );
41 VERIFY( (is_same<remove_reference<const int&&>::type, const int>::value) );
[all...]

Completed in 328 milliseconds

1234567891011>>