Home
last modified time | relevance | path

Searched refs:tmp_op (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/arm-optimized-routines/math/test/
H A Dmathtest.c627 static special_op tmp_op = {0,0,0}; variable
639 if(tmp_op.name) free(tmp_op.name); in find_special_op_from_op()
640 tmp_op.name = malloc(strlen(sop->name)+2); in find_special_op_from_op()
642 sprintf(tmp_op.name,"-%s",sop->name); in find_special_op_from_op()
644 strcpy(tmp_op.name,sop->name); in find_special_op_from_op()
646 return &tmp_op; in find_special_op_from_op()
669 tmp_op.op1 = sop->op1; in find_special_op_from_name()
671 tmp_op.op1 |= 0x80000000; in find_special_op_from_name()
673 tmp_op.op2 = sop->op2; in find_special_op_from_name()
674 return &tmp_op; in find_special_op_from_name()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp1499 lldb_private::Scalar tmp_op = 0; in Interpret() local
1500 if (!frame.EvaluateValue(tmp_op, arg_op, module)) { in Interpret()
1508 lldb::addr_t addr = tmp_op.ULongLong(); in Interpret()
1534 rawArgs[i].value = tmp_op.ULongLong(); in Interpret()