Home
last modified time | relevance | path

Searched refs:isWhile (Results 1 – 4 of 4) sorted by relevance

/aosp12/art/tools/jfuzz/
H A Djfuzz.cc832 bool isWhile = random1(2) == 1; in emitDoLoop() local
836 fprintf(out_, "int i%u = %d;\n", loop_nest_, isWhile ? -1 : 0); in emitDoLoop()
838 if (isWhile) { in emitDoLoop()
856 if (isWhile) { in emitDoLoop()
/aosp12/packages/modules/NeuralNetworks/runtime/test/
H A DTestFailingDriver.cpp152 ASSERT_TRUE(steps[0]->isWhile()); in TEST_F()
H A DTestPartitioning.cpp1205 } else if (step->isWhile()) { in checkExecutionPlanSteps()
/aosp12/packages/modules/NeuralNetworks/runtime/
H A DExecutionPlan.h500 bool isWhile() const { return std::holds_alternative<WhileStep>(mStep); } in isWhile() function