Searched refs:min_num (Results 1 – 2 of 2) sorted by relevance
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | NodesCodegen.cpp | 1711 …lVector, SwitchKind& typeForTable, bool& singleCharacterSwitch, int32_t& min_num, int32_t& max_num) in processClauseList() argument 1723 if (intVal < min_num) in processClauseList() 1724 min_num = intVal; in processClauseList() 1738 if (intVal < min_num) in processClauseList() 1739 min_num = intVal; in processClauseList() 1751 …::tryOptimizedSwitch(Vector<ExpressionNode*, 8>& literalVector, int32_t& min_num, int32_t& max_num) in tryOptimizedSwitch() argument 1756 … processClauseList(m_list1, literalVector, typeForTable, singleCharacterSwitch, min_num, max_num); in tryOptimizedSwitch() 1757 … processClauseList(m_list2, literalVector, typeForTable, singleCharacterSwitch, min_num, max_num); in tryOptimizedSwitch() 1763 int32_t range = max_num - min_num; in tryOptimizedSwitch() 1764 if (min_num <= max_num && range <= 1000 && (range / literalVector.size()) < 10) in tryOptimizedSwitch() [all …]
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | Nodes.h | 1570 …e tryOptimizedSwitch(Vector<ExpressionNode*, 8>& literalVector, int32_t& min_num, int32_t& max_num…
|