Searched refs:decoded_val (Results 1 – 4 of 4) sorted by relevance
203 uint32_t decoded_val; in TEST() local205 EXPECT_TRUE(buffer.ReadExponentialGolomb(&decoded_val)); in TEST()206 EXPECT_EQ(i, decoded_val); in TEST()221 int32_t decoded_val; in TEST() local222 ASSERT_TRUE(buffer.ReadSignedExponentialGolomb(&decoded_val)); in TEST()223 EXPECT_EQ(expected[i], decoded_val) in TEST()234 uint32_t decoded_val; in TEST() local235 EXPECT_FALSE(buffer.ReadExponentialGolomb(&decoded_val)); in TEST()238 EXPECT_FALSE(longer_buffer.ReadExponentialGolomb(&decoded_val)); in TEST()241 EXPECT_TRUE(longest_buffer.ReadExponentialGolomb(&decoded_val)); in TEST()[all …]
177 uint64_t decoded_val = BitwiseCast<uint64_t>(dVal); in ParseAndEncodeFloatingPointNumber() local178 uint32_t low = uint32_t(0x00000000ffffffff & decoded_val); in ParseAndEncodeFloatingPointNumber()179 uint32_t high = uint32_t((0xffffffff00000000 & decoded_val) >> 32); in ParseAndEncodeFloatingPointNumber()
251 (decoded_ix, decoded_val, decoded_shape, log_probabilities) = outputs252 return ([sparse_tensor.SparseTensor(decoded_ix, decoded_val, decoded_shape)],