HomeSort by relevance Sort by last modified time
    Searched refs:vA (Results 1 - 25 of 42) sorted by null

1 2

  /external/neven/Embedded/common/src/b_BitFeatureEm/
Functions.h 43 #define bbf_BIT_SUM_8( vA ) ( bbf_bit8TblG[ vA ] )
46 #define bbf_BIT_SUM_16( vA ) ( bbf_bit8TblG[ vA & 0x00FF ] + bbf_bit8TblG[ ( vA >> 8 ) & 0x00FF ] )
49 #define bbf_BIT_SUM_32( vA ) ( bbf_bit8TblG[ vA & 0x00FF ] + bbf_bit8TblG[ ( vA >> 8 ) & 0x00FF ] + bbf_bit8TblG[ ( vA >> 16 ) & 0x00FF ] + bbf_bit8TblG[ ( vA >> 24 ) & 0x00FF ]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 94 ppc_vaddfp(struct ppc_function *p,uint vD, uint vA, uint vB);
98 ppc_vsubfp(struct ppc_function *p, uint vD, uint vA, uint vB);
102 ppc_vminfp(struct ppc_function *p, uint vD, uint vA, uint vB);
106 ppc_vmaxfp(struct ppc_function *p, uint vD, uint vA, uint vB);
108 /** vector float mult add: vD = vA * vB + vC */
110 ppc_vmaddfp(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC);
112 /** vector float negative mult subtract: vD = vA - vB * vC */
114 ppc_vnmsubfp(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC);
118 ppc_vcmpgtfpx(struct ppc_function *p, uint vD, uint vA, uint vB);
122 ppc_vcmpgefpx(struct ppc_function *p, uint vD, uint vA, uint vB)
    [all...]
rtasm_ppc.c 293 unsigned vA:5;
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
306 inst.inst.vA = vA;
313 printf(format, vD, vB, vA);
315 printf(format, vD, vA, vB);
325 unsigned vA:5;
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
339 inst.inst.vA = vA;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 94 ppc_vaddfp(struct ppc_function *p,uint vD, uint vA, uint vB);
98 ppc_vsubfp(struct ppc_function *p, uint vD, uint vA, uint vB);
102 ppc_vminfp(struct ppc_function *p, uint vD, uint vA, uint vB);
106 ppc_vmaxfp(struct ppc_function *p, uint vD, uint vA, uint vB);
108 /** vector float mult add: vD = vA * vB + vC */
110 ppc_vmaddfp(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC);
112 /** vector float negative mult subtract: vD = vA - vB * vC */
114 ppc_vnmsubfp(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC);
118 ppc_vcmpgtfpx(struct ppc_function *p, uint vD, uint vA, uint vB);
122 ppc_vcmpgefpx(struct ppc_function *p, uint vD, uint vA, uint vB)
    [all...]
rtasm_ppc.c 293 unsigned vA:5;
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
306 inst.inst.vA = vA;
313 printf(format, vD, vB, vA);
315 printf(format, vD, vA, vB);
325 unsigned vA:5;
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
339 inst.inst.vA = vA;
    [all...]
  /external/neven/Embedded/common/src/b_TensorEm/
Functions.h 53 uint32 bts_absIntLog2( int32 vA );
Functions.c 38 uint32 bts_absIntLog2( int32 vA )
40 return bbs_intLog2( bbs_abs( vA ) );
  /dalvik/dx/src/com/android/dx/ssa/
SCCP.java 273 int vA = ((CstInteger) cA).getValue();
276 constantSuccessor = (vA == 0);
279 constantSuccessor = (vA != 0);
282 constantSuccessor = (vA < 0);
285 constantSuccessor = (vA >= 0);
288 constantSuccessor = (vA <= 0);
291 constantSuccessor = (vA > 0);
304 int vA = ((CstInteger) cA).getValue();
308 constantSuccessor = (vA == vB);
311 constantSuccessor = (vA != vB)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SCCP.java 274 int vA = ((CstInteger) cA).getValue();
277 constantSuccessor = (vA == 0);
280 constantSuccessor = (vA != 0);
283 constantSuccessor = (vA < 0);
286 constantSuccessor = (vA >= 0);
289 constantSuccessor = (vA <= 0);
292 constantSuccessor = (vA > 0);
305 int vA = ((CstInteger) cA).getValue();
309 constantSuccessor = (vA == vB);
312 constantSuccessor = (vA != vB)
    [all...]
  /external/clang/test/CodeGen/
