Searched refs:f_value (Results 1 – 4 of 4) sorted by relevance
1375 union { float f_value; uint32_t int_value; } u; in testFloatPrintingRandomSamples()1378 u.int_value = 0x00000000; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()1379 u.int_value = 0x80000000; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()1380 u.int_value = 0x7fffffff; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()1381 u.int_value = 0xffffffff; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()1390 u.int_value = a; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()1391 u.int_value = a | 0x80000000; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()
176 const Value* f_value = e_value->list_value()[0].scope_value()->GetValue("f"); in TEST_F() local177 ASSERT_TRUE(f_value); in TEST_F()178 EXPECT_EQ("bar", f_value->string_value()); in TEST_F()
191 Value f_value(nullptr, "baz"); in TEST_F() local192 e_value_scope->SetValue("f", f_value, nullptr); in TEST_F()
4562 union { float f_value; uint32_t int_value; } u; in testFloatPrintingRandomSamples()4565 u.int_value = 0x00000000; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()4566 u.int_value = 0x80000000; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()4567 u.int_value = 0x7fffffff; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()4568 u.int_value = 0xffffffff; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()4577 u.int_value = a; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()4578 u.int_value = a | 0x80000000; printFloatValue(u.f_value); in testFloatPrintingRandomSamples()