Searched refs:max_id (Results 1 - 10 of 10) sorted by relevance
/third_party/rust/crates/aho-corasick/src/ |
H A D | state_id.rs | 20 if requested > S::max_id() { in premultiply_overflow_error() 21 return Err(Error::premultiply_overflow(S::max_id(), requested)); in premultiply_overflow_error() 30 if value > S::max_id() { in usize_to_state_id() 31 Err(Error::state_id_overflow(S::max_id())) in usize_to_state_id() 85 /// Implementors may assume that `n <= Self::max_id`. That is, implementors 93 /// `Self::max_id` and must not permit overflow when converting between the 104 fn max_id() -> usize; in max_id() functions 119 fn max_id() -> usize { in max_id() functions 136 fn max_id() -> usize { in max_id() functions 153 fn max_id() functions 171 fn max_id() -> usize { max_id() functions 189 fn max_id() -> usize { max_id() functions [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | graph-reducer.cc | 175 NodeId const max_id = static_cast<NodeId>(graph()->NodeCount() - 1); in ReduceTop() 207 Replace(node, replacement, max_id); in ReduceTop() 217 void GraphReducer::Replace(Node* node, Node* replacement, NodeId max_id) { in Replace() argument 220 if (replacement->id() <= max_id) { in Replace() 236 if (user->id() <= max_id) { in Replace()
|
H A D | graph-reducer.h | 181 // less than or equal to {max_id}. Otherwise, replace all uses of {node} whose 182 // id is less than or equal to {max_id} with the {replacement}. 183 void Replace(Node* node, Node* replacement, NodeId max_id);
|
/third_party/benchmark/src/ |
H A D | sysinfo.cc | 504 int max_id = -1; in GetNumCPUs() 528 max_id = std::max(cur_id, max_id); in GetNumCPUs() 542 if ((max_id + 1) != num_cpus) { in GetNumCPUs()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | dpp.c | 3794 unsigned int max_id = 0; in dpp_next_id() local 3797 if (bi->id > max_id) in dpp_next_id() 3798 max_id = bi->id; in dpp_next_id() 3800 return max_id + 1; in dpp_next_id() 4163 unsigned int max_id = 0; in dpp_next_configurator_id() local 4167 if (conf->id > max_id) in dpp_next_configurator_id() 4168 max_id = conf->id; in dpp_next_configurator_id() 4170 return max_id + 1; in dpp_next_configurator_id()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | const_folding_rules.cpp | 717 uint32_t max_id = operand_inst->GetSingleWordInOperand(4); 719 const_mgr->FindDeclaredConstant(max_id);
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | const_folding_rules.cpp | 813 uint32_t max_id = operand_inst->GetSingleWordInOperand(4); 815 const_mgr->FindDeclaredConstant(max_id);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | dpp.c | 8350 unsigned int max_id = 0; in dpp_next_id() local 8353 if (bi->id > max_id) in dpp_next_id() 8354 max_id = bi->id; in dpp_next_id() 8356 return max_id + 1; in dpp_next_id() 8620 unsigned int max_id = 0; in dpp_next_configurator_id() local 8624 if (conf->id > max_id) in dpp_next_configurator_id() 8625 max_id = conf->id; in dpp_next_configurator_id() 8627 return max_id + 1; in dpp_next_configurator_id()
|
/third_party/spirv-tools/source/opt/ |
H A D | const_folding_rules.cpp | 1188 uint32_t max_id = operand_inst->GetSingleWordInOperand(4); 1190 const_mgr->FindDeclaredConstant(max_id);
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_glsl.cpp | 7571 uint32_t &max_id = extra_sub_expressions[id | EXTRA_SUB_EXPRESSION_TYPE_AUX]; 7572 if (!max_id) 7573 max_id = ir.increase_bound_by(1); 7576 ir.meta[max_id] = ir.meta[id]; 7578 emit_nminmax_op(result_type, max_id, args[0], args[1], GLSLstd450NMax); 7579 emit_nminmax_op(result_type, id, max_id, args[2], GLSLstd450NMin);
|
Completed in 35 milliseconds