Searched refs:condValue (Results 1 – 2 of 2) sorted by relevance
1750 const bool condValue = *reinterpret_cast<const bool8*>(condOperand.buffer); in executeIfOperation() local1751 VLOG(CPUEXE) << "CpuExecutor::executeIfOperation: condition value: " << condValue; in executeIfOperation()1753 const uint32_t branchInputIndex = condValue ? op::kThenModelOperand : op::kElseModelOperand; in executeIfOperation()1837 bool8 condValue = {/* initialized memory */}; in executeWhileOperation() local1838 condOutput.buffer = &condValue; in executeWhileOperation()1839 condOutput.length = sizeof(condValue); in executeWhileOperation()1854 << static_cast<int>(condValue); in executeWhileOperation()1855 if (!condValue) { in executeWhileOperation()
1267 bool condValue; in nextCompound() local1268 NN_RETURN_IF_ERROR(readConditionValue(controller, step->conditionOperandIndex, &condValue)); in nextCompound()1269 controller->mNextStepIndex = condValue ? step->thenStepIndex : step->elseStepIndex; in nextCompound()1271 condValue ? step->thenBranchInputOperands : step->elseBranchInputOperands; in nextCompound()1273 condValue ? step->thenBranchOutputOperands : step->elseBranchOutputOperands; in nextCompound()1346 bool condValue; in nextCompound() local1347 NN_RETURN_IF_ERROR(readConditionValue(controller, step->condOutputOperand, &condValue)); in nextCompound()1348 if (condValue) { in nextCompound()