Lines Matching refs:UINT16_C
10 const uint16_t min_po2_f16 = UINT16_C(0x0400); in TEST()
11 const uint16_t eighths_f16 = UINT16_C(0x3000); in TEST()
12 const uint16_t quarter_f16 = UINT16_C(0x3400); in TEST()
13 const uint16_t half_f16 = UINT16_C(0x3800); in TEST()
14 const uint16_t one_f16 = UINT16_C(0x3C00); in TEST()
15 const uint16_t two_f16 = UINT16_C(0x4000); in TEST()
16 const uint16_t four_f16 = UINT16_C(0x4400); in TEST()
17 const uint16_t eight_f16 = UINT16_C(0x4800); in TEST()
18 const uint16_t sixteen_f16 = UINT16_C(0x4C00); in TEST()
19 const uint16_t thirtytwo_f16 = UINT16_C(0x5000); in TEST()
20 const uint16_t sixtyfour_f16 = UINT16_C(0x5400); in TEST()
21 const uint16_t max_po2_f16 = UINT16_C(0x7800); in TEST()
110 const uint16_t exp2_minus_15_f16 = UINT16_C(0x0200); in TEST()
111 const uint16_t exp2_minus_16_f16 = UINT16_C(0x0100); in TEST()
112 const uint16_t exp2_minus_17_f16 = UINT16_C(0x0080); in TEST()
113 const uint16_t exp2_minus_18_f16 = UINT16_C(0x0040); in TEST()
114 const uint16_t exp2_minus_19_f16 = UINT16_C(0x0020); in TEST()
115 const uint16_t exp2_minus_20_f16 = UINT16_C(0x0010); in TEST()
116 const uint16_t exp2_minus_21_f16 = UINT16_C(0x0008); in TEST()
117 const uint16_t exp2_minus_22_f16 = UINT16_C(0x0004); in TEST()
118 const uint16_t exp2_minus_23_f16 = UINT16_C(0x0002); in TEST()
119 const uint16_t exp2_minus_24_f16 = UINT16_C(0x0001); in TEST()
194 const uint16_t positive_zero_f16 = UINT16_C(0x0000); in TEST()
195 const uint16_t negative_zero_f16 = UINT16_C(0x8000); in TEST()
214 const uint16_t positive_infinity_f16 = UINT16_C(0x7C00); in TEST()
215 const uint16_t negative_infinity_f16 = UINT16_C(0xFC00); in TEST()
234 for (uint16_t m = UINT16_C(1); m < UINT16_C(0x0400); m++) { in TEST()
235 const uint16_t nan_f16 = UINT16_C(0x7C00) | m; in TEST()
259 for (uint16_t m = UINT16_C(1); m < UINT16_C(0x0400); m++) { in TEST()
260 const uint16_t nan_f16 = UINT16_C(0xFC00) | m; in TEST()
302 const uint16_t fp16 = (h + ((uint16_t) (e + exponentBias) << 10)) ^ UINT16_C(0x8000); in TEST()
325 const uint16_t fp16 = h ^ UINT16_C(0x8000); in TEST()