HomeSort by relevance Sort by last modified time
    Searched defs:int_val (Results 1 - 23 of 23) sorted by null

  /cts/tools/dasm/src/java_cup/runtime/
int_token.java 6 * field int_val.
21 int_val = iv;
31 public int int_val; field in class:int_token
  /external/stlport/test/unit/
cmath_test.cpp 40 int int_val = -1; local
48 CPPUNIT_CHECK( are_equals(std::abs(int_val), -int_val) );
98 double_val = std::frexp(8.0, &int_val);
99 CPPUNIT_CHECK( are_equals(double_val * std::pow(2.0, int_val), 8.0) );
123 float_val = std::frexp(8.0f, &int_val);
124 CPPUNIT_CHECK( are_equals(float_val * std::pow(2.0f, int_val), 8.0f) );
149 long_double_val = std::frexp(8.0l, &int_val);
150 CPPUNIT_CHECK( are_equals(long_double_val * std::pow(2.0l, int_val), 8.0l) );
config_test.cpp 40 int int_val = 1; local
42 pint = new(&int_val) int();
43 CPPUNIT_ASSERT( pint == &int_val );
45 CPPUNIT_ASSERT( int_val != 0 );
47 CPPUNIT_ASSERT( int_val == 0 );
type_traits_test.cpp 73 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 );
421 CPPUNIT_CHECK( are_both_pointer_type(int_val, int_val) == 0 );
  /ndk/tests/device/test-gnustl-full/unit/
cmath_test.cpp 40 int int_val = -1; local
48 CPPUNIT_CHECK( are_equals(std::abs(int_val), -int_val) );
98 double_val = std::frexp(8.0, &int_val);
99 CPPUNIT_CHECK( are_equals(double_val * std::pow(2.0, int_val), 8.0) );
123 float_val = std::frexp(8.0f, &int_val);
124 CPPUNIT_CHECK( are_equals(float_val * std::pow(2.0f, int_val), 8.0f) );
149 long_double_val = std::frexp(8.0l, &int_val);
150 CPPUNIT_CHECK( are_equals(long_double_val * std::pow(2.0l, int_val), 8.0l) );
config_test.cpp 40 int int_val = 1; local
42 pint = new(&int_val) int();
43 CPPUNIT_ASSERT( pint == &int_val );
45 CPPUNIT_ASSERT( int_val != 0 );
47 CPPUNIT_ASSERT( int_val == 0 );
type_traits_test.cpp 73 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 );
421 CPPUNIT_CHECK( are_both_pointer_type(int_val, int_val) == 0 );
  /ndk/tests/device/test-stlport/unit/
cmath_test.cpp 40 int int_val = -1; local
48 CPPUNIT_CHECK( are_equals(std::abs(int_val), -int_val) );
98 double_val = std::frexp(8.0, &int_val);
99 CPPUNIT_CHECK( are_equals(double_val * std::pow(2.0, int_val), 8.0) );
123 float_val = std::frexp(8.0f, &int_val);
124 CPPUNIT_CHECK( are_equals(float_val * std::pow(2.0f, int_val), 8.0f) );
149 long_double_val = std::frexp(8.0l, &int_val);
150 CPPUNIT_CHECK( are_equals(long_double_val * std::pow(2.0l, int_val), 8.0l) );
config_test.cpp 40 int int_val = 1; local
42 pint = new(&int_val) int();
43 CPPUNIT_ASSERT( pint == &int_val );
45 CPPUNIT_ASSERT( int_val != 0 );
47 CPPUNIT_ASSERT( int_val == 0 );
type_traits_test.cpp 73 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 );
421 CPPUNIT_CHECK( are_both_pointer_type(int_val, int_val) == 0 );
  /external/chromium/base/json/
json_reader_unittest.cc 51 int int_val = 0; local
52 ASSERT_TRUE(root->GetAsInteger(&int_val));
53 ASSERT_EQ(43, int_val);
68 int_val = 1;
69 ASSERT_TRUE(root->GetAsInteger(&int_val));
70 ASSERT_EQ(0, int_val);
  /external/dropbear/libtomcrypt/testprof/
