HomeSort by relevance Sort by last modified time
    Searched refs:return_opcode (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/mesa/program/
program_lexer.l 63 #define return_opcode(condition, token, opcode, len) \
186 ABS{sz}{cc}{sat} { return_opcode( 1, VECTOR_OP, ABS, 3); }
187 ADD{sz}{cc}{sat} { return_opcode( 1, BIN_OP, ADD, 3); }
188 ARL { return_opcode(require_ARB_vp, ARL, ARL, 3); }
190 CMP{sat} { return_opcode(require_ARB_fp, TRI_OP, CMP, 3); }
191 COS{szf}{cc}{sat} { return_opcode(require_ARB_fp, SCALAR_OP, COS, 3); }
193 DDX{szf}{cc}{sat} { return_opcode(require_NV_fp, VECTOR_OP, DDX, 3); }
194 DDY{szf}{cc}{sat} { return_opcode(require_NV_fp, VECTOR_OP, DDY, 3); }
195 DP3{sz}{cc}{sat} { return_opcode( 1, BIN_OP, DP3, 3); }
196 DP4{sz}{cc}{sat} { return_opcode( 1, BIN_OP, DP4, 3);
    [all...]
  /art/runtime/quick/
inline_method_analyser.cc 541 Instruction::Code return_opcode = return_instruction->Opcode(); local
545 DCHECK_LT((return_opcode == Instruction::RETURN_WIDE) ? reg + 1 : reg,
553 data->is_wide = (return_opcode == Instruction::RETURN_WIDE) ? 1u : 0u;
554 data->is_object = (return_opcode == Instruction::RETURN_OBJECT) ? 1u : 0u;
565 Instruction::Code return_opcode = return_instruction->Opcode(); local
566 if (return_opcode != Instruction::RETURN &&
567 return_opcode != Instruction::RETURN_OBJECT) {
582 if (return_opcode == Instruction::RETURN_OBJECT && const_value != 0) {
603 Instruction::Code return_opcode = return_instruction->Opcode(); local
604 if (!(return_opcode == Instruction::RETURN_WIDE && opcode == Instruction::IGET_WIDE) &
668 Instruction::Code return_opcode = return_instruction->Opcode(); local
    [all...]

Completed in 79 milliseconds