Searched refs:DST (Results 1 - 25 of 63) sorted by relevance

123

/external/mesa3d/src/mesa/main/
H A Dmacros.h239 #define ZERO_4V( DST ) (DST)[0] = (DST)[1] = (DST)[2] = (DST)[3] = 0
260 #define COPY_4V( DST, SRC ) \
262 (DST)[0] = (SRC)[0]; \
263 (DST)[1] = (SRC)[1]; \
264 (DST)[2] = (SRC)[2]; \
265 (DST)[
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Dintrapred.c17 #define DST(x, y) dst[(x) + (y)*stride] macro
290 DST(0, 0) = AVG2(I, J);
291 DST(2, 0) = DST(0, 1) = AVG2(J, K);
292 DST(2, 1) = DST(0, 2) = AVG2(K, L);
293 DST(1, 0) = AVG3(I, J, K);
294 DST(3, 0) = DST(1, 1) = AVG3(J, K, L);
295 DST(
[all...]
/external/iproute2/include/
H A Dbpf_util.h70 #define BPF_ALU64_REG(OP, DST, SRC) \
73 .dst_reg = DST, \
78 #define BPF_ALU32_REG(OP, DST, SRC) \
81 .dst_reg = DST, \
88 #define BPF_ALU64_IMM(OP, DST, IMM) \
91 .dst_reg = DST, \
96 #define BPF_ALU32_IMM(OP, DST, IMM) \
99 .dst_reg = DST, \
106 #define BPF_MOV64_REG(DST, SRC) \
109 .dst_reg = DST, \
[all...]
/external/mesa3d/src/gallium/tests/graw/fragment-shader/
H A Dfrag-dst.sh6 DST OUT[0], IN[0], IN[0]
/external/mesa3d/src/gallium/tests/graw/vertex-shader/
H A Dvert-dst.sh9 DST OUT[1], IN[1], IN[0]
/external/webp/src/dsp/
H A Denc.c347 #define DST(x, y) dst[(x) + (y) * BPS] macro
393 DST(0, 3) = AVG3(J, K, L);
394 DST(0, 2) = DST(1, 3) = AVG3(I, J, K);
395 DST(0, 1) = DST(1, 2) = DST(2, 3) = AVG3(X, I, J);
396 DST(0, 0) = DST(1, 1) = DST(
514 #undef DST macro
[all...]
H A Ddec.c170 #define DST(x, y) dst[(x) + (y) * BPS] macro
302 DST(0, 3) = AVG3(J, K, L);
303 DST(1, 3) = DST(0, 2) = AVG3(I, J, K);
304 DST(2, 3) = DST(1, 2) = DST(0, 1) = AVG3(X, I, J);
305 DST(3, 3) = DST(2, 2) = DST(
412 #undef DST macro
[all...]
H A Denc_msa.c258 #define DST(x, y) dst[(x) + (y) * BPS] macro
345 DST(0, 0) = DST(1, 2) = AVG2(X, A);
346 DST(1, 0) = DST(2, 2) = AVG2(A, B);
347 DST(2, 0) = DST(3, 2) = AVG2(B, C);
348 DST(3, 0) = AVG2(C, D);
349 DST(0, 3) = AVG3(K, J, I);
350 DST(
430 #undef DST macro
[all...]
H A Dfilters_mips_dsp_r2.c36 #define DO_PREDICT_LINE(SRC, DST, LENGTH, INVERSE) do { \
38 uint8_t* pdst = (uint8_t*)(DST); \
109 #define DO_PREDICT_LINE_VERTICAL(SRC, PRED, DST, LENGTH, INVERSE) do { \
112 uint8_t* pdst = (uint8_t*)(DST); \
168 #define PREDICT_LINE_ONE_PASS(SRC, PRED, DST) do { \
176 : [pred]"r"((PRED)), [dst]"r"((DST)), [src]"r"((SRC)) \
H A Denc_mips_dsp_r2.c341 #define FILL_8_OR_16(DST, VALUE, SIZE) do { \
364 : [dst]"r"((DST)) \
369 #define VERTICAL_PRED(DST, TOP, SIZE) \
370 static WEBP_INLINE void VerticalPred##SIZE(uint8_t* (DST), \
374 for (j = 0; j < (SIZE); ++j) memcpy((DST) + j * BPS, (TOP), (SIZE)); \
376 FILL_8_OR_16((DST), 127, (SIZE)); \
385 #define HORIZONTAL_PRED(DST, LEFT, SIZE) \
386 static WEBP_INLINE void HorizontalPred##SIZE(uint8_t* (DST), \
391 memset((DST) + j * BPS, (LEFT)[j], (SIZE)); \
394 FILL_8_OR_16((DST), 12
[all...]
H A Drescaler_neon.c26 #define LOAD_32x4(SRC, DST) const uint32x4_t DST = vld1q_u32((SRC))
31 #define STORE_32x8(SRC0, SRC1, DST) do { \
32 vst1q_u32((DST) + 0, SRC0); \
33 vst1q_u32((DST) + 4, SRC1); \
H A Denc_sse2.c703 #define DST(x, y) dst[(x) + (y) * BPS] macro
791 DST(0, 2) = AVG3(J, I, X);
792 DST(0, 3) = AVG3(K, J, I);
817 DST(3, 2) = (extra_out >> 0) & 0xff;
818 DST(3, 3) = (extra_out >> 8) & 0xff;
843 DST(0, 0) = AVG2(I, J);
844 DST(2, 0) = DST(0, 1) = AVG2(J, K);
845 DST(2, 1) = DST(
889 #undef DST macro
[all...]
H A Ddec_mips_dsp_r2.c623 // DST[A * BPS] = TEMP0
624 // DST[B + C * BPS] = TEMP1
625 #define STORE_8_BYTES(TEMP0, TEMP1, A, B, C, DST) \
626 "usw %[" #TEMP0 "], " #A "*" XSTR(BPS) "(%[" #DST "]) \n\t" \
627 "usw %[" #TEMP1 "], " #B "+" #C "*" XSTR(BPS) "(%[" #DST "]) \n\t"
898 #define CLIP_8B_TO_DST(DST, TOP, SIZE) do { \
899 int dst_1 = ((int)(DST)[-1] << 16) + (DST)[-1]; \
924 : [top_1]"r"(top_1), [top]"r"((TOP)), [dst]"r"((DST)) \
929 #define CLIP_TO_DST(DST, SIZ
[all...]
/external/skia/tools/skqp/
H A Dmake_apk_list10 DST=$(mktemp)
12 cat > "$DST" << EOF
53 } >> "$DST"
55 printf '</body>\n</head>\n' >> "$DST"
59 echo 'gsutil -h "Content-Type:text/html" cp' \"$DST\" gs://skia-skqp/apklist
H A Dmake_universal_apk85 DST=platform_tools/android/apps/$APP/src/main/libs/$NATIVE
86 mkdir -p $DST
87 cp -a $BUILD/$LIB $DST/$LIB
/external/mesa3d/src/mesa/swrast/
H A Ds_chan.h80 #define COPY_CHAN4(DST, SRC) COPY_4UBV(DST, SRC)
92 #define COPY_CHAN4(DST, SRC) COPY_4V(DST, SRC)
104 #define COPY_CHAN4(DST, SRC) COPY_4V(DST, SRC)
/external/v8/src/
H A Ddate.h116 // the points were we transition to and from DST.
118 // The following shows that using DST for (t - LocalTZA - hour) produces
121 // Consider transition to DST at local time L1.
125 // Transitioning to DST moves local clock one hour forward L1 => L2, so
129 // Note that DST(U0 - hour) = 0, DST(U0) = 0, DST(U1) = 1.
130 // U0 = L0 - LocalTZA - DST(L0 - LocalTZA - hour),
131 // U1 = L1 - LocalTZA - DST(L1 - LocalTZA - hour),
132 // U1 = L2 - LocalTZA - DST(L
[all...]
H A Ddate.cc45 void DateCache::ClearSegment(DST* segment) {
261 DST* temp = before_;
268 // before_->end_sec and before_->end_sec + default DST delta.
310 DST* temp = before_;
323 DST* before = NULL;
324 DST* after = NULL;
362 DateCache::DST* DateCache::LeastRecentlyUsedDST(DST* skip) {
363 DST* result = NULL;
/external/deqp/framework/common/
H A DtcuInterval.hpp203 #define TCU_SET_INTERVAL_BOUNDS(DST, VAR, SETLOW, SETHIGH) do \
206 ::tcu::Interval& VAR##_dst_ = (DST); \
224 #define TCU_SET_INTERVAL(DST, VAR, BODY) \
225 TCU_SET_INTERVAL_BOUNDS(DST, VAR, BODY, BODY)
227 //! Set the interval DST to the image of BODY on ARG, assuming that BODY on
229 //! upper and lower bound of ARG, and DST is set to the union of these
232 #define TCU_INTERVAL_APPLY_MONOTONE1(DST, PARAM, ARG, VAR, BODY) do \
235 ::tcu::Interval& VAR##_dst_ = (DST); \
258 #define TCU_INTERVAL_APPLY_MONOTONE2(DST, P0, A0, P1, A1, VAR, BODY) \
260 DST, P
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.h654 #define COPY_4V( DST, SRC ) \
656 (DST)[0] = (SRC)[0]; \
657 (DST)[1] = (SRC)[1]; \
658 (DST)[2] = (SRC)[2]; \
659 (DST)[3] = (SRC)[3]; \
665 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC)
670 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
672 (DST)[0] = (V0); \
673 (DST)[
[all...]
/external/skqp/tools/skqp/
H A Dmake_universal_apk75 DST=platform_tools/android/apps/$APP/src/main/libs/$NATIVE
76 mkdir -p $DST
77 cp -a $BUILD/$LIB $DST/$LIB
/external/mesa3d/src/mesa/x86/
H A Dsse_xform4.S36 #define DST(i) REGOFF(i * 4, EDI) define
97 MOVAPS( XMM0, DST(0) ) /* ->D(3) | ->D(2) | ->D(1) | ->D(0) */
169 MOVAPS( XMM4, DST(0) ) /* ->D(3) | ->D(2) | ->D(1) | ->D(0) */
172 MOVSS( XMM4, DST(3) ) /* ->D(3) */
/external/libpcap/
H A Dgrammar.h48 DST = 258, enumerator in enum:yytokentype
170 #define DST 258 macro
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowPorterDuffColorFilterTest.java41 PorterDuffColorFilter dstFilter = new PorterDuffColorFilter(Color.RED, PorterDuff.Mode.DST);
/external/iproute2/examples/
H A Dcbq.init-v0.7.3810 SRC=${rule%%,*}; DST=${rule##*,}
815 DADDR=${DST%%:*}; DTEMP=${DST##*:}
816 [ "$DADDR" = "$DST" ] && DTEMP=""

Completed in 593 milliseconds

123