der_tests.c 21 static const unsigned long int_val = 12345678UL; local
30 LTC_SET_ASN1(list, 2, LTC_ASN1_SHORT_INTEGER, &int_val, 1);
61 if (val != int_val) {
62 fprintf(stderr, "error decoding set using der_decode_set (int_val is wrong):\n");
138 static const unsigned long int_val = 12345678UL; local
155 LTC_SET_ASN1(static_list[1], 0, LTC_ASN1_SHORT_INTEGER, (void *)&int_val, 1);
    [all...]
  /external/webkit/WebKitTools/android/flex-2.5.4a/
flexdef.h 328 int int_val; member in struct:hash_entry
    [all...]
  /frameworks/base/core/jni/
android_bluetooth_common.cpp 74 int int_val; member in union:android::__anon8656
482 int i, j, type, int_val; local
516 dbus_message_iter_get_basic(&prop_val, &int_val);
517 value->int_val = int_val;
564 sprintf(buf, "%d", value->int_val);
568 sprintf(buf, "%s", value->int_val ? "true" : "false");
  /hardware/broadcom/wlan/bcm4329/src/bcmsdio/sys/
bcmsdh_sdmmc.c 407 int32 int_val = 0; local
441 if (plen >= (int)sizeof(int_val))
442 bcopy(params, &int_val, sizeof(int_val));
444 bool_val = (int_val != 0) ? TRUE : FALSE;
449 int_val = (int32)sd_msglevel;
450 bcopy(&int_val, arg, val_size);
454 sd_msglevel = int_val;
458 int_val = (int32)si->sd_blockmode;
459 bcopy(&int_val, arg, val_size)
    [all...]
bcmsdspi.c 267 int32 int_val = 0; local
301 if (plen >= (int)sizeof(int_val))
302 bcopy(params, &int_val, sizeof(int_val));
304 bool_val = (int_val != 0) ? TRUE : FALSE;
309 int_val = (int32)sd_msglevel;
310 bcopy(&int_val, arg, val_size);
314 sd_msglevel = int_val;
318 int_val = (int32)si->sd_blockmode;
319 bcopy(&int_val, arg, val_size)
    [all...]
bcmspibrcm.c 309 int32 int_val = 0; local
346 if (plen >= (int)sizeof(int_val))
347 bcopy(params, &int_val, sizeof(int_val));
349 bool_val = (int_val != 0) ? TRUE : FALSE;
354 int_val = (int32)sd_msglevel;
355 bcopy(&int_val, arg, val_size);
359 sd_msglevel = int_val;
363 if ((uint32)int_val > si->num_funcs) {
367 int_val = (int32)si->client_block_size[int_val]
    [all...]
bcmsdstd.c 387 int32 int_val = 0; local
421 if (plen >= (int)sizeof(int_val))
422 bcopy(params, &int_val, sizeof(int_val));
424 bool_val = (int_val != 0) ? TRUE : FALSE;
429 int_val = (int32)sd_msglevel;
430 bcopy(&int_val, arg, val_size);
434 sd_msglevel = int_val;
438 int_val = (int32)si->sd_blockmode;
439 bcopy(&int_val, arg, val_size)
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_common.c 212 int32 int_val = 0; local
219 if (plen >= (int)sizeof(int_val))
220 bcopy(params, &int_val, sizeof(int_val));
229 int_val = (int32)dhd_msg_level;
230 bcopy(&int_val, arg, val_size);
234 dhd_msg_level = int_val;
243 int_val = (int32)dhd_pub->bcmerror;
244 bcopy(&int_val, arg, val_size);
248 int_val = (int32)dhd_watchdog_ms
    [all...]
dhd_sdio.c 2024 int32 int_val = 0; local
    [all...]
  /cts/tools/dasm/etc/
java_cup-new.jar 
  /cts/tools/dx-tests/lib/
jasmin.jar 
  /dalvik/dx/etc/
jasmin.jar 

Completed in 1808 milliseconds