Searched refs:a_f (Results 1 – 4 of 4) sorted by relevance
/external/libhevc/encoder/ |
D | convert_float_to_fix.c | 51 void convert_float_to_fix(float a_f, number_t *a) in convert_float_to_fix() argument 54 if(a_f != 0) in convert_float_to_fix() 56 log_a_f = log(ABS(a_f)) / log(2); in convert_float_to_fix() 59 a->sm = (WORD32)(a_f * pow(2, a->e)); in convert_float_to_fix() 68 void convert_fix_to_float(number_t a, float *a_f) in convert_fix_to_float() argument 70 *a_f = (float)(a.sm / pow(2, a.e)); in convert_fix_to_float()
|
D | var_q_operator.h | 41 void convert_float_to_fix(float a_f, number_t *a); 43 void convert_fix_to_float(number_t a, float *a_f);
|
/external/libavc/encoder/ |
D | irc_common.h | 49 #define convert_float_to_fix(a_f, a) *a = (WORD32)a_f argument 51 #define convert_fix_to_float(a, a_f) *a_f = (float) a argument
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | bfloat16_propagation_test.cc | 438 HloInstruction* a_f = builder_f.AddInstruction( in TEST_F() local 441 HloInstruction::CreateBitcastConvert(f32_shape, a_f)); in TEST_F() 468 HloInstruction* a_f = in TEST_F() local 473 HloInstruction::CreateBinary(shape, HloOpcode::kAdd, a_f, b_f)); in TEST_F() 507 HloInstruction* a_f = in TEST_F() local 512 HloInstruction::CreateBinary(shape, HloOpcode::kAdd, a_f, b_f)); in TEST_F() 514 builder_f.AddInstruction(HloInstruction::CreateTuple({a_f, add_f})); in TEST_F() 533 EXPECT_FALSE(OutputsBF16(a_f)); in TEST_F() 687 HloInstruction* a_f = in TEST_F() local 689 builder_f.AddInstruction(HloInstruction::CreateTranspose(shape, a_f, {0, 1})); in TEST_F() [all …]
|