Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/binutils/opcodes/
Dsh-dis.c166 const sh_opcode_info *opx, *opy; in print_insn_ddt() local
179 for (opx = first_movx; opx->nibbles[2] != insn_x;) in print_insn_ddt()
180 opx++; in print_insn_ddt()
181 print_movxy (opx, ((insn >> 9) & 1) + 4, (insn >> 7) & 1, in print_insn_ddt()
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c108578 u8 opx = op;
108599 if( op==TK_LE ) opx = TK_LT;
108600 if( op==TK_GE ) opx = TK_GT;
108601 if( op==TK_NE ) opx = TK_EQ;
108616 codeCompare(pParse, pL, pR, opx, r1, r2, addrDone, p5, isCommuted);
108625 if( (opx==TK_LT || opx==TK_GT) && i<nLeft-1 ){
108627 testcase(opx==TK_LT); VdbeCoverageIf(v,opx==TK_LT);
108628 testcase(opx==TK_GT); VdbeCoverageIf(v,opx==TK_GT);
108638 if( opx==TK_EQ ){
108643 if( i==nLeft-2 ) opx = op;