/third_party/ffmpeg/libavcodec/ |
H A D | hqxdsp.c | 29 int t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, tA, tB, tC, tD, tE, tF; in idct_col() local 53 tB = (int)(s6 * 8867U + s2 * 21407U) >> 14; in idct_col() 57 tF = tD - (tB >> 1); in idct_col() 61 t13 = tF + (tB >> 1) * 2 - t4; in idct_col() 75 int t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, tA, tB, tC, tD, tE, tF; in idct_row() local 89 tB = (blk[6] * 8867 + blk[2] * 21407) >> 14; in idct_row() 93 tF = tD - tB; in idct_row() 97 t13 = tF + tB * 2 - t4; in idct_row()
|
H A D | mss34dsp.c | 76 const unsigned tB = SOP(blk[0 * step] + blk[4 * step]); \ 78 blk[0 * step] = (int)( t1 + t6 + t9 + tB) >> shift; \ 81 blk[3 * step] = (int)( t0 + t7 - t9 + tB) >> shift; \ 82 blk[4 * step] = (int)(-(t0 + t7) - t9 + tB) >> shift; \ 85 blk[7 * step] = (int)(-(t1 + t6) + t9 + tB) >> shift; \
|
H A D | fic.c | 102 const unsigned tB = (blk[0 * step] + blk[4 * step]) * 32768 + rnd; in fic_idct() local 103 blk[0 * step] = (int)( t4 + t9 + tB) >> shift; in fic_idct() 106 blk[3 * step] = (int)( t5 - t9 + tB) >> shift; in fic_idct() 107 blk[4 * step] = (int)( -t5 - t9 + tB) >> shift; in fic_idct() 110 blk[7 * step] = (int)( -t4 + t9 + tB) >> shift; in fic_idct()
|
H A D | mv30.c | 121 const unsigned tB = blk[1 * step] - blk[7 * step]; in idct_1d() local 123 const unsigned tD = (int)((tB + t9) * 473U) >> 8; in idct_1d() 126 const unsigned t10 = (((int)(tB * 277U) >> 8) - tD) + tF; in idct_1d()
|
H A D | clearvideo.c | 145 const int tB = (int)(181U * (t9 - (t1 - t3)) + 0x80) >> 8; \ 150 blk[2 * step] = (t7 - t4 + tB) >> shift; \ 153 blk[5 * step] = (t7 - t4 - tB) >> shift; \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMConstantIslandPass.cpp | 735 UOpc = ARM::tB; in initializeFunctionInfo() 739 case ARM::tB: in initializeFunctionInfo() 909 unsigned Opc = isThumb ? (isThumb2 ? ARM::t2B : ARM::tB) : ARM::B; in splitBlockBeforeInstr() 1094 if (PredMI->getOpcode() == ARM::B || PredMI->getOpcode() == ARM::tB in BBIsJumpedOver() 1179 case ARM::tB: in getUnconditionalBrDisp() 1295 int UncondBr = isThumb ? ((isThumb2) ? ARM::t2B : ARM::tB) : ARM::B; in createNewWater() 1830 NewOpc = ARM::tB; in optimizeThumb2Branches() 2441 BuildMI(NewBB, DebugLoc(), TII->get(ARM::tB)) in adjustJTTargetBlockForward()
|
H A D | ARMBaseInstrInfo.h | 488 return Opc == ARM::B || Opc == ARM::tB || Opc == ARM::t2B; in isUncondBranchOpcode()
|
H A D | Thumb1FrameLowering.cpp | 619 if (MBBI != MBB.end() && MBBI->getOpcode() != ARM::tB) in emitPopSpecialFixUp()
|
H A D | ARMAsmPrinter.cpp | 1893 EmitToStreamer(*OutStreamer, MCInstBuilder(ARM::tB)
|
H A D | ARMBaseInstrInfo.cpp | 437 ? ARM::B : (AFI->isThumb2Function() ? ARM::t2B : ARM::tB); in insertBranch() 2137 if (Opc == ARM::tB) in getMatchingCondBranchOpcode()
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_peephole.cpp | 1232 Value *tA, *tB; in opnd() local 1244 tB = bld.getSSA(); in opnd() 1248 bld.mkOp2(OP_SUB, TYPE_U32, tB, i->getSrc(0), tA); in opnd() 1251 bld.mkOp2(OP_SHR, TYPE_U32, tA, tB, bld.mkImm(r)); in opnd() 1253 tA = tB; in opnd() 1254 tB = s ? bld.getSSA() : i->getDef(0); in opnd() 1255 newi = bld.mkOp2(OP_ADD, TYPE_U32, tB, mul->getDef(0), tA); in opnd() 1257 bld.mkOp2(OP_SHR, TYPE_U32, i->getDef(0), tB, bld.mkImm(s)); in opnd() 1266 LValue *tA, *tB; in opnd() local 1278 tB in opnd() [all...] |
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | lossless_enc_sse2.c | 491 const __m128i tB = _mm_loadu_si128((const __m128i*)&(B)); \ 494 Average2_m128i(&tA, &tB, &pred); \
|
/third_party/ffmpeg/libpostproc/ |
H A D | postprocess_altivec_template.c | 703 const vector signed int tB = vec_sl(vec_nor(zero, sumB), vuint32_16); in dering_altivec() local 706 const vector signed int t2B = vec_or(sumB, tB); in dering_altivec()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMAsmBackend.cpp | 209 case ARM::tB: in getRelaxedOpcode() 236 // Relaxing tB to t2B. tB has a signed 12-bit displacement with the in reasonForFixupRelaxation()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/AsmParser/ |
H A D | ARMAsmParser.cpp | 5571 case ARM::tB: in cvtThumbBranches() 5585 case ARM::tBcc: Inst.setOpcode(ARM::tB); break; in cvtThumbBranches() 5593 case ARM::tB: in cvtThumbBranches() 5595 Inst.setOpcode(Cond == ARMCC::AL ? ARM::tB : ARM::tBcc); in cvtThumbBranches() 5606 // classify tB as either t2B or t1B based on range of immediate operand in cvtThumbBranches() 5607 case ARM::tB: { in cvtThumbBranches() 7747 case ARM::tB: in validateInstruction() 9902 case ARM::tB: in processInstruction() 9924 // If the conditional is AL, we really want tB. in processInstruction() 9926 Inst.setOpcode(ARM::tB); in processInstruction() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Disassembler/ |
H A D | ARMDisassembler.cpp | 794 case ARM::tB: in AddThumbPredicate()
|