volatile.c 11 volatile int vA[10];
60 i=vA[2];
61 // CHECK: load volatile i32* getelementptr {{.*}} @vA
135 vA[2]=i;
137 // CHECK: store volatile i32 {{.*}}, i32* getelementptr {{.*}} @vA
  /dalvik/libdex/
InstrUtils.cpp 502 pDec->vA = INST_AA(inst);
504 case kFmt12x: // op vA, vB
505 pDec->vA = INST_A(inst);
508 case kFmt11n: // op vA, #+B
509 pDec->vA = INST_A(inst);
513 pDec->vA = INST_AA(inst);
516 pDec->vA = (s1) INST_AA(inst); // sign-extend 8-bit value
519 pDec->vA = (s2) FETCH(1); // sign-extend 16-bit value
524 pDec->vA = INST_AA(inst);
529 pDec->vA = INST_AA(inst)
    [all...]
InstrUtils.h 35 kFmt12x, // op vA, vB
36 kFmt11n, // op vA, #+B
48 kFmt22t, // op vA, vB, +CCCC
49 kFmt22s, // op vA, vB, #+CCCC
50 kFmt22c, // op vA, vB, thing@CCCC
51 kFmt22cs, // [opt] op vA, vB, field offset CCCC
130 u4 vA;
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2.h 31 struct VA : SkOTTableOS2_VA { } vA;
45 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::VA) == 68, sizeof_SkOTTableOS2__VA_not_68);
  /external/skia/src/sfnt/
SkOTTable_OS_2.h 31 struct VA : SkOTTableOS2_VA { } vA;
45 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::VA) == 68, sizeof_SkOTTableOS2__VA_not_68);
  /dalvik/dexdump/
DexDump.cpp 898 case kFmt12x: // op vA, vB
899 printf(" v%d, v%d", pDecInsn->vA, pDecInsn->vB);
901 case kFmt11n: // op vA, #+B
903 pDecInsn->vA, (s4)pDecInsn->vB, (u1)pDecInsn->vB);
906 printf(" v%d", pDecInsn->vA);
911 s4 targ = (s4) pDecInsn->vA;
919 printf(" v%d, v%d", pDecInsn->vA, pDecInsn->vB);
924 printf(" v%d, %04x // %c%04x", pDecInsn->vA,
932 pDecInsn->vA, (s4)pDecInsn->vB, (u2)pDecInsn->vB);
939 pDecInsn->vA, value, (u2)pDecInsn->vB)
    [all...]
  /art/compiler/dex/
mir_dataflow.cc 36 // 01 MOVE vA, vB
45 // 04 MOVE_WIDE vA, vB
54 // 07 MOVE_OBJECT vA, vB
87 // 12 CONST_4 vA, #+B
129 // 20 INSTANCE_OF vA, vB, type@CCCC
132 // 21 ARRAY_LENGTH vA, vB
138 // 23 NEW_ARRAY vA, vB, type@CCCC
141 // 24 FILLED_NEW_ARRAY {vD, vE, vF, vG, vA}
183 // 32 IF_EQ vA, vB, +CCCC
186 // 33 IF_NE vA, vB, +CCC
    [all...]
mir_graph.cc 143 decoded_instruction->vA = inst->HasVRegA() ? inst->VRegA() : 0;
407 target += insn->dalvikInsn.vA;
    [all...]
mir_graph.h 275 uint32_t vA;
282 explicit DecodedInstruction():vA(0), vB(0), vB_wide(0), vC(0), opcode(Instruction::NOP) {
    [all...]
  /art/compiler/dex/quick/
dex_file_method_inliner.cc 110 DCHECK_LT(arg, invoke->dalvikInsn.vA);
121 DCHECK_LT(arg + 1, invoke->dalvikInsn.vA);
    [all...]
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c     [all...]
  /art/runtime/verifier/
method_verifier.h 400 // - vA holds word count (0-5), args[] have values.
404 bool CheckVarArgRegs(uint32_t vA, uint32_t arg[]);
408 // - vA holds word count, vC holds index of first reg.
409 bool CheckVarArgRangeRegs(uint32_t vA, uint32_t vC);
  /art/compiler/dex/quick/x86/
target_x86.cc     [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding_unittest.cc     [all...]
  /art/compiler/sea_ir/ir/
sea.cc 668 int vA = instruction_->VRegA();
669 uses.push_back(vA);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp     [all...]

Completed in 1160 milliseconds

1 2