/external/mesa3d/src/mesa/main/ |
macros.h | 239 #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)[3] = (SRC)[3]; [all...] |
/external/libvpx/libvpx/vpx_dsp/ |
intrapred.c | 17 #define DST(x, y) dst[(x) + (y)*stride] 21 static INLINE void d207_predictor(uint8_t *dst, ptrdiff_t stride, int bs, 26 for (r = 0; r < bs - 1; ++r) dst[r * stride] = AVG2(left[r], left[r + 1]); 27 dst[(bs - 1) * stride] = left[bs - 1]; 28 dst++; 32 dst[r * stride] = AVG3(left[r], left[r + 1], left[r + 2]); 33 dst[(bs - 2) * stride] = AVG3(left[bs - 2], left[bs - 1], left[bs - 1]); 34 dst[(bs - 1) * stride] = left[bs - 1]; 35 dst++ [all...] |
/external/iproute2/include/ |
bpf_util.h | 70 #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/ |
frag-dst.sh | 6 DST OUT[0], IN[0], IN[0]
|
/external/bcc/src/cc/ |
libbpf.h | 127 #define BPF_ALU64_REG(OP, DST, SRC) \ 130 .dst_reg = DST, \ 135 #define BPF_ALU32_REG(OP, DST, SRC) \ 138 .dst_reg = DST, \ 145 #define BPF_ALU64_IMM(OP, DST, IMM) \ 148 .dst_reg = DST, \ 153 #define BPF_ALU32_IMM(OP, DST, IMM) \ 156 .dst_reg = DST, \ 163 #define BPF_MOV64_REG(DST, SRC) \ 166 .dst_reg = DST, \ [all...] |
/external/mesa3d/src/gallium/tests/graw/vertex-shader/ |
vert-dst.sh | 9 DST OUT[1], IN[1], IN[0]
|
/external/webp/src/dsp/ |
dec.c | 30 dst[(x) + (y) * BPS] = clip_8b(dst[(x) + (y) * BPS] + ((v) >> 3)) 44 static void TransformOne_C(const int16_t* in, uint8_t* dst) { 63 // an input in [-2048, 2047] interval. We then need to add a dst value 79 dst += BPS; 84 static void TransformAC3_C(const int16_t* in, uint8_t* dst) { 99 static void TransformTwo_C(const int16_t* in, uint8_t* dst, int do_two) { 100 TransformOne_C(in, dst); 102 TransformOne_C(in + 16, dst + 4); 107 static void TransformUV_C(const int16_t* in, uint8_t* dst) { [all...] |
enc.c | 110 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3)) 117 uint8_t* dst) { 149 static void ITransform_C(const uint8_t* ref, const int16_t* in, uint8_t* dst, 151 ITransformOne(ref, in, dst); 153 ITransformOne(ref + 4, in + 16, dst + 4); 231 static WEBP_INLINE void Fill(uint8_t* dst, int value, int size) { 234 memset(dst + j * BPS, value, size); 238 static WEBP_INLINE void VerticalPred(uint8_t* dst, 242 for (j = 0; j < size; ++j) memcpy(dst + j * BPS, top, size); 244 Fill(dst, 127, size) [all...] |
enc_msa.c | 45 uint8_t* dst) { 69 ST4x4_UB(res0, res0, 3, 2, 1, 0, dst, BPS); 72 static void ITransform_MSA(const uint8_t* ref, const int16_t* in, uint8_t* dst, 74 ITransformOne(ref, in, dst); 76 ITransformOne(ref + 4, in + 16, dst + 4); 258 #define DST(x, y) dst[(x) + (y) * BPS] 262 static WEBP_INLINE void VE4(uint8_t* dst, const uint8_t* top) { // vertical 272 SW4(out, out, out, out, dst, BPS); 275 static WEBP_INLINE void HE4(uint8_t* dst, const uint8_t* top) { // horizonta [all...] |
/external/skia/experimental/tools/ |
web_to_skp | 27 DST="$3" 30 mkdir -p "$CRASH" "$DST" 32 printf 'chrome.gpuBenchmarking.printToSkPicture("%s");\nquit\n' "$DST" | \
|
web_to_mskp | 27 DST="$3" 32 printf 'chrome.gpuBenchmarking.printPagesToSkPictures("%s");\nquit\n' "$DST" | \
|
/external/skqp/experimental/tools/ |
web_to_skp | 27 DST="$3" 30 mkdir -p "$CRASH" "$DST" 32 printf 'chrome.gpuBenchmarking.printToSkPicture("%s");\nquit\n' "$DST" | \
|
web_to_mskp | 27 DST="$3" 32 printf 'chrome.gpuBenchmarking.printPagesToSkPictures("%s");\nquit\n' "$DST" | \
|
/external/mesa3d/src/mesa/swrast/ |
s_chan.h | 80 #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) 115 * \param dst pointer to destination GLchan[4] array. 118 #define UNCLAMPED_FLOAT_TO_RGBA_CHAN(dst, f) \ 120 UNCLAMPED_FLOAT_TO_CHAN((dst)[0], (f)[0]); \ 121 UNCLAMPED_FLOAT_TO_CHAN((dst)[1], (f)[1]); [all...] |
/external/v8/src/ |
date.h | 177 // In Egypt in 2010 they decided to suspend DST during Ramadan. This 178 // led to a short interval where DST is in effect from September 10 to 187 struct DST { 198 // Sets the before_ and the after_ segments from the DST cache such that 205 // Finds the least recently used segment from the DST cache that is not 207 DST* LeastRecentlyUsedDST(DST* skip); 214 inline void ClearSegment(DST* segment); 216 bool InvalidSegment(DST* segment) { 223 DST dst_[kDSTSize] [all...] |
/external/u-boot/scripts/ |
objdiff | 98 DST="`git rev-parse --short HEAD`" 101 DST="`git rev-parse --short $2`" 111 DSTD="$TMPD/$DST"
|
/external/python/httplib2/ |
Makefile | 13 DST = dist/httplib2-$(VERSION) 31 cp -r python2 $(DST) 32 cp -r python3 $(DST) 33 cp setup.py README.md MANIFEST.in CHANGELOG $(DST)
|
/external/deqp/framework/common/ |
tcuInterval.hpp | 203 #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, P0, A0, tmp2_, [all...] |
/development/build/tools/ |
mk_sources_zip.py | 37 self.DST = None 116 p.DST = args[1] 226 p.zipfile = p.DST + "_temp_dir" 233 p.zipfile = z = zipfile.ZipFile(p.DST, "w", zipfile.ZIP_DEFLATED) 245 shutil.move(os.path.join(p.zipfile, "_temp.zip"), p.DST) 250 print "%s: %d java files copied" % (p.DST, p.CNT_USED) 252 print "%s: %d java files ignored" % (p.DST, p.CNT_NOPKG)
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_math.h | 655 #define COPY_4V( DST, SRC ) \ 657 (DST)[0] = (SRC)[0]; \ 658 (DST)[1] = (SRC)[1]; \ 659 (DST)[2] = (SRC)[2]; \ 660 (DST)[3] = (SRC)[3]; \ 666 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC) 671 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \ 673 (DST)[0] = (V0); \ 674 (DST)[1] = (V1); [all...] |
/external/skia/platform_tools/android/bin/ |
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
|
/external/skqp/platform_tools/android/bin/ |
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
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
u_math.h | 864 #define COPY_4V( DST, SRC ) \ 866 (DST)[0] = (SRC)[0]; \ 867 (DST)[1] = (SRC)[1]; \ 868 (DST)[2] = (SRC)[2]; \ 869 (DST)[3] = (SRC)[3]; \ 875 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC) 880 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \ 882 (DST)[0] = (V0); \ 883 (DST)[1] = (V1); [all...] |
/bionic/tools/versioner/tests/preprocessor/ |
run.sh | 5 DST=$2
|
/bionic/tools/versioner/tests/preprocessor_extern_cpp/ |
run.sh | 5 DST=$2
|