Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/bytecompiler/
DNodesCodegen.cpp1711 …lVector, SwitchKind& typeForTable, bool& singleCharacterSwitch, int32_t& min_num, int32_t& max_num) in processClauseList() argument
1725 if (intVal > max_num) in processClauseList()
1726 max_num = intVal; in processClauseList()
1740 if (intVal > max_num) in processClauseList()
1741 max_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/kernel-headers/original/linux/
Dfb.h904 static inline struct apertures_struct *alloc_apertures(unsigned int max_num) { in alloc_apertures() argument
906 + max_num * sizeof(struct aperture), GFP_KERNEL); in alloc_apertures()
909 a->count = max_num; in alloc_apertures()
/external/webkit/Source/JavaScriptCore/parser/
DNodes.h1570 … tryOptimizedSwitch(Vector<ExpressionNode*, 8>& literalVector, int32_t& min_num, int32_t& max_num);