Home
last modified time | relevance | path

Searched refs:max_num (Results 1 – 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/parser/
DNodes.cpp2097 …lVector, SwitchKind& typeForTable, bool& singleCharacterSwitch, int32_t& min_num, int32_t& max_num) in processClauseList() argument
2113 if (intVal > max_num) in processClauseList()
2114 max_num = intVal; in processClauseList()
2128 if (intVal > max_num) in processClauseList()
2129 max_num = intVal; in processClauseList()
2139 …::tryOptimizedSwitch(Vector<ExpressionNode*, 8>& literalVector, int32_t& min_num, int32_t& max_num) in tryOptimizedSwitch() argument
2144 …essClauseList(m_list1.get(), literalVector, typeForTable, singleCharacterSwitch, min_num, max_num); in tryOptimizedSwitch()
2145 …essClauseList(m_list2.get(), literalVector, typeForTable, singleCharacterSwitch, min_num, max_num); in tryOptimizedSwitch()
2151 int32_t range = max_num - min_num; in tryOptimizedSwitch()
2152 if (min_num <= max_num && range <= 1000 && (range / literalVector.size()) < 10) in tryOptimizedSwitch()
[all …]
DNodes.h2377 … tryOptimizedSwitch(Vector<ExpressionNode*, 8>& literalVector, int32_t& min_num, int32_t& max_num);