|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Definitions
tools/clang/lib/AST/Interp/Boolean.h 124 static bool add(Boolean A, Boolean B, unsigned OpBits, Boolean *R) {
129 static bool sub(Boolean A, Boolean B, unsigned OpBits, Boolean *R) {
134 static bool mul(Boolean A, Boolean B, unsigned OpBits, Boolean *R) {
tools/clang/lib/AST/Interp/Integral.h 195 static bool add(Integral A, Integral B, unsigned OpBits, Integral *R) {
199 static bool sub(Integral A, Integral B, unsigned OpBits, Integral *R) {
203 static bool mul(Integral A, Integral B, unsigned OpBits, Integral *R) {
tools/clang/lib/AST/Interp/Interp.h 100 template <typename T, bool (*OpFW)(T, T, unsigned, T *),