Home
last modified time | relevance | path

Searched defs:CaseRange (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/unicode/
Dletter.go56 type CaseRange struct { struct
57 Lo uint32
58 Hi uint32
59 Delta d
211 func to(_case int, r rune, caseRange []CaseRange) (mappedRune rune, foundMapping bool) {
/aosp_15_r20/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp62 struct CaseRange { struct in __anonb6762f810111::LowerSwitch
63 ConstantInt* Low;
64 ConstantInt* High;
65 BasicBlock* BB;
67 CaseRange(ConstantInt *low, ConstantInt *high, BasicBlock *bb) in CaseRange() function
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp89 struct CaseRange { struct in __anon06ee2d230311::LowerSwitch
90 ConstantInt* Low;
91 ConstantInt* High;
92 BasicBlock* BB;
94 CaseRange(ConstantInt *low, ConstantInt *high, BasicBlock *bb) in CaseRange() argument
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp73 struct CaseRange { struct
74 ConstantInt *Low;
75 ConstantInt *High;
76 BasicBlock *BB;
78 CaseRange(ConstantInt *low, ConstantInt *high, BasicBlock *bb) in CaseRange() function
H A DSimplifyCFG.cpp6219 static bool isSwitchDense(uint64_t NumCases, uint64_t CaseRange) { in isSwitchDense()