HomeSort by relevance Sort by last modified time
    Searched defs:op1 (Results 1 - 25 of 36) sorted by null

1 2

  /external/mesa3d/src/glsl/
ir_div_to_mul_rcp.cpp 27 * Breaks an ir_unop_div expression down to op0 * (rcp(op1)).
67 /* New expression for the 1.0 / op1 */
74 /* op0 / op1 -> op0 * (1.0 / op1) */
82 ir_rvalue *op0, *op1; local
90 op1 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[1], NULL);
92 op1 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[1], NULL);
94 op1 = new(ir) ir_expression(ir_unop_rcp, op1->type, op1, NULL)
    [all...]
lower_instructions.cpp 42 * Breaks an ir_binop_sub expression down to add(op0, neg(op1))
47 * want to recognize add(op0, neg(op1)) or the other way around to
52 * Breaks an ir_unop_div expression down to op0 * (rcp(op1)).
72 * Breaks an ir_unop_mod expression down to (op1 * fract(op0 / op1))
76 * opportunity to do things like constant fold the (1.0 / op1) easily.
131 /* New expression for the 1.0 / op1 */
138 /* op0 / op1 -> op0 * (1.0 / op1) */
146 ir_rvalue *op0, *op1; local
    [all...]
loop_analysis.cpp 429 ir_variable *const op1 = rhs->operands[1]->variable_referenced(); local
431 if (((op0 != var) && (op1 != var))
432 || ((op1 == var) && (rhs->operation == ir_binop_sub)))
lower_mat_op_to_vec.cpp 307 ir_dereference *const op1 = get_column(b_var, i); local
311 glsl_type::bool_type, op0, op1);
435 ir_rvalue *op1 = get_column(op_var[1], i); local
443 op1);
  /frameworks/base/core/tests/coretests/src/android/content/
