Home
last modified time | relevance | path

Searched refs:cur_depth (Results 1 – 7 of 7) sorted by relevance

/external/ltp/testcases/kernel/controllers/cgroup_fj/
Dcgroup_fj_stress.sh81 local cur_depth="$2"
84 if [ "$cur_depth" -gt "$subgroup_depth" ]; then
92 build_subgroups "$cur_path/$i" $((cur_depth+1))
99 local cur_depth="$2"
103 if [ "$cur_depth" -gt "$subgroup_depth" ]; then
120 attach_task "$new_path" $((cur_depth+1)) "$ppid"
/external/ltp/testcases/kernel/fs/iso9660/
Disofs.sh54 local cur_depth="$2"
56 if [ "$cur_depth" -gt "$max_depth" ]; then
67 gen_fs_tree "$new_path" $((cur_depth + 1))
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_instruction.cpp375 const uint32_t cur_depth = 1 + max_member_depth; in LimitCheckStruct() local
376 _.set_struct_nesting_depth(inst->id(), cur_depth); in LimitCheckStruct()
377 if (cur_depth > depth_limit) { in LimitCheckStruct()
380 << ". Found " << cur_depth << "."; in LimitCheckStruct()
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_instruction.cpp375 const uint32_t cur_depth = 1 + max_member_depth; in LimitCheckStruct() local
376 _.set_struct_nesting_depth(inst->id(), cur_depth); in LimitCheckStruct()
377 if (cur_depth > depth_limit) { in LimitCheckStruct()
380 << ". Found " << cur_depth << "."; in LimitCheckStruct()
/external/v8/src/interpreter/
Dinterpreter-assembler.cc165 Variable cur_depth(this, MachineRepresentation::kWord32); in GetContextAtDepth() local
166 cur_depth.Bind(depth); in GetContextAtDepth()
170 Variable* context_search_loop_variables[2] = {&cur_depth, &cur_context}; in GetContextAtDepth()
179 cur_depth.Bind(Int32Sub(cur_depth.value(), Int32Constant(1))); in GetContextAtDepth()
183 Branch(Word32Equal(cur_depth.value(), Int32Constant(0)), &context_found, in GetContextAtDepth()
197 Variable cur_depth(this, MachineRepresentation::kWord32); in GotoIfHasContextExtensionUpToDepth() local
198 cur_depth.Bind(depth); in GotoIfHasContextExtensionUpToDepth()
200 Variable* context_search_loop_variables[2] = {&cur_depth, &cur_context}; in GotoIfHasContextExtensionUpToDepth()
217 cur_depth.Bind(Int32Sub(cur_depth.value(), Int32Constant(1))); in GotoIfHasContextExtensionUpToDepth()
221 GotoIf(Word32NotEqual(cur_depth.value(), Int32Constant(0)), in GotoIfHasContextExtensionUpToDepth()
/external/blktrace/
Dblkparse.c59 unsigned int cur_depth[2]; member
1512 if (pdi->cur_depth[w]) in dump_trace_pc()
1513 pdi->cur_depth[w]--; in dump_trace_pc()
1519 pdi->cur_depth[w]++; in dump_trace_pc()
1520 if (pdi->cur_depth[w] > pdi->max_depth[w]) in dump_trace_pc()
1521 pdi->max_depth[w] = pdi->cur_depth[w]; in dump_trace_pc()
1525 if (pdi->cur_depth[w]) in dump_trace_pc()
1526 pdi->cur_depth[w]--; in dump_trace_pc()
1574 if (pdi->cur_depth[w]) in dump_trace_fs()
1575 pdi->cur_depth[w]--; in dump_trace_fs()
[all …]
/external/libchrome/third_party/jinja2/
Ddebug.py215 cur_depth = local_overrides.get(name, (-1,))[0]
216 if cur_depth < depth: