Home
last modified time | relevance | path

Searched refs:int_val (Results 1 – 13 of 13) sorted by relevance

/external/clang/test/PCH/
Dnamespaces.cpp8 int int_val; variable
9 N1::t1 *ip1 = &int_val;
10 N1::t2 *ip2 = &int_val;
11 N2::Inner::t3 *ip3 = &int_val;
17 Alias1::t3 *ip4 = &int_val;
18 t3 *ip5 = &int_val;
/external/stlport/test/unit/
Dconfig_test.cpp40 int int_val = 1; in placement_new_bug() local
42 pint = new(&int_val) int(); in placement_new_bug()
43 CPPUNIT_ASSERT( pint == &int_val ); in placement_new_bug()
45 CPPUNIT_ASSERT( int_val != 0 ); in placement_new_bug()
47 CPPUNIT_ASSERT( int_val == 0 ); in placement_new_bug()
Dcmath_test.cpp40 int int_val = -1; in import_checks() local
48 CPPUNIT_CHECK( are_equals(std::abs(int_val), -int_val) ); in import_checks()
98 double_val = std::frexp(8.0, &int_val); in import_checks()
99 CPPUNIT_CHECK( are_equals(double_val * std::pow(2.0, int_val), 8.0) ); in import_checks()
123 float_val = std::frexp(8.0f, &int_val); in import_checks()
124 CPPUNIT_CHECK( are_equals(float_val * std::pow(2.0f, int_val), 8.0f) ); in import_checks()
149 long_double_val = std::frexp(8.0l, &int_val); in import_checks()
150 CPPUNIT_CHECK( are_equals(long_double_val * std::pow(2.0l, int_val), 8.0l) ); in import_checks()
Dtype_traits_test.cpp73 int int_val = 0; variable
76 int & int_ref = int_val;
77 int const& int_const_ref = int_val;
78 int const volatile& int_const_volatile_ref = int_val;
385 CPPUNIT_ASSERT( is_pointer_type(int_val) == 0 ); in pointer_type()
421 CPPUNIT_CHECK( are_both_pointer_type(int_val, int_val) == 0 ); in both_pointer_type()
/external/webkit/Tools/android/flex-2.5.4a/
Dsym.c91 new_entry->int_val = int_def;
124 return findsym( (char *) ccltxt, ccltab, CCL_HASH_SIZE )->int_val;
261 return findsym( str, sctbl, START_COND_HASH_SIZE )->int_val;
Dflexdef.h328 int int_val; member
/external/chromium/base/json/
Djson_reader_unittest.cc53 int int_val = 0; in TEST() local
54 ASSERT_TRUE(root->GetAsInteger(&int_val)); in TEST()
55 ASSERT_EQ(43, int_val); in TEST()
70 int_val = 1; in TEST()
71 ASSERT_TRUE(root->GetAsInteger(&int_val)); in TEST()
72 ASSERT_EQ(0, int_val); in TEST()
/external/clang/test/Sema/
Danonymous-struct-union.c54 int int_val; member
/external/clang/test/SemaCXX/
Danonymous-union.cpp78 int int_val; member
/external/dropbear/libtomcrypt/testprof/
Dder_tests.c21 static const unsigned long int_val = 12345678UL; in der_set_test() local
30 LTC_SET_ASN1(list, 2, LTC_ASN1_SHORT_INTEGER, &int_val, 1); in der_set_test()
61 if (val != int_val) { in der_set_test()
138 static const unsigned long int_val = 12345678UL; in der_flexi_test() local
155 LTC_SET_ASN1(static_list[1], 0, LTC_ASN1_SHORT_INTEGER, (void *)&int_val, 1); in der_flexi_test()
/external/webkit/Tools/android/flex-2.5.4a/MISC/Atari/
DAtari.patches305 X int int_val;
313 X int int_val;
/external/v8/src/x64/
Dlithium-codegen-x64.cc1157 uint64_t int_val = BitCast<uint64_t, double>(v); in DoConstantD() local
1160 if (int_val == 0) { in DoConstantD()
1164 __ Set(tmp, int_val); in DoConstantD()
/external/v8/src/ia32/
Dlithium-codegen-ia32.cc1174 uint64_t int_val = BitCast<uint64_t, double>(v); in DoConstantD() local
1175 int32_t lower = static_cast<int32_t>(int_val); in DoConstantD()
1176 int32_t upper = static_cast<int32_t>(int_val >> (kBitsPerInt)); in DoConstantD()