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

/external/llvm/lib/Support/
H A DFoldingSet.cpp62 void FoldingSetNodeID::AddInteger(signed I) { function in class:FoldingSetNodeID
65 void FoldingSetNodeID::AddInteger(unsigned I) { function in class:FoldingSetNodeID
68 void FoldingSetNodeID::AddInteger(long I) { function in class:FoldingSetNodeID
69 AddInteger((unsigned long)I);
71 void FoldingSetNodeID::AddInteger(unsigned long I) { function in class:FoldingSetNodeID
73 AddInteger(unsigned(I));
75 AddInteger((unsigned long long)I);
80 void FoldingSetNodeID::AddInteger(long long I) { function in class:FoldingSetNodeID
81 AddInteger((unsigned long long)I);
83 void FoldingSetNodeID::AddInteger(unsigne function in class:FoldingSetNodeID
[all...]

Completed in 261 milliseconds