Home
last modified time | relevance | path

Searched defs:AddInteger (Results 1 – 2 of 2) sorted by relevance

/llvm-project/llvm/include/llvm/ADT/
H A DFoldingSet.h348 void AddInteger(signed I) { Bits.push_back(I); } in AddInteger() function
349 void AddInteger(unsigned I) { Bits.push_back(I); } in AddInteger() function
350 void AddInteger(long I) { AddInteger((unsigned long)I); } in AddInteger() function
351 void AddInteger(unsigned long I) { in AddInteger() function
360 void AddInteger(long long I) { AddInteger((unsigned long long)I); } in AddInteger() function
361 void AddInteger(unsigned long long I) { in AddInteger() function
/llvm-project/mlir/unittests/ExecutionEngine/
H A DInvoke.cpp63 TEST(MLIRExecutionEngine, SKIP_WITHOUT_JIT(AddInteger)) { in TEST() argument