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

12

/external/mesa3d/src/mesa/main/
H A Dmacros.h208 #define ZERO_4V( DST ) (DST)[0] = (DST)[1] = (DST)[2] = (DST)[3] = 0
229 #define COPY_4V( DST, SRC ) \
231 (DST)[0] = (SRC)[0]; \
232 (DST)[1] = (SRC)[1]; \
233 (DST)[2] = (SRC)[2]; \
234 (DST)[
[all...]
/external/bison/lib/
H A Dbbitset.h161 #define BITSET_CHECK2_(DST, SRC) \
162 if (!BITSET_COMPATIBLE_ (DST, SRC)) abort ();
164 #define BITSET_CHECK3_(DST, SRC1, SRC2) \
165 if (!BITSET_COMPATIBLE_ (DST, SRC1) \
166 || !BITSET_COMPATIBLE_ (DST, SRC2)) abort ();
168 #define BITSET_CHECK4_(DST, SRC1, SRC2, SRC3) \
169 if (!BITSET_COMPATIBLE_ (DST, SRC1) || !BITSET_COMPATIBLE_ (DST, SRC2) \
170 || !BITSET_COMPATIBLE_ (DST, SRC3)) abort ();
173 /* Redefine number of bits in bitset DST
[all...]
H A Dbitset.h192 /* DST = ~0. */
193 #define bitset_ones(DST) BITSET_ONES_ (DST)
195 /* DST = 0. */
196 #define bitset_zero(DST) BITSET_ZERO_ (DST)
200 /* DST = SRC. */
201 #define bitset_copy(DST, SRC) BITSET_COPY_ (DST, SRC)
203 /* Return 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 Ddec.c161 #define DST(x, y) dst[(x) + (y) * BPS] macro
286 DST(0, 3) = AVG3(J, K, L);
287 DST(0, 2) = DST(1, 3) = AVG3(I, J, K);
288 DST(0, 1) = DST(1, 2) = DST(2, 3) = AVG3(X, I, J);
289 DST(0, 0) = DST(1, 1) = DST(
395 #undef DST macro
[all...]
H A Denc.c198 #define DST(x, y) dst[(x) + (y) * BPS] macro
361 DST(0, 3) = AVG3(J, K, L);
362 DST(0, 2) = DST(1, 3) = AVG3(I, J, K);
363 DST(0, 1) = DST(1, 2) = DST(2, 3) = AVG3(X, I, J);
364 DST(0, 0) = DST(1, 1) = DST(
482 #undef DST macro
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Dintrapred.c17 #define DST(x, y) dst[(x) + (y) * stride] macro
257 DST(0, 0) = AVG2(I, J);
258 DST(2, 0) = DST(0, 1) = AVG2(J, K);
259 DST(2, 1) = DST(0, 2) = AVG2(K, L);
260 DST(1, 0) = AVG3(I, J, K);
261 DST(3, 0) = DST(1, 1) = AVG3(J, K, L);
262 DST(
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_chan.h79 #define COPY_CHAN4(DST, SRC) COPY_4UBV(DST, SRC)
91 #define COPY_CHAN4(DST, SRC) COPY_4V(DST, SRC)
103 #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.cc47 void DateCache::ClearSegment(DST* segment) {
249 DST* temp = before_;
256 // before_->end_sec and before_->end_sec + default DST delta.
298 DST* temp = before_;
311 DST* before = NULL;
312 DST* after = NULL;
350 DateCache::DST* DateCache::LeastRecentlyUsedDST(DST* skip) {
351 DST* result = NULL;
/external/deqp/framework/common/
H A DtcuInterval.hpp174 #define TCU_SET_INTERVAL_BOUNDS(DST, VAR, SETLOW, SETHIGH) do \
177 ::tcu::Interval& VAR##_dst_ = (DST); \
195 #define TCU_SET_INTERVAL(DST, VAR, BODY) \
196 TCU_SET_INTERVAL_BOUNDS(DST, VAR, BODY, BODY)
198 //! Set the interval DST to the image of BODY on ARG, assuming that BODY on
200 //! upper and lower bound of ARG, and DST is set to the union of these
203 #define TCU_INTERVAL_APPLY_MONOTONE1(DST, PARAM, ARG, VAR, BODY) do \
206 ::tcu::Interval& VAR##_dst_ = (DST); \
229 #define TCU_INTERVAL_APPLY_MONOTONE2(DST, P0, A0, P1, A1, VAR, BODY) \
231 DST, P
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_math.h728 #define COPY_4V( DST, SRC ) \
730 (DST)[0] = (SRC)[0]; \
731 (DST)[1] = (SRC)[1]; \
732 (DST)[2] = (SRC)[2]; \
733 (DST)[3] = (SRC)[3]; \
739 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC)
744 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
746 (DST)[0] = (V0); \
747 (DST)[
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILISelLowering.cpp320 SDValue DST; local
322 DST = LowerSDIV64(Op, DAG);
324 DST = LowerSDIV32(Op, DAG);
327 DST = LowerSDIV24(Op, DAG);
329 DST = SDValue(Op.getNode(), 0);
331 return DST;
338 SDValue DST; local
340 DST = LowerSREM64(Op, DAG);
342 DST = LowerSREM32(Op, DAG);
344 DST
632 SDValue DST = DAG.getNode(ISD::XOR, DL, OVT, r0, r10); local
737 SDValue DST = DAG.getNode(ISD::XOR, DL, OVT, r0, r10); local
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_flatshade.c51 #define COPY_3FV( DST, SRC ) \
53 (DST)[0] = (SRC)[0]; \
54 (DST)[1] = (SRC)[1]; \
55 (DST)[2] = (SRC)[2]; \
/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 Dtokdefs.h40 DST = 258, enumerator in enum:yytokentype
161 #define DST 258 macro
H A Dgrammar.y273 %token DST SRC HOST GATEWAY
437 | DST { $$ = Q_DST; }
438 | SRC OR DST { $$ = Q_OR; }
439 | DST OR SRC { $$ = Q_OR; }
440 | SRC AND DST { $$ = Q_AND; }
441 | DST AND SRC { $$ = Q_AND; }
/external/iproute2/examples/
H A Dcbq.init-v0.7.3811 SRC=${rule%%,*}; DST=${rule##*,}
816 DADDR=${DST%%:*}; DTEMP=${DST##*:}
817 [ "$DADDR" = "$DST" ] && DTEMP=""
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_blend.c73 #define VEC4_COPY(DST, SRC) \
75 DST[0] = SRC[0]; \
76 DST[1] = SRC[1]; \
77 DST[2] = SRC[2]; \
78 DST[3] = SRC[3]; \
81 #define VEC4_SCALAR(DST, SRC) \
83 DST[0] = SRC; \
84 DST[1] = SRC; \
85 DST[2] = SRC; \
86 DST[
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_opcode_tmp.h54 OP12(DST)
/external/llvm/include/llvm/Analysis/
H A DRegionInfoImpl.h561 typedef typename DomFrontierT::DomSetType DST; typedef
563 DST *entrySuccs = &DF->find(entry)->second;
568 for (typename DST::iterator SI = entrySuccs->begin(),
578 DST *exitSuccs = &DF->find(exit)->second;
581 for (typename DST::iterator SI = entrySuccs->begin(), SE = entrySuccs->end();
592 for (typename DST::iterator SI = exitSuccs->begin(), SE = exitSuccs->end();
/external/mesa3d/src/mesa/drivers/osmesa/
H A Dosmesa.c132 #define PACK_RGBA(DST, R, G, B, A) \
134 (DST)[osmesa->rInd] = R; \
135 (DST)[osmesa->gInd] = G; \
136 (DST)[osmesa->bInd] = B; \
137 (DST)[osmesa->aInd] = A; \
/external/mesa3d/src/mesa/program/
H A Dprogram_lexer.l198 DST{szf}{cc}{sat} { return_opcode( 1, BIN_OP, DST, 3); }
/external/llvm/lib/Linker/
H A DLinkModules.cpp849 StructType *DST = DstM->getTypeByName(ST->getName().substr(0, DotPos)); local
850 if (!DST)
870 if (TypeMap.DstStructTypesSet.hasType(DST))
871 TypeMap.addTypeMapping(DST, ST);

Completed in 493 milliseconds

12