Searched refs:TotalCases (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp37 SwitchCG::getJumpTableNumCases(const SmallVectorImpl<unsigned> &TotalCases, argument
40 assert(TotalCases[Last] >= TotalCases[First]);
42 TotalCases[Last] - (First == 0 ? 0 : TotalCases[First - 1]);
73 SmallVector<unsigned, 8> TotalCases(N);
77 TotalCases[i] = (Hi - Lo).getLimitedValue() + 1;
79 TotalCases[i] += TotalCases[i - 1];
83 uint64_t NumCases = getJumpTableNumCases(TotalCases,
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSwitchLoweringUtils.h236 uint64_t getJumpTableNumCases(const SmallVectorImpl<unsigned> &TotalCases,

Completed in 168 milliseconds