Lines Matching refs:dst
28 Dst dst;
29 memcpy(&dst, &src, sizeof(Src));
30 return dst;
558 auto dst = (double*)ptr;
559 if (tail > 0) { _mm_storel_pd(dst+0, _01); }
560 if (tail > 1) { _mm_storeh_pd(dst+1, _01); }
561 if (tail > 2) { _mm_storel_pd(dst+2, _23); }
562 if (tail > 3) { _mm_storeh_pd(dst+3, _23); }
563 if (tail > 4) { _mm_storel_pd(dst+4, _45); }
564 if (tail > 5) { _mm_storeh_pd(dst+5, _45); }
565 if (tail > 6) { _mm_storel_pd(dst+6, _67); }
855 auto dst = (double*)ptr;
856 if ( true ) { _mm_storel_pd(dst + 0, _mm_unpacklo_epi32(rg, ba)); }
857 if (tail > 1) { _mm_storeh_pd(dst + 1, _mm_unpacklo_epi32(rg, ba)); }
858 if (tail > 2) { _mm_storel_pd(dst + 2, _mm_unpackhi_epi32(rg, ba)); }
1175 SI void store(T* dst, V v, size_t tail) {
1180 case 7: dst[6] = v[6]; [[fallthrough]];
1181 case 6: dst[5] = v[5]; [[fallthrough]];
1182 case 5: dst[4] = v[4]; [[fallthrough]];
1183 case 4: memcpy(dst, &v, 4*sizeof(T)); break;
1184 case 3: dst[2] = v[2]; [[fallthrough]];
1185 case 2: memcpy(dst, &v, 2*sizeof(T)); break;
1186 case 1: memcpy(dst, &v, 1*sizeof(T)); break;
1191 sk_unaligned_store(dst, v);
1466 // 2. light src, dark dst?
1467 // 3. light src, light dst?
1584 U32 dst = load<U32>(ptr, tail);
1585 dr = cast((dst ) & 0xff);
1586 dg = cast((dst >> 8) & 0xff);
1587 db = cast((dst >> 16) & 0xff);
1588 da = cast((dst >> 24) );
1599 dst = to_unorm(r, 1, 255)
1603 store(ptr, dst, tail);
1738 // Derive alpha's coverage from rgb coverage and the values of src and dst alpha.
3930 // Derive alpha's coverage from rgb coverage and the values of src and dst alpha.