/third_party/mesa3d/src/mesa/main/ |
D | macros.h | 265 #define ZERO_4V( DST ) (DST)[0] = (DST)[1] = (DST)[2] = (DST)[3] = 0 argument 286 #define COPY_4V( DST, SRC ) \ argument 288 (DST)[0] = (SRC)[0]; \ 289 (DST)[1] = (SRC)[1]; \ 290 (DST)[2] = (SRC)[2]; \ 291 (DST)[3] = (SRC)[3]; \ 307 #define COPY_SZ_4V(DST, SZ, SRC) \ argument 310 case 4: (DST)[3] = (SRC)[3]; \ 312 case 3: (DST)[2] = (SRC)[2]; \ 314 case 2: (DST)[1] = (SRC)[1]; \ [all …]
|
/third_party/libbpf/include/linux/ |
D | filter.h | 8 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \ argument 11 .dst_reg = DST, \ 16 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument 19 .dst_reg = DST, \ 24 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument 27 .dst_reg = DST, \ 32 #define BPF_MOV64_IMM(DST, IMM) \ argument 35 .dst_reg = DST, \ 56 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \ argument 59 .dst_reg = DST, \ [all …]
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | enc.c | 347 #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(2, 2) = DST(3, 3) = AVG3(A, X, I); in RD4() 397 DST(1, 0) = DST(2, 1) = DST(3, 2) = AVG3(B, A, X); in RD4() 398 DST(2, 0) = DST(3, 1) = AVG3(C, B, A); in RD4() 399 DST(3, 0) = AVG3(D, C, B); in RD4() 411 DST(0, 0) = AVG3(A, B, C); in LD4() 412 DST(1, 0) = DST(0, 1) = AVG3(B, C, D); in LD4() [all …]
|
D | dec.c | 170 #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(1, 1) = DST(0, 0) = AVG3(A, X, I); in RD4_C() 306 DST(3, 2) = DST(2, 1) = DST(1, 0) = AVG3(B, A, X); in RD4_C() 307 DST(3, 1) = DST(2, 0) = AVG3(C, B, A); in RD4_C() 308 DST(3, 0) = AVG3(D, C, B); in RD4_C() 320 DST(0, 0) = AVG3(A, B, C); in LD4_C() 321 DST(1, 0) = DST(0, 1) = AVG3(B, C, D); in LD4_C() [all …]
|
D | enc_msa.c | 258 #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(0, 2) = AVG3(J, I, X); in VR4() 351 DST(0, 1) = DST(1, 3) = AVG3(I, X, A); in VR4() 352 DST(1, 1) = DST(2, 3) = AVG3(X, A, B); in VR4() 353 DST(2, 1) = DST(3, 3) = AVG3(A, B, C); in VR4() [all …]
|
D | enc_sse2.c | 703 #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(0, 2) = AVG2(K, L); in HU4_SSE2() 846 DST(1, 0) = AVG3(I, J, K); in HU4_SSE2() 847 DST(3, 0) = DST(1, 1) = AVG3(J, K, L); in HU4_SSE2() [all …]
|
D | dec_mips_dsp_r2.c | 625 #define STORE_8_BYTES(TEMP0, TEMP1, A, B, C, DST) \ argument 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 { \ argument 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, SIZE) do { \ argument 931 const uint8_t* top = (DST) - BPS; \ 934 CLIP_8B_TO_DST((DST), top, (SIZE)); \ 935 (DST) += BPS; \ [all …]
|
D | enc_mips_dsp_r2.c | 341 #define FILL_8_OR_16(DST, VALUE, SIZE) do { \ argument 364 : [dst]"r"((DST)) \ 369 #define VERTICAL_PRED(DST, TOP, SIZE) \ argument 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) \ argument 386 static WEBP_INLINE void HorizontalPred##SIZE(uint8_t* (DST), \ 391 memset((DST) + j * BPS, (LEFT)[j], (SIZE)); \ 394 FILL_8_OR_16((DST), 129, (SIZE)); \ [all …]
|
D | filters_mips_dsp_r2.c | 36 #define DO_PREDICT_LINE(SRC, DST, LENGTH, INVERSE) do { \ argument 38 uint8_t* pdst = (uint8_t*)(DST); \ 109 #define DO_PREDICT_LINE_VERTICAL(SRC, PRED, DST, LENGTH, INVERSE) do { \ argument 112 uint8_t* pdst = (uint8_t*)(DST); \ 168 #define PREDICT_LINE_ONE_PASS(SRC, PRED, DST) do { \ argument 176 : [pred]"r"((PRED)), [dst]"r"((DST)), [src]"r"((SRC)) \
|
D | rescaler_neon.c | 27 #define LOAD_32x4(SRC, DST) const uint32x4_t DST = vld1q_u32((SRC)) argument 32 #define STORE_32x8(SRC0, SRC1, DST) do { \ argument 33 vst1q_u32((DST) + 0, SRC0); \ 34 vst1q_u32((DST) + 4, SRC1); \
|
/third_party/tzdata/ |
D | zonenow.tab | 17 # then, if DST is used, by daylight saving UTC offset; 43 # -10/-09 - HST / HDT (North America DST) 52 # -09/-08 - AKST/AKDT (North America DST) 58 # -08/-07 - PST/PDT (North America DST) 64 # -07/-06 - MST/MDT (North America DST) 73 # -06/-05 (Chile DST) 76 # -06/-05 - CST/CDT (North America DST) 85 # -05/-04 - CST/CDT (Cuba DST) 88 # -05/-04 - EST/EDT (North America DST) 97 # -04/-03 (Chile DST) [all …]
|
D | NEWS | 8 zic no longer pretends to support indefinite-past DST. 37 DST rules that extend into the indefinite past - although these 40 This should not be a problem for realistic data, since DST was 50 zone with a DST schedule. In 2023d data this problem was visible 89 Fix predictions for DST transitions in Palestine in 2072-2075, 118 transition into a DST regime. Previously, it incorrectly assumed 119 DST was in effect before the transition too. (Thanks to Alois 179 Model Lebanon's DST chaos by reverting data to tzdb 2023a. 194 Egypt now uses DST again, from April through October. 196 Palestine delays the start of DST this year. [all …]
|
D | southamerica | 94 # DST was set to expire on March 5, not March 3, but since it was converted 101 # Argentina decided not to become one of the countries that go on or off DST. 105 # The law that claimed DST for Argentina was derogated by President Fernando 133 # A user (Leonardo Chaim) reported that Argentina will adopt DST.... 136 # that Argentina will use DST next year as well, from October to 140 # The last hurdle of Argentina DST is over, the proposal was approved in 149 # are quite possibly wrong, but are more likely than no DST at all. 153 # Argentina will start DST on Sunday October 19, 2008. 167 # Decree 1693/2008 applies Law 26.350 for the summer 2008/2009 establishing DST 172 # Decree 1705/2008 excepting 12 Provinces from applying DST in the summer [all …]
|
/third_party/ltp/include/lapi/ |
D | bpf.h | 480 #define BPF_ALU64_REG(OP, DST, SRC) \ argument 483 .dst_reg = DST, \ 488 #define BPF_ALU32_REG(OP, DST, SRC) \ argument 491 .dst_reg = DST, \ 496 #define BPF_ALU64_IMM(OP, DST, IMM) \ argument 499 .dst_reg = DST, \ 504 #define BPF_ALU32_IMM(OP, DST, IMM) \ argument 507 .dst_reg = DST, \ 512 #define BPF_MOV64_REG(DST, SRC) \ argument 515 .dst_reg = DST, \ [all …]
|
/third_party/node/deps/openssl/openssl/crypto/seed/ |
D | seed_local.h | 75 # define XOR_SEEDBLOCK(DST, SRC) \ argument 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) \ argument 82 ((DST))[0] = ((SRC))[0]; \ 83 ((DST))[1] = ((SRC))[1]; \ 84 ((DST))[2] = ((SRC))[2]; \ 85 ((DST))[3] = ((SRC))[3]
|
/third_party/openssl/crypto/seed/ |
D | seed_local.h | 75 # define XOR_SEEDBLOCK(DST, SRC) \ argument 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) \ argument 82 ((DST))[0] = ((SRC))[0]; \ 83 ((DST))[1] = ((SRC))[1]; \ 84 ((DST))[2] = ((SRC))[2]; \ 85 ((DST))[3] = ((SRC))[3]
|
/third_party/skia/tools/skqp/ |
D | run_apk.sh | 17 DST="$2" 19 printf '\n\nAPK = "%s"\nDST = "%s"\n\n' "$APK" "$DST" 33 adb shell am instrument $SKQP_ARGS -w org.skia.skqp 2>&1 | tee "$DST"/stdout 35 adb logcat -d TestRunner org.skia.skqp skia DEBUG '*:S' > "$DST"/logcat 37 ODIR="$(sed -n "$SED_CMD" "$DST"/logcat | head -1)" 39 if adb shell "test -d '$ODIR'"; then adb pull "$ODIR" "$DST"; fi
|
D | docker_run_apk.sh | 19 DST="$(mktemp -d "${TMPDIR:-/tmp}/skqp_emulated_test.XXXXXXXXXX")" 27 docker build -t android-skqp ./android-skqp/ > "$DST"/docker-build || exit 2 34 --volume="$DST":/DST \ 37 android-skqp > "$DST"/docker-run || exit 3 43 "${SKQP}/../../bin/sysopen" "$DST"/skqp_report_*/report.html
|
/third_party/node/deps/v8/src/date/ |
D | date.h | 183 struct DST { struct 203 DST* LeastRecentlyUsedDST(DST* skip); 210 inline void ClearSegment(DST* segment); 212 bool InvalidSegment(DST* segment) { in InvalidSegment() 219 DST dst_[kDSTSize]; 221 DST* before_; 222 DST* after_;
|
D | date.cc | 75 void DateCache::ClearSegment(DST* segment) { in ClearSegment() 345 DST* temp = before_; in DaylightSavingsOffsetInMs() 397 DST* temp = before_; in DaylightSavingsOffsetInMs() 408 DST* before = nullptr; in ProbeDST() 409 DST* after = nullptr; in ProbeDST() 447 DateCache::DST* DateCache::LeastRecentlyUsedDST(DST* skip) { in LeastRecentlyUsedDST() 448 DST* result = nullptr; in LeastRecentlyUsedDST()
|
/third_party/ffmpeg/libavcodec/ |
D | vp9dsp_template.c | 781 #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(1,2) = DST(0,3) = (a3 + a4 * 2 + a5 + 2) >> 2; in diag_downleft_4x4_c() 796 DST(3,1) = DST(2,2) = DST(1,3) = (a4 + a5 * 2 + a6 + 2) >> 2; in diag_downleft_4x4_c() 797 DST(3,2) = DST(2,3) = (a5 + a6 * 2 + a7 + 2) >> 2; in diag_downleft_4x4_c() 798 DST(3,3) = a7; // note: this is different from vp8 and such in diag_downleft_4x4_c() 835 DST(0,3) = (l1 + l2 * 2 + l3 + 2) >> 2; in diag_downright_4x4_c() 836 DST(0,2) = DST(1,3) = (l0 + l1 * 2 + l2 + 2) >> 2; in diag_downright_4x4_c() [all …]
|
/third_party/mesa3d/src/util/ |
D | u_math.h | 731 #define COPY_4V( DST, SRC ) \ argument 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) argument 747 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \ argument 749 (DST)[0] = (V0); \ 750 (DST)[1] = (V1); \ 751 (DST)[2] = (V2); \ [all …]
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuInterval.hpp | 232 #define TCU_SET_INTERVAL_BOUNDS(DST, VAR, SETLOW, SETHIGH) do \ argument 235 ::tcu::Interval& VAR##_dst_ = (DST); \ 253 #define TCU_SET_INTERVAL(DST, VAR, BODY) \ argument 254 TCU_SET_INTERVAL_BOUNDS(DST, VAR, BODY, BODY) 261 #define TCU_INTERVAL_APPLY_MONOTONE1(DST, PARAM, ARG, VAR, BODY) do \ argument 264 ::tcu::Interval& VAR##_dst_ = (DST); \ 287 #define TCU_INTERVAL_APPLY_MONOTONE2(DST, P0, A0, P1, A1, VAR, BODY) \ argument 289 DST, P0, A0, tmp2_, \ 292 #define TCU_INTERVAL_APPLY_MONOTONE3(DST, P0, A0, P1, A1, P2, A2, VAR, BODY) \ argument 294 DST, P0, A0, tmp3_, \
|
/third_party/skia/experimental/tools/ |
D | web_to_skp | 29 DST="$3" 33 mkdir -p "$CRASH" "$DST" 35 (sleep $SLP; printf 'chrome.gpuBenchmarking.printToSkPicture("%s");\nquit\n' "$DST") | \
|
/third_party/skia/platform_tools/android/bin/ |
D | android_build_universal_viewer | 44 DST=platform_tools/android/apps/$APP/src/main/libs/$NATIVE 45 mkdir -p $DST 46 cp -a $BUILD/$LIB $DST/$LIB
|