Home
last modified time | relevance | path

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

12

/third_party/mesa3d/src/mesa/main/
H A Dmacros.h265 #define ZERO_4V( DST ) (DST)[0] = (DST)[1] = (DST)[2] = (DST)[3] = 0
286 #define COPY_4V( DST, SRC ) \
288 (DST)[0] = (SRC)[0]; \
289 (DST)[1] = (SRC)[1]; \
290 (DST)[2] = (SRC)[2]; \
291 (DST)[
[all...]
/third_party/libbpf/include/linux/
H A Dfilter.h8 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \
11 .dst_reg = DST, \
16 #define BPF_ALU32_IMM(OP, DST, IMM) \
19 .dst_reg = DST, \
24 #define BPF_ALU64_IMM(OP, DST, IMM) \
27 .dst_reg = DST, \
32 #define BPF_MOV64_IMM(DST, IMM) \
35 .dst_reg = DST, \
56 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \
59 .dst_reg = DST, \
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Ddec.c170 #define DST(x, y) dst[(x) + (y) * BPS] macro
302 DST(0, 3) = AVG3(J, K, L); in RD4_C()
303 DST(1, 3) = DST(0, 2) = AVG3(I, J, K); in RD4_C()
304 DST(2, 3) = DST(1, 2) = DST(0, 1) = AVG3(X, I, J); in RD4_C()
305 DST(3, 3) = DST(2, 2) = DST( in RD4_C()
412 #undef DST global() macro
[all...]
H A Denc.c347 #define DST(x, y) dst[(x) + (y) * BPS] macro
393 DST(0, 3) = AVG3(J, K, L); in RD4()
394 DST(0, 2) = DST(1, 3) = AVG3(I, J, K); in RD4()
395 DST(0, 1) = DST(1, 2) = DST(2, 3) = AVG3(X, I, J); in RD4()
396 DST(0, 0) = DST(1, 1) = DST( in RD4()
514 #undef DST global() 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); in VR4()
346 DST(1, 0) = DST(2, 2) = AVG2(A, B); in VR4()
347 DST(2, 0) = DST(3, 2) = AVG2(B, C); in VR4()
348 DST(3, 0) = AVG2(C, D); in VR4()
349 DST(0, 3) = AVG3(K, J, I); in VR4()
350 DST( in VR4()
430 #undef DST global() macro
[all...]
H A Denc_sse2.c703 #define DST(x, y) dst[(x) + (y) * BPS] macro
791 DST(0, 2) = AVG3(J, I, X); in VR4_SSE2()
792 DST(0, 3) = AVG3(K, J, I); in VR4_SSE2()
817 DST(3, 2) = (extra_out >> 0) & 0xff; in VL4_SSE2()
818 DST(3, 3) = (extra_out >> 8) & 0xff; in VL4_SSE2()
843 DST(0, 0) = AVG2(I, J); in HU4_SSE2()
844 DST(2, 0) = DST(0, 1) = AVG2(J, K); in HU4_SSE2()
845 DST(2, 1) = DST( in HU4_SSE2()
889 #undef DST global() macro
[all...]
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 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...]
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 Drescaler_neon.c27 #define LOAD_32x4(SRC, DST) const uint32x4_t DST = vld1q_u32((SRC))
32 #define STORE_32x8(SRC0, SRC1, DST) do { \
33 vst1q_u32((DST) + 0, SRC0); \
34 vst1q_u32((DST) + 4, SRC1); \
/third_party/ltp/include/lapi/
H A Dbpf.h480 #define BPF_ALU64_REG(OP, DST, SRC) \
483 .dst_reg = DST, \
488 #define BPF_ALU32_REG(OP, DST, SRC) \
491 .dst_reg = DST, \
496 #define BPF_ALU64_IMM(OP, DST, IMM) \
499 .dst_reg = DST, \
504 #define BPF_ALU32_IMM(OP, DST, IMM) \
507 .dst_reg = DST, \
512 #define BPF_MOV64_REG(DST, SRC) \
515 .dst_reg = DST, \
[all...]
/third_party/node/deps/openssl/openssl/crypto/seed/
H A Dseed_local.h75 # define XOR_SEEDBLOCK(DST, SRC) \
76 ((DST))[0] ^= ((SRC))[0]; \
77 ((DST))[1] ^= ((SRC))[1]; \
78 ((DST))[2] ^= ((SRC))[2]; \
79 ((DST))[3] ^= ((SRC))[3]
81 # define MOV_SEEDBLOCK(DST, SRC) \
82 ((DST))[0] = ((SRC))[0]; \
83 ((DST))[1] = ((SRC))[1]; \
84 ((DST))[2] = ((SRC))[2]; \
85 ((DST))[
[all...]
/third_party/openssl/crypto/seed/
H A Dseed_local.h75 # define XOR_SEEDBLOCK(DST, SRC) \
76 ((DST))[0] ^= ((SRC))[0]; \
77 ((DST))[1] ^= ((SRC))[1]; \
78 ((DST))[2] ^= ((SRC))[2]; \
79 ((DST))[3] ^= ((SRC))[3]
81 # define MOV_SEEDBLOCK(DST, SRC) \
82 ((DST))[0] = ((SRC))[0]; \
83 ((DST))[1] = ((SRC))[1]; \
84 ((DST))[2] = ((SRC))[2]; \
85 ((DST))[
[all...]
/third_party/node/deps/v8/src/date/
H A Ddate.h173 // In Egypt in 2010 they decided to suspend DST during Ramadan. This
174 // led to a short interval where DST is in effect from September 10 to
183 struct DST { struct in v8::internal::DateCache
194 // Sets the before_ and the after_ segments from the DST cache such that
201 // Finds the least recently used segment from the DST cache that is not
203 DST* LeastRecentlyUsedDST(DST* skip);
210 inline void ClearSegment(DST* segment);
212 bool InvalidSegment(DST* segment) { in InvalidSegment()
219 DST dst
[all...]
H A Ddate.cc75 void DateCache::ClearSegment(DST* segment) { in ClearSegment()
225 // The following shows that using DST for (t - LocalTZA - hour) produces in GetLocalOffsetFromOS()
227 // DST) and the timezone offset is assumed to have no historical change. in GetLocalOffsetFromOS()
229 // DST) is different from the current LocalTZA (no DST). For instance, in GetLocalOffsetFromOS()
233 // Consider transition to DST at local time L1. in GetLocalOffsetFromOS()
237 // Transitioning to DST moves local clock one hour forward L1 => L2, so in GetLocalOffsetFromOS()
241 // Note that DST(U0 - hour) = 0, DST(U0) = 0, DST(U in GetLocalOffsetFromOS()
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuInterval.hpp232 #define TCU_SET_INTERVAL_BOUNDS(DST, VAR, SETLOW, SETHIGH) do \
236 ::tcu::Interval& VAR##_dst_ = (DST); \
254 #define TCU_SET_INTERVAL(DST, VAR, BODY) \
255 TCU_SET_INTERVAL_BOUNDS(DST, VAR, BODY, BODY)
257 //! Set the interval DST to the image of BODY on ARG, assuming that BODY on
259 //! upper and lower bound of ARG, and DST is set to the union of these
262 #define TCU_INTERVAL_APPLY_MONOTONE1(DST, PARAM, ARG, VAR, BODY) do \
265 ::tcu::Interval& VAR##_dst_ = (DST); \
288 #define TCU_INTERVAL_APPLY_MONOTONE2(DST, P0, A0, P1, A1, VAR, BODY) \
290 DST, P
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvp9dsp_template.c781 #define DST(x, y) dst[(x) + (y) * stride] macro
792 DST(0,0) = (a0 + a1 * 2 + a2 + 2) >> 2; in diag_downleft_4x4_c()
793 DST(1,0) = DST(0,1) = (a1 + a2 * 2 + a3 + 2) >> 2; in diag_downleft_4x4_c()
794 DST(2,0) = DST(1,1) = DST(0,2) = (a2 + a3 * 2 + a4 + 2) >> 2; in diag_downleft_4x4_c()
795 DST(3,0) = DST(2,1) = DST( in diag_downleft_4x4_c()
1076 #undef DST global() macro
[all...]
H A Dme_cmp.c696 DST(0, a0 + a1); \
697 DST(1, a4 + (a7 >> 2)); \
698 DST(2, a2 + (a3 >> 1)); \
699 DST(3, a5 + (a6 >> 2)); \
700 DST(4, a0 - a1); \
701 DST(5, a6 - (a5 >> 2)); \
702 DST(6, (a2 >> 1) - a3); \
703 DST(7, (a4 >> 2) - a7); \
715 #define DST(x, v) dct[i][x] = v in dct264_sad8x8_c() macro
719 #undef DST in dct264_sad8x8_c() macro
722 #define DST dct264_sad8x8_c() macro
726 #undef DST dct264_sad8x8_c() macro
[all...]
/third_party/mesa3d/src/util/
H A Du_math.h731 #define COPY_4V( DST, SRC ) \
733 (DST)[0] = (SRC)[0]; \
734 (DST)[1] = (SRC)[1]; \
735 (DST)[2] = (SRC)[2]; \
736 (DST)[3] = (SRC)[3]; \
742 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC)
747 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
749 (DST)[0] = (V0); \
750 (DST)[
[all...]
/third_party/skia/platform_tools/android/bin/
H A Dandroid_build_universal_viewer44 DST=platform_tools/android/apps/$APP/src/main/libs/$NATIVE
45 mkdir -p $DST
46 cp -a $BUILD/$LIB $DST/$LIB
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DAMDHSAKernelDescriptor.h42 #define AMDHSA_BITS_SET(DST, MSK, VAL) \
43 DST &= ~MSK; \
44 DST |= ((VAL << MSK ## _SHIFT) & MSK)
/third_party/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...]
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/
H A DBlendMode.java13 DST(2), enum constant
/third_party/ffmpeg/libavfilter/
H A Dvf_cropdetect.c176 #define FIND(DST, FROM, NOEND, INC, STEP0, STEP1, LEN) \ in filter_frame()
181 DST = last_y;\ in filter_frame()
/third_party/python/Lib/test/test_zoneinfo/
H A Dtest_zoneinfo.py589 DST = ZoneOffset("DST", ONE_H, ONE_H)
591 ZoneTransition(datetime(1970, 1, 1), DST, DST),
610 self.assertEqual(dt.tzname(), DST.tzname)
611 self.assertEqual(dt.utcoffset(), DST.utcoffset)
612 self.assertEqual(dt.dst(), DST.dst)
616 DST = ZoneOffset("DST", 2 * ONE_H, ONE_H)
621 ZoneTransition(datetime(year, 3, 1, 2), STD, DST)
[all...]

Completed in 25 milliseconds

12