Searched refs:condValue (Results 1 – 2 of 2) sorted by relevance
1700 const bool condValue = *reinterpret_cast<const bool8*>(condOperand.buffer); in executeIfOperation() local1701 VLOG(CPUEXE) << "CpuExecutor::executeIfOperation: condition value: " << condValue; in executeIfOperation()1703 const uint32_t branchInputIndex = condValue ? op::kThenModelOperand : op::kElseModelOperand; in executeIfOperation()1789 bool8 condValue = {/* initialized memory */}; in executeWhileOperation() local1790 condOutput.buffer = &condValue; in executeWhileOperation()1791 condOutput.length = sizeof(condValue); in executeWhileOperation()1806 << static_cast<int>(condValue); in executeWhileOperation()1807 if (!condValue) { in executeWhileOperation()
1721 bool condValue; in nextCompound() local1722 NN_RETURN_IF_ERROR(readConditionValue(controller, step->conditionOperandIndex, &condValue)); in nextCompound()1723 controller->mNextStepIndex = condValue ? step->thenStepIndex : step->elseStepIndex; in nextCompound()1725 condValue ? step->thenBranchInputOperands : step->elseBranchInputOperands; in nextCompound()1727 condValue ? step->thenBranchOutputOperands : step->elseBranchOutputOperands; in nextCompound()1804 bool condValue; in nextCompound() local1805 NN_RETURN_IF_ERROR(readConditionValue(controller, step->condOutputOperand, &condValue)); in nextCompound()1806 if (condValue) { in nextCompound()