Home
last modified time | relevance | path

Searched refs:myint8_t (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/third_party/subzero/crosstest/
Dtest_cast.cpp50 static ToType f(myint8_t a) { return cast<myint8_t, ToType>(a); } in f()
61 static ToType f(int i, myint8_t a) { return cast<myint8_t, ToType>(i, a, i); } in f()
79 template class Caster<myint8_t>;
Dtest_icmp.h36 bool icmp##cmp(myint8_t a, myint8_t b); \
43 bool icmp_zero##cmp(myint8_t a); \
Dtest_icmp.cpp36 bool icmp##cmp(myint8_t a, myint8_t b) { return a op b; } \
43 bool icmp_zero##cmp(myint8_t a) { return a op 0; } \
Dtest_arith.h35 myint8_t test##inst(myint8_t a, myint8_t b); \
Dtest_arith.cpp40 myint8_t test##inst(myint8_t a, myint8_t b) { return a op b; } \
Dtest_cast_main.cpp101 COMPARE(cast, FromType, myint8_t, Val, FromTypeString); in testValue()
112 COMPARE_ARG(cast, FromType, myint8_t, Val, FromTypeString); in testValue()
155 volatile myint8_t ValsSi8[] = {0, 1, 0x7e, 0x7f, 0x80, 0x81, 0xfe, 0xff}; in main()
217 myint8_t Val = ValsSi8[i]; in main()
218 testValue<myint8_t>(Val, TotalTests, Passes, Failures, "int8_t"); in main()
Dtest_global.h20 typedef signed char myint8_t; typedef
Dtest_cast.h20 typedef signed char myint8_t; typedef
Dvectors.def19 X(v16si8, myint8_t, int64_t) \
Dvectors.h28 typedef signed char myint8_t; typedef
Dtest_icmp_main.cpp352 testsInt<uint8_t, myint8_t>(TotalTests, Passes, Failures); in main()
356 testsIntWithZero<uint8_t, myint8_t>(TotalTests, Passes, Failures); in main()
Dtest_arith_main.cpp383 testsInt<uint8_t, myint8_t>(TotalTests, Passes, Failures); in main()