Home
last modified time | relevance | path

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

/external/arm-optimized-routines/math/test/
Dmathtest.c622 static special_op tmp_op = {0,0,0}; variable
634 if(tmp_op.name) free(tmp_op.name); in find_special_op_from_op()
635 tmp_op.name = malloc(strlen(sop->name)+2); in find_special_op_from_op()
637 sprintf(tmp_op.name,"-%s",sop->name); in find_special_op_from_op()
639 strcpy(tmp_op.name,sop->name); in find_special_op_from_op()
641 return &tmp_op; in find_special_op_from_op()
664 tmp_op.op1 = sop->op1; in find_special_op_from_name()
666 tmp_op.op1 |= 0x80000000; in find_special_op_from_name()
668 tmp_op.op2 = sop->op2; in find_special_op_from_name()
669 return &tmp_op; in find_special_op_from_name()
/external/llvm-project/libc/AOR_v20.02/math/test/
Dmathtest.c623 static special_op tmp_op = {0,0,0}; variable
635 if(tmp_op.name) free(tmp_op.name); in find_special_op_from_op()
636 tmp_op.name = malloc(strlen(sop->name)+2); in find_special_op_from_op()
638 sprintf(tmp_op.name,"-%s",sop->name); in find_special_op_from_op()
640 strcpy(tmp_op.name,sop->name); in find_special_op_from_op()
642 return &tmp_op; in find_special_op_from_op()
665 tmp_op.op1 = sop->op1; in find_special_op_from_name()
667 tmp_op.op1 |= 0x80000000; in find_special_op_from_name()
669 tmp_op.op2 = sop->op2; in find_special_op_from_name()
670 return &tmp_op; in find_special_op_from_name()
/external/llvm-project/lldb/source/Expression/
DIRInterpreter.cpp1426 lldb_private::Scalar tmp_op = 0; in Interpret() local
1427 if (!frame.EvaluateValue(tmp_op, arg_op, module)) { in Interpret()
1435 lldb::addr_t addr = tmp_op.ULongLong(); in Interpret()
1461 rawArgs[i].value = tmp_op.ULongLong(); in Interpret()