Lines Matching defs:b
45 fixed_int8m1_t add_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
46 return a + b;
57 fixed_int16m1_t add_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
58 return a + b;
69 fixed_int32m1_t add_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
70 return a + b;
81 fixed_int64m1_t add_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
82 return a + b;
93 fixed_uint8m1_t add_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
94 return a + b;
105 fixed_uint16m1_t add_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
106 return a + b;
117 fixed_uint32m1_t add_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
118 return a + b;
129 fixed_uint64m1_t add_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
130 return a + b;
141 fixed_float32m1_t add_f32(fixed_float32m1_t a, fixed_float32m1_t b) {
142 return a + b;
153 fixed_float64m1_t add_f64(fixed_float64m1_t a, fixed_float64m1_t b) {
154 return a + b;
165 fixed_int8m1_t add_inplace_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
166 return a += b;
177 fixed_int16m1_t add_inplace_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
178 return a += b;
189 fixed_int32m1_t add_inplace_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
190 return a += b;
201 fixed_int64m1_t add_inplace_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
202 return a += b;
213 fixed_uint8m1_t add_inplace_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
214 return a += b;
225 fixed_uint16m1_t add_inplace_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
226 return a += b;
237 fixed_uint32m1_t add_inplace_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
238 return a += b;
249 fixed_uint64m1_t add_inplace_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
250 return a += b;
261 fixed_float32m1_t add_inplace_f32(fixed_float32m1_t a, fixed_float32m1_t b) {
262 return a += b;
273 fixed_float64m1_t add_inplace_f64(fixed_float64m1_t a, fixed_float64m1_t b) {
274 return a += b;
286 fixed_int8m1_t add_scalar_i8(fixed_int8m1_t a, int8_t b) {
287 return a + b;
299 fixed_int16m1_t add_scalar_i16(fixed_int16m1_t a, int16_t b) {
300 return a + b;
312 fixed_int32m1_t add_scalar_i32(fixed_int32m1_t a, int32_t b) {
313 return a + b;
325 fixed_int64m1_t add_scalar_i64(fixed_int64m1_t a, int64_t b) {
326 return a + b;
338 fixed_uint8m1_t add_scalar_u8(fixed_uint8m1_t a, uint8_t b) {
339 return a + b;
351 fixed_uint16m1_t add_scalar_u16(fixed_uint16m1_t a, uint16_t b) {
352 return a + b;
364 fixed_uint32m1_t add_scalar_u32(fixed_uint32m1_t a, uint32_t b) {
365 return a + b;
377 fixed_uint64m1_t add_scalar_u64(fixed_uint64m1_t a, uint64_t b) {
378 return a + b;
390 fixed_float32m1_t add_scalar_f32(fixed_float32m1_t a, float b) {
391 return a + b;
403 fixed_float64m1_t add_scalar_f64(fixed_float64m1_t a, double b) {
404 return a + b;
417 fixed_int8m1_t sub_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
418 return a - b;
429 fixed_int16m1_t sub_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
430 return a - b;
441 fixed_int32m1_t sub_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
442 return a - b;
453 fixed_int64m1_t sub_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
454 return a - b;
465 fixed_uint8m1_t sub_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
466 return a - b;
477 fixed_uint16m1_t sub_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
478 return a - b;
489 fixed_uint32m1_t sub_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
490 return a - b;
501 fixed_uint64m1_t sub_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
502 return a - b;
513 fixed_float32m1_t sub_f32(fixed_float32m1_t a, fixed_float32m1_t b) {
514 return a - b;
525 fixed_float64m1_t sub_f64(fixed_float64m1_t a, fixed_float64m1_t b) {
526 return a - b;
537 fixed_int8m1_t sub_inplace_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
538 return a - b;
549 fixed_int16m1_t sub_inplace_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
550 return a - b;
561 fixed_int32m1_t sub_inplace_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
562 return a - b;
573 fixed_int64m1_t sub_inplace_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
574 return a - b;
585 fixed_uint8m1_t sub_inplace_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
586 return a - b;
597 fixed_uint16m1_t sub_inplace_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
598 return a - b;
609 fixed_uint32m1_t sub_inplace_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
610 return a - b;
621 fixed_uint64m1_t sub_inplace_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
622 return a - b;
633 fixed_float32m1_t sub_inplace_f32(fixed_float32m1_t a, fixed_float32m1_t b) {
634 return a - b;
645 fixed_float64m1_t sub_inplace_f64(fixed_float64m1_t a, fixed_float64m1_t b) {
646 return a - b;
658 fixed_int8m1_t sub_scalar_i8(fixed_int8m1_t a, int8_t b) {
659 return a - b;
671 fixed_int16m1_t sub_scalar_i16(fixed_int16m1_t a, int16_t b) {
672 return a - b;
684 fixed_int32m1_t sub_scalar_i32(fixed_int32m1_t a, int32_t b) {
685 return a - b;
697 fixed_int64m1_t sub_scalar_i64(fixed_int64m1_t a, int64_t b) {
698 return a - b;
710 fixed_uint8m1_t sub_scalar_u8(fixed_uint8m1_t a, uint8_t b) {
711 return a - b;
723 fixed_uint16m1_t sub_scalar_u16(fixed_uint16m1_t a, uint16_t b) {
724 return a - b;
736 fixed_uint32m1_t sub_scalar_u32(fixed_uint32m1_t a, uint32_t b) {
737 return a - b;
749 fixed_uint64m1_t sub_scalar_u64(fixed_uint64m1_t a, uint64_t b) {
750 return a - b;
762 fixed_float32m1_t sub_scalar_f32(fixed_float32m1_t a, float b) {
763 return a - b;
775 fixed_float64m1_t sub_scalar_f64(fixed_float64m1_t a, double b) {
776 return a - b;
789 fixed_int8m1_t mul_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
790 return a * b;
801 fixed_int16m1_t mul_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
802 return a * b;
813 fixed_int32m1_t mul_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
814 return a * b;
825 fixed_int64m1_t mul_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
826 return a * b;
837 fixed_uint8m1_t mul_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
838 return a * b;
849 fixed_uint16m1_t mul_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
850 return a * b;
861 fixed_uint32m1_t mul_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
862 return a * b;
873 fixed_uint64m1_t mul_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
874 return a * b;
885 fixed_float32m1_t mul_f32(fixed_float32m1_t a, fixed_float32m1_t b) {
886 return a * b;
897 fixed_float64m1_t mul_f64(fixed_float64m1_t a, fixed_float64m1_t b) {
898 return a * b;
909 fixed_int8m1_t mul_inplace_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
910 return a * b;
921 fixed_int16m1_t mul_inplace_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
922 return a * b;
933 fixed_int32m1_t mul_inplace_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
934 return a * b;
945 fixed_int64m1_t mul_inplace_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
946 return a * b;
957 fixed_uint8m1_t mul_inplace_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
958 return a * b;
969 fixed_uint16m1_t mul_inplace_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
970 return a * b;
981 fixed_uint32m1_t mul_inplace_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
982 return a * b;
993 fixed_uint64m1_t mul_inplace_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
994 return a * b;
1005 fixed_float32m1_t mul_inplace_f32(fixed_float32m1_t a, fixed_float32m1_t b) {
1006 return a * b;
1017 fixed_float64m1_t mul_inplace_f64(fixed_float64m1_t a, fixed_float64m1_t b) {
1018 return a * b;
1030 fixed_int8m1_t mul_scalar_i8(fixed_int8m1_t a, int8_t b) {
1031 return a * b;
1043 fixed_int16m1_t mul_scalar_i16(fixed_int16m1_t a, int16_t b) {
1044 return a * b;
1056 fixed_int32m1_t mul_scalar_i32(fixed_int32m1_t a, int32_t b) {
1057 return a * b;
1069 fixed_int64m1_t mul_scalar_i64(fixed_int64m1_t a, int64_t b) {
1070 return a * b;
1082 fixed_uint8m1_t mul_scalar_u8(fixed_uint8m1_t a, uint8_t b) {
1083 return a * b;
1095 fixed_uint16m1_t mul_scalar_u16(fixed_uint16m1_t a, uint16_t b) {
1096 return a * b;
1108 fixed_uint32m1_t mul_scalar_u32(fixed_uint32m1_t a, uint32_t b) {
1109 return a * b;
1121 fixed_uint64m1_t mul_scalar_u64(fixed_uint64m1_t a, uint64_t b) {
1122 return a * b;
1134 fixed_float32m1_t mul_scalar_f32(fixed_float32m1_t a, float b) {
1135 return a * b;
1147 fixed_float64m1_t mul_scalar_f64(fixed_float64m1_t a, double b) {
1148 return a * b;
1161 fixed_int8m1_t div_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
1162 return a / b;
1173 fixed_int16m1_t div_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
1174 return a / b;
1185 fixed_int32m1_t div_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
1186 return a / b;
1197 fixed_int64m1_t div_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
1198 return a / b;
1209 fixed_uint8m1_t div_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
1210 return a / b;
1221 fixed_uint16m1_t div_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
1222 return a / b;
1233 fixed_uint32m1_t div_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
1234 return a / b;
1245 fixed_uint64m1_t div_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
1246 return a / b;
1257 fixed_float32m1_t div_f32(fixed_float32m1_t a, fixed_float32m1_t b) {
1258 return a / b;
1269 fixed_float64m1_t div_f64(fixed_float64m1_t a, fixed_float64m1_t b) {
1270 return a / b;
1281 fixed_int8m1_t div_inplace_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
1282 return a / b;
1293 fixed_int16m1_t div_inplace_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
1294 return a / b;
1305 fixed_int32m1_t div_inplace_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
1306 return a / b;
1317 fixed_int64m1_t div_inplace_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
1318 return a / b;
1329 fixed_uint8m1_t div_inplace_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
1330 return a / b;
1341 fixed_uint16m1_t div_inplace_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
1342 return a / b;
1353 fixed_uint32m1_t div_inplace_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
1354 return a / b;
1365 fixed_uint64m1_t div_inplace_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
1366 return a / b;
1377 fixed_float32m1_t div_inplace_f32(fixed_float32m1_t a, fixed_float32m1_t b) {
1378 return a / b;
1389 fixed_float64m1_t div_inplace_f64(fixed_float64m1_t a, fixed_float64m1_t b) {
1390 return a / b;
1402 fixed_int8m1_t div_scalar_i8(fixed_int8m1_t a, int8_t b) {
1403 return a / b;
1415 fixed_int16m1_t div_scalar_i16(fixed_int16m1_t a, int16_t b) {
1416 return a / b;
1428 fixed_int32m1_t div_scalar_i32(fixed_int32m1_t a, int32_t b) {
1429 return a / b;
1441 fixed_int64m1_t div_scalar_i64(fixed_int64m1_t a, int64_t b) {
1442 return a / b;
1454 fixed_uint8m1_t div_scalar_u8(fixed_uint8m1_t a, uint8_t b) {
1455 return a / b;
1467 fixed_uint16m1_t div_scalar_u16(fixed_uint16m1_t a, uint16_t b) {
1468 return a / b;
1480 fixed_uint32m1_t div_scalar_u32(fixed_uint32m1_t a, uint32_t b) {
1481 return a / b;
1493 fixed_uint64m1_t div_scalar_u64(fixed_uint64m1_t a, uint64_t b) {
1494 return a / b;
1506 fixed_float32m1_t div_scalar_f32(fixed_float32m1_t a, float b) {
1507 return a / b;
1519 fixed_float64m1_t div_scalar_f64(fixed_float64m1_t a, double b) {
1520 return a / b;
1533 fixed_int8m1_t rem_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
1534 return a % b;
1545 fixed_int16m1_t rem_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
1546 return a % b;
1557 fixed_int32m1_t rem_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
1558 return a % b;
1569 fixed_int64m1_t rem_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
1570 return a % b;
1581 fixed_uint8m1_t rem_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
1582 return a % b;
1593 fixed_uint16m1_t rem_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
1594 return a % b;
1605 fixed_uint32m1_t rem_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
1606 return a % b;
1617 fixed_uint64m1_t rem_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
1618 return a % b;
1629 fixed_int8m1_t rem_inplace_i8(fixed_int8m1_t a, fixed_int8m1_t b) {
1630 return a % b;
1641 fixed_int16m1_t rem_inplace_i16(fixed_int16m1_t a, fixed_int16m1_t b) {
1642 return a % b;
1653 fixed_int32m1_t rem_inplace_i32(fixed_int32m1_t a, fixed_int32m1_t b) {
1654 return a % b;
1665 fixed_int64m1_t rem_inplace_i64(fixed_int64m1_t a, fixed_int64m1_t b) {
1666 return a % b;
1677 fixed_uint8m1_t rem_inplace_u8(fixed_uint8m1_t a, fixed_uint8m1_t b) {
1678 return a % b;
1689 fixed_uint16m1_t rem_inplace_u16(fixed_uint16m1_t a, fixed_uint16m1_t b) {
1690 return a % b;
1701 fixed_uint32m1_t rem_inplace_u32(fixed_uint32m1_t a, fixed_uint32m1_t b) {
1702 return a % b;
1713 fixed_uint64m1_t rem_inplace_u64(fixed_uint64m1_t a, fixed_uint64m1_t b) {
1714 return a % b;
1726 fixed_int8m1_t rem_scalar_i8(fixed_int8m1_t a, int8_t b) {
1727 return a % b;
1739 fixed_int16m1_t rem_scalar_i16(fixed_int16m1_t a, int16_t b) {
1740 return a % b;
1752 fixed_int32m1_t rem_scalar_i32(fixed_int32m1_t a, int32_t b) {
1753 return a % b;
1765 fixed_int64m1_t rem_scalar_i64(fixed_int64m1_t a, int64_t b) {
1766 return a % b;
1778 fixed_uint8m1_t rem_scalar_u8(fixed_uint8m1_t a, uint8_t b) {
1779 return a % b;
1791 fixed_uint16m1_t rem_scalar_u16(fixed_uint16m1_t a, uint16_t b) {
1792 return a % b;
1804 fixed_uint32m1_t rem_scalar_u32(fixed_uint32m1_t a, uint32_t b) {
1805 return a % b;
1817 fixed_uint64m1_t rem_scalar_u64(fixed_uint64m1_t a, uint64_t b) {
1818 return a % b;