Searched refs:maxDepth (Results 1 – 5 of 5) sorted by relevance
39 if opts.maxDepth is not None and depth >= opts.maxDepth:
1962 SUnit *maxDepth = nullptr; in computeNodeOrder() local1964 if (maxDepth == nullptr || getDepth(I) > getDepth(maxDepth)) in computeNodeOrder()1965 maxDepth = I; in computeNodeOrder()1966 else if (getDepth(I) == getDepth(maxDepth) && in computeNodeOrder()1967 getZeroLatencyDepth(I) > getZeroLatencyDepth(maxDepth)) in computeNodeOrder()1968 maxDepth = I; in computeNodeOrder()1969 else if (getDepth(I) == getDepth(maxDepth) && in computeNodeOrder()1970 getZeroLatencyDepth(I) == getZeroLatencyDepth(maxDepth) && in computeNodeOrder()1971 getMOV(I) < getMOV(maxDepth)) in computeNodeOrder()1972 maxDepth = I; in computeNodeOrder()[all …]
703 JSONValue parseJSON(T)(T json, int maxDepth = -1, JSONOptions options = JSONOptions.none)914 if (maxDepth != -1 && depth > maxDepth) error("Nesting too deep."); in parseValue()
931 JSONValue parseJSON(T)(T json, int maxDepth = -1, JSONOptions options = JSONOptions.none)1183 if (maxDepth != -1 && depth > maxDepth) error("Nesting too deep.");
566 float maxDepth; member