• Home
  • Raw
  • Download

Lines Matching refs:UINT16_C

14 	const uint16_t min_po2_f16   = UINT16_C(0x0400);  in TEST()
15 const uint16_t eighths_f16 = UINT16_C(0x3000); in TEST()
16 const uint16_t quarter_f16 = UINT16_C(0x3400); in TEST()
17 const uint16_t half_f16 = UINT16_C(0x3800); in TEST()
18 const uint16_t one_f16 = UINT16_C(0x3C00); in TEST()
19 const uint16_t two_f16 = UINT16_C(0x4000); in TEST()
20 const uint16_t four_f16 = UINT16_C(0x4400); in TEST()
21 const uint16_t eight_f16 = UINT16_C(0x4800); in TEST()
22 const uint16_t sixteen_f16 = UINT16_C(0x4C00); in TEST()
23 const uint16_t thirtytwo_f16 = UINT16_C(0x5000); in TEST()
24 const uint16_t sixtyfour_f16 = UINT16_C(0x5400); in TEST()
25 const uint16_t max_po2_f16 = UINT16_C(0x7C00); in TEST()
138 const uint16_t exp2_minus_15_f16 = UINT16_C(0x0200); in TEST()
139 const uint16_t exp2_minus_16_f16 = UINT16_C(0x0100); in TEST()
140 const uint16_t exp2_minus_17_f16 = UINT16_C(0x0080); in TEST()
141 const uint16_t exp2_minus_18_f16 = UINT16_C(0x0040); in TEST()
142 const uint16_t exp2_minus_19_f16 = UINT16_C(0x0020); in TEST()
143 const uint16_t exp2_minus_20_f16 = UINT16_C(0x0010); in TEST()
144 const uint16_t exp2_minus_21_f16 = UINT16_C(0x0008); in TEST()
145 const uint16_t exp2_minus_22_f16 = UINT16_C(0x0004); in TEST()
146 const uint16_t exp2_minus_23_f16 = UINT16_C(0x0002); in TEST()
147 const uint16_t exp2_minus_24_f16 = UINT16_C(0x0001); in TEST()
148 const uint16_t exp2_minus_25_f16 = UINT16_C(0x0000); in TEST()
252 const uint16_t positive_zero_f16 = UINT16_C(0x0000); in TEST()
253 const uint16_t negative_zero_f16 = UINT16_C(0x8000); in TEST()
276 const uint16_t max_f16 = UINT16_C(0x7FFF); in TEST()
277 const uint16_t min_f16 = UINT16_C(0xFFFF); in TEST()
306 ASSERT_EQ(nan_f16 & UINT16_C(0x8000), 0) << in TEST()
312 ASSERT_EQ(nan_f16 & UINT16_C(0x7C00), UINT16_C(0x7C00)) << in TEST()
318 ASSERT_NE(nan_f16 & UINT16_C(0x03FF), 0) << in TEST()
332 ASSERT_EQ(nan_f16 & UINT16_C(0x8000), UINT16_C(0x8000)) << in TEST()
338 ASSERT_EQ(nan_f16 & UINT16_C(0x7C00), UINT16_C(0x7C00)) << in TEST()
344 ASSERT_NE(nan_f16 & UINT16_C(0x03FF), 0) << in TEST()
353 for (uint16_t f16 = UINT16_C(0x0000); f16 <= UINT16_C(0x7FFF); f16++) { in TEST()
366 for (uint16_t f16 = UINT16_C(0xFFFF); f16 >= UINT16_C(0x8000); f16--) { in TEST()
381 const uint16_t zero_f16 = UINT16_C(0x0000); in TEST()
382 const uint16_t min_f16 = UINT16_C(0x0001); in TEST()
403 const uint16_t max_f16 = UINT16_C(0x7FFF); in TEST()
420 for (uint16_t f16 = 0; f16 < UINT16_C(0x0400); f16++) { in TEST()
439 for (uint16_t f16 = UINT16_C(0x8000); f16 < UINT16_C(0x8400); f16++) { in TEST()
440 const uint32_t f32_end = fp16::denormalizedRanges[f16 & UINT16_C(0x7FFF)] | UINT32_C(0x80000000); in TEST()
462 const uint32_t f32_end = fp16::normalizedRanges[f16 & UINT16_C(0x3FF)] + (uint32_t(e) << 23); in TEST()
484 …for (uint16_t f16 = (UINT16_C(0x8000) | (uint16_t(e + e_bias) << 10)); f16 < (UINT16_C(0x8000) | (… in TEST()
485 …const uint32_t f32_end = (fp16::normalizedRanges[f16 & UINT16_C(0x3FF)] | UINT32_C(0x80000000)) + … in TEST()