/external/valgrind/VEX/priv/ |
guest_amd64_toIR.c | 2989 IRTemp dst1 = newTemp(ty); local 3139 IRTemp dst1 = newTemp(ty); local 3369 IRTemp dst1 = newTemp(ty); local 3520 IRTemp dst1 = newTemp(ty); local 3634 IRTemp dst1 = newTemp(ty); local 4116 IRTemp dst1, src, dst0; local [all...] |
guest_x86_toIR.c | 1837 IRTemp dst1 = newTemp(ty); local 1950 IRTemp dst1 = newTemp(ty); local 2153 IRTemp dst1 = newTemp(ty); local 2291 IRTemp dst1 = newTemp(ty); local 2402 IRTemp dst1 = newTemp(ty); local 2813 IRTemp dst1, src, dst0; local [all...] |
/external/mesa3d/src/mesa/main/ |
image.c | 524 GLubyte (*dst1)[4] = (GLubyte (*)[4]) (useTemp ? tempBuffer : dst); 528 dst1[i][RCOMP] = USHORT_TO_UBYTE(src2[i][RCOMP]); 529 dst1[i][GCOMP] = USHORT_TO_UBYTE(src2[i][GCOMP]); 530 dst1[i][BCOMP] = USHORT_TO_UBYTE(src2[i][BCOMP]); 531 dst1[i][ACOMP] = USHORT_TO_UBYTE(src2[i][ACOMP]); 557 GLubyte (*dst1)[4] = (GLubyte (*)[4]) (useTemp ? tempBuffer : dst); 561 _mesa_unclamped_float_rgba_to_ubyte(dst1[i], src4[i]);
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/transform/ |
transform.go | 117 // dst[dst0:dst1] contains bytes that have been transformed by t but 120 dst0, dst1 int 151 if r.dst0 != r.dst1 { 152 n = copy(p, r.dst[r.dst0:r.dst1]) 154 if r.dst0 == r.dst1 && r.transformComplete { 168 r.dst1, n, err = r.t.Transform(r.dst, r.src[r.src0:r.src1], r.err == io.EOF) 180 case err == ErrShortDst && (r.dst1 != 0 || n != 0):
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/text/transform/ |
transform.go | 117 // dst[dst0:dst1] contains bytes that have been transformed by t but 120 dst0, dst1 int 151 if r.dst0 != r.dst1 { 152 n = copy(p, r.dst[r.dst0:r.dst1]) 154 if r.dst0 == r.dst1 && r.transformComplete { 168 r.dst1, n, err = r.t.Transform(r.dst, r.src[r.src0:r.src1], r.err == io.EOF) 180 case err == ErrShortDst && (r.dst1 != 0 || n != 0):
|
/external/icu/icu4c/source/test/intltest/ |
tzrulets.cpp | 568 int32_t offset1, dst1; local 573 rbtz->getOffset(times[i], FALSE, offset1, dst1, status); 581 if (offset1 != offset2 || dst1 != dst2) { 829 int32_t raw1, raw2, dst1, dst2; local 830 tz->getOffset(startTime, FALSE, raw1, dst1, status); 835 if (raw1 + dst1 != raw2 + dst2) { 919 int32_t raw1, raw2, dst1, dst2; local 1012 int32_t raw1, dst1; local 1184 int32_t raw0, dst0, raw1, dst1; local 2537 int32_t raw1, raw2, dst1, dst2; local [all...] |
/external/vixl/src/aarch64/ |
logic-aarch64.cc | 428 LogicVRegister dst1, 431 dst1.ClearForWrite(vform); 436 dst1.ReadUintFromMem(vform, i, addr1); 445 LogicVRegister dst1, 449 dst1.ClearForWrite(vform); 452 dst1.ReadUintFromMem(vform, index, addr1); 458 LogicVRegister dst1, 461 dst1.ClearForWrite(vform); 465 dst1.ReadUintFromMem(vform, i, addr); 472 LogicVRegister dst1, [all...] |
macro-assembler-aarch64.cc | 2033 const CPURegister& dst1 = registers.PopLowestIndex(); local 2342 const CPURegister& dst1 = registers.PopLowestIndex(); local [all...] |
/external/libvpx/libvpx/vp8/common/mips/msa/ |
idct_msa.c | 121 v8i16 vec, res0, res1, res2, res3, dst0, dst1; local 132 PCKEV_B2_SH(res1, res0, res3, res2, dst0, dst1); 133 dst0 = (v8i16)__msa_pckev_w((v4i32)dst1, (v4i32)dst0);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXInstrInfo.td | [all...] |
/external/v8/src/arm64/ |
macro-assembler-arm64.cc | 895 void MacroAssembler::Pop(const CPURegister& dst0, const CPURegister& dst1, 899 DCHECK(!AreAliased(dst0, dst1, dst2, dst3)); 900 DCHECK(AreSameSizeAndType(dst0, dst1, dst2, dst3)); 903 int count = 1 + dst1.IsValid() + dst2.IsValid() + dst3.IsValid(); 906 PopHelper(count, size, dst0, dst1, dst2, dst3); 911 void MacroAssembler::Pop(const CPURegister& dst0, const CPURegister& dst1, 917 DCHECK(!AreAliased(dst0, dst1, dst2, dst3, dst4, dst5, dst6, dst7)); 918 DCHECK(AreSameSizeAndType(dst0, dst1, dst2, dst3, dst4, dst5, dst6, dst7)); 924 PopHelper(4, size, dst0, dst1, dst2, dst3); 1021 const CPURegister& dst1 = registers.PopLowestIndex(); local 2705 const CPURegister& dst1 = saved_fp_regs.PopHighestIndex(); local [all...] |
/prebuilts/go/darwin-x86/src/image/draw/ |
draw_test.go | 457 dst1 := image.NewPaletted(b, cgaPalette) 459 d.Draw(embeddedPaletted{dst1}, b, src, image.Point{}) 462 if !eq(dst0.At(x, y), dst1.At(x, y)) { 464 dName, x, y, dst0.At(x, y), dst1.At(x, y))
|
/prebuilts/go/linux-x86/src/image/draw/ |
draw_test.go | 457 dst1 := image.NewPaletted(b, cgaPalette) 459 d.Draw(embeddedPaletted{dst1}, b, src, image.Point{}) 462 if !eq(dst0.At(x, y), dst1.At(x, y)) { 464 dName, x, y, dst0.At(x, y), dst1.At(x, y))
|
/external/opencv/cv/src/ |
cvpyramids.cpp | 300 type *dst1; \ 313 dst1 = dst + dststep; \ 394 dst1[x] = (type)_pu_scale_( PU_FILTER_ZI( row1[x], row2[x] )); \ 403 dst1[x] = (type)_pu_scale_( PU_RB_ZI( row1[x] )); \ 412 dst1[x] = (type)_pu_scale_( PU_LT_ZI( row0[x], row1[x] )); \ 418 dst1[x] = (type)_pu_scale_( PU_SINGULAR_ZI( row0[x] )); \ [all...] |
/external/llvm/lib/Target/XCore/ |
XCoreInstrInfo.td | 519 def LADD_l5r : _FL5R<0b000001, (outs GRRegs:$dst1, GRRegs:$dst2), 521 "ladd $dst2, $dst1, $src1, $src2, $src3", 524 def LSUB_l5r : _FL5R<0b000010, (outs GRRegs:$dst1, GRRegs:$dst2), 526 "lsub $dst2, $dst1, $src1, $src2, $src3", []>; 528 def LDIVU_l5r : _FL5R<0b000000, (outs GRRegs:$dst1, GRRegs:$dst2), 530 "ldivu $dst1, $dst2, $src3, $src1, $src2", []>; 535 0b00000, (outs GRRegs:$dst1, GRRegs:$dst2), 537 "lmul $dst1, $dst2, $src1, $src2, $src3, $src4", []>; [all...] |
/external/swiftshader/third_party/subzero/unittest/AssemblerX8664/ |
XmmArith.cpp | 82 #define TestArithSS(FloatSize, Src, Dst0, Dst1) \ 85 TestArithSSXmmAddr(FloatSize, 2.0, Dst1, 20.0, addss, +); \ 87 TestArithSSXmmAddr(FloatSize, 4.0, Dst1, 40.0, subss, -); \ 89 TestArithSSXmmAddr(FloatSize, 6.0, Dst1, 60.0, mulss, *); \ 91 TestArithSSXmmAddr(FloatSize, 8.0, Dst1, 80.0, divss, / ); \ 94 #define TestImpl(Src, Dst0, Dst1) \ 96 TestArithSS(32, Src, Dst0, Dst1); \ 97 TestArithSS(64, Src, Dst0, Dst1); \ [all...] |
/external/v8/src/crankshaft/ia32/ |
lithium-gap-resolver-ia32.cc | 441 Operand dst1 = cgen_->HighOperand(destination); local 446 __ mov(dst1, tmp);
|
/external/v8/src/crankshaft/x87/ |
lithium-gap-resolver-x87.cc | 344 Operand dst1 = cgen_->HighOperand(destination); local 348 __ mov(dst1, tmp);
|
/external/mesa3d/src/amd/vulkan/ |
radv_meta_blit.c | 465 flip_coords(unsigned *src0, unsigned *src1, unsigned *dst0, unsigned *dst1) 475 if (*dst0 > *dst1) { 477 *dst0 = *dst1; 478 *dst1 = tmp; [all...] |
/external/webp/src/dsp/ |
lossless_enc_sse2.c | 401 const __m128i dst1 = _mm_unpackhi_epi16(in_lo, ff); local 406 _mm_storeu_si128((__m128i*)&dst[4], dst1); 421 const __m128i dst1 = _mm_unpackhi_epi16(pack, ff); local 423 _mm_storeu_si128((__m128i*)&dst[4], dst1);
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
idct32x32_msa.c | 700 v16u8 dst0, dst1, dst2, dst3, tmp0, tmp1, tmp2, tmp3; local 710 LD_UB2(dst, 16, dst0, dst1); 714 UNPCK_UB_SH(dst1, res1, res5);
|
/toolchain/binutils/binutils-2.27/gas/config/ |
tc-bfin.c | 2361 int dst1 = ((iw1 >> DSP32Alu_dst1_bits) & DSP32Alu_dst1_mask); local [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonInstrEnc.td | [all...] |
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
grpc_session_test.cc | 476 const DeviceAttributes& dst1 = cluster->devices()[2]; local 478 << " dst1 = " << dst1.name(); 482 // 2) a on 'src' sends to c on 'dst1'. 496 SetDevice(&def, c->name(), dst1.name()); [all...] |
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/ |
OpenWnnDictionaryImplJni.c | 99 NJ_UINT8 dst1, dst2, dst3; local 104 /* dst1 dst2 dst3 */ 113 dst1 = ( ( ( src[ i + 0 ] & 0x07 ) << 2 ) | ( ( src[ i + 1 ] & 0x3f ) >> 4 ) ) - 1; 117 dst_tmp[ 0 ] = 0xd8 | ( ( dst1 & 0x0c ) >> 2 ); 118 dst_tmp[ 1 ] = ( ( dst1 & 0x03 ) << 6 ) | ( ( dst2 & 0xfc ) >> 2 ); [all...] |