SyncOperationTest.java 44 SyncOperation op1 = new SyncOperation(account1, local
53 // Same as op1 but different time infos
63 // Same as op1 but different authority
73 // Same as op1 but different account
83 // Same as op1 but different bundle
93 assertEquals(op1.key, op2.key);
94 assertNotSame(op1.key, op3.key);
95 assertNotSame(op1.key, op4.key);
96 assertNotSame(op1.key, op5.key);
ContentProviderOperationTest.java 53 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
56 ContentProviderResult result = op1.apply(new TestContentProvider() {
67 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
69 ContentProviderResult result = op1.apply(new TestContentProvider() {
80 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
84 op1.apply(new TestContentProvider() {
103 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
108 ContentProviderResult result = op1.apply(new TestContentProvider() {
122 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
126 ContentProviderResult result = op1.apply(new TestContentProvider()
138 ContentProviderOperation op1 = ContentProviderOperation.newAssertQuery(sTestUri1) local
157 ContentProviderOperation op1 = ContentProviderOperation.newAssertQuery(sTestUri1) local
247 ContentProviderOperation op1 = ContentProviderOperation.newInsert(sTestUri1) local
269 ContentProviderOperation op1 = ContentProviderOperation.newUpdate(sTestUri1) local
284 ContentProviderOperation op1; local
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.cpp 46 JSValue op1 = JSValue::decode(encodedOp1); local
49 if (op1.isInt32() && op2.isInt32()) {
50 int64_t result64 = static_cast<int64_t>(op1.asInt32()) + static_cast<int64_t>(op2.asInt32());
59 if (op1.getNumber(number1) && op2.getNumber(number2))
62 return JSValue::encode(jsAddSlowCase(exec, op1, op2));
DFGJITCodeGenerator.h 308 void bitOp(NodeType op, int32_t imm, MacroAssembler::RegisterID op1, MacroAssembler::RegisterID result)
312 m_jit.and32(Imm32(imm), op1, result); local
315 m_jit.or32(Imm32(imm), op1, result); local
318 m_jit.xor32(Imm32(imm), op1, result); local
324 void bitOp(NodeType op, MacroAssembler::RegisterID op1, MacroAssembler::RegisterID op2, MacroAssembler::RegisterID result)
328 m_jit.and32(op1, op2, result);
331 m_jit.or32(op1, op2, result);
334 m_jit.xor32(op1, op2, result);
340 void shiftOp(NodeType op, MacroAssembler::RegisterID op1, int32_t shiftAmount, MacroAssembler::RegisterID result)
344 m_jit.rshift32(op1, Imm32(shiftAmount), result)
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 27 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
31 OSCL_UNUSED_ARG(op1);
33 out = op2 * 724 + op3; /* op1 is not used here */
111 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
117 smlabb out, op1, op2, op3 local
174 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
181 mla out, op1, out, op3 local
269 __inline int32 mla724(int32 op1, int32 op2, int32 op3)
272 register int32 aa = (int32)op1;
  /ndk/sources/host-tools/nawk-20071023/
parse.c 132 Node *op1(int a, Node *b) function
182 return op1(INDIRECT, celltonode(literal0, CUNK));
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-ssa-sccvn.h 73 tree op1; member in struct:vn_reference_op_struct
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-ssa-sccvn.h 73 tree op1; member in struct:vn_reference_op_struct
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
tree-ssa-sccvn.h 73 tree op1; member in struct:vn_reference_op_struct
  /external/qemu/target-arm/
op_helper.c 130 int op1 = (insn >> 8) & 0xf; local
131 cpu_abort(env, "cp%i insn %08x\n", op1, insn);
137 int op1 = (insn >> 8) & 0xf; local
138 cpu_abort(env, "cp%i insn %08x\n", op1, insn);
helper.c 1401 int op1; local
1836 int op1; local
    [all...]
translate.c 525 static void gen_arm_parallel_addsub(int op1, int op2, TCGv a, TCGv b)
529 switch (op1) {
564 switch (op1) { \
572 static void gen_thumb2_parallel_addsub(int op1, int op2, TCGv a, TCGv b)
6082 int op1 = (insn >> 21) & 7; local
6142 int op1 = (insn >> 21) & 7; local
6417 unsigned int cond, insn, val, op1, i, shift, rm, rs, rn, rd, sh; local
8726 int op1 = (insn >> 23) & 3; local
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITArithmetic.cpp 53 unsigned op1 = currentInstruction[2].u.operand; local
56 emitGetVirtualRegisters(op1, regT0, op2, regT2);
70 unsigned op1 = currentInstruction[2].u.operand; local
73 UNUSED_PARAM(op1);
86 unsigned op1 = currentInstruction[2].u.operand; local
91 emitGetVirtualRegister(op1, regT0);
96 emitGetVirtualRegisters(op1, regT0, op2, regT2);
121 unsigned op1 = currentInstruction[2].u.operand; local
135 // We're reloading op1 to regT0 as we can no longer guarantee that
138 stubCall.addArgument(op1, regT0)
154 unsigned op1 = currentInstruction[2].u.operand; local
190 unsigned op1 = currentInstruction[2].u.operand; local
247 unsigned op1 = currentInstruction[1].u.operand; local
295 unsigned op1 = currentInstruction[1].u.operand; local
400 unsigned op1 = currentInstruction[1].u.operand; local
448 unsigned op1 = currentInstruction[1].u.operand; local
553 unsigned op1 = currentInstruction[1].u.operand; local
601 unsigned op1 = currentInstruction[1].u.operand; local
718 unsigned op1 = currentInstruction[2].u.operand; local
746 unsigned op1 = currentInstruction[2].u.operand; local
877 unsigned op1 = currentInstruction[2].u.operand; local
916 unsigned op1 = currentInstruction[2].u.operand; local
929 unsigned op1 = currentInstruction[2].u.operand; local
1058 unsigned op1 = currentInstruction[2].u.operand; local
1089 unsigned op1 = currentInstruction[2].u.operand; local
1104 unsigned op1 = currentInstruction[2].u.operand; local
1129 unsigned op1 = currentInstruction[2].u.operand; local
1141 unsigned op1 = currentInstruction[2].u.operand; local
1194 unsigned op1 = currentInstruction[2].u.operand; local
1221 unsigned op1 = currentInstruction[2].u.operand; local
1232 unsigned op1 = currentInstruction[2].u.operand; local
    [all...]
JITArithmetic32_64.cpp 89 unsigned op1 = currentInstruction[1].u.operand; local
97 if (isOperandConstantImmediateChar(op1)) {
103 addJump(branch32(LessThanOrEqual, regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
107 emitLoad(op1, regT1, regT0);
115 if (isOperandConstantImmediateInt(op1)) {
119 addJump(branch32(LessThanOrEqual, regT2, Imm32(getConstantOperand(op1).asInt32())), target);
121 emitLoad(op1, regT1, regT0);
125 emitLoad2(op1, regT1, regT0, op2, regT3, regT2);
139 emitBinaryDoubleOp(op_jnless, target, op1, op2, OperandTypes(), notInt32Op1, notInt32Op2, !isOperandConstantImmediateInt(op1), isOperandConstantImmediateInt(op1) || !isOperandConstantImmediateInt(op2))
145 unsigned op1 = currentInstruction[1].u.operand; local
178 unsigned op1 = currentInstruction[1].u.operand; local
233 unsigned op1 = currentInstruction[1].u.operand; local
265 unsigned op1 = currentInstruction[1].u.operand; local
320 unsigned op1 = currentInstruction[1].u.operand; local
366 unsigned op1 = currentInstruction[2].u.operand; local
388 unsigned op1 = currentInstruction[2].u.operand; local
406 unsigned op1 = currentInstruction[2].u.operand; local
445 unsigned op1 = currentInstruction[2].u.operand; local
531 unsigned op1 = currentInstruction[2].u.operand; local
554 unsigned op1 = currentInstruction[2].u.operand; local
572 unsigned op1 = currentInstruction[2].u.operand; local
595 unsigned op1 = currentInstruction[2].u.operand; local
613 unsigned op1 = currentInstruction[2].u.operand; local
636 unsigned op1 = currentInstruction[2].u.operand; local
797 unsigned op1 = currentInstruction[2].u.operand; local
869 unsigned op1 = currentInstruction[2].u.operand; local
916 unsigned op1 = currentInstruction[2].u.operand; local
978 unsigned op1 = currentInstruction[2].u.operand; local
1152 unsigned op1 = currentInstruction[2].u.operand; local
1184 unsigned op1 = currentInstruction[2].u.operand; local
1226 unsigned op1 = currentInstruction[2].u.operand; local
1270 unsigned op1 = currentInstruction[2].u.operand; local
1301 unsigned op1 = currentInstruction[2].u.operand; local
1351 unsigned op1 = currentInstruction[2].u.operand; local
1376 unsigned op1 = currentInstruction[2].u.operand; local
1403 unsigned op1 = currentInstruction[2].u.operand; local
    [all...]
JITOpcodes.cpp 350 unsigned op1 = currentInstruction[1].u.operand; local
354 emitGetVirtualRegister(op1, regT0);
359 emitGetVirtualRegisters(op1, regT0, op2, regT1);
    [all...]
JITOpcodes32_64.cpp 505 unsigned op1 = currentInstruction[1].u.operand; local
511 if (isOperandConstantImmediateInt(op1)) {
514 addJump(branch32(GreaterThanOrEqual, regT0, Imm32(getConstantOperand(op1).asInt32())), target);
519 emitLoad(op1, regT1, regT0);
525 emitLoad2(op1, regT1, regT0, op2, regT3, regT2);
533 unsigned op1 = currentInstruction[1].u.operand; local
537 if (!isOperandConstantImmediateInt(op1) && !isOperandConstantImmediateInt(op2))
542 stubCall.addArgument(op1);
1057 unsigned op1 = currentInstruction[2].u.operand; local
    [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 489 byte op1 = last_pc_[1]; local
491 if ((op1 & 0x38) == (6 << 3)) {
492 op1 = (op1 & ~0x38) | static_cast<byte>(dst.code() << 3);
494 last_pc_[1] = op1;
    [all...]
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 1533 ASTree op1 = expr.oprand1(); local
    [all...]
  /external/qemu/target-i386/
translate.c 5440 int op1; local
5781 int op1; local
5918 int op1, l1; local
    [all...]
  /external/valgrind/main/VEX/priv/
guest_x86_toIR.c 8037 UChar op1 = getIByte(delta+1); local
    [all...]
  /external/libxml2/
xpath.c 792 #define PUSH_FULL_EXPR(op, op1, op2, val, val2, val3, val4, val5) \
793 xmlXPathCompExprAdd(ctxt->comp, (op1), (op2), \
10307 int op1 = ctxt->comp->last; local
10620 int op1 = ctxt->comp->last; local
10688 int op1 = ctxt->comp->last; local
10727 int op1 = ctxt->comp->last; local
10768 int op1 = ctxt->comp->last; local
10807 int op1 = ctxt->comp->last; local
10837 int op1 = ctxt->comp->last; local
10863 int op1 = ctxt->comp->last; local
10895 int op1 = ctxt->comp->last; local
11191 int op1; local
    [all...]

Completed in 1665 milliseconds

1 2