HomeSort by relevance Sort by last modified time
    Searched refs:DST (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /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/mesa3d/src/gallium/tests/graw/vertex-shader/
vert-dst.sh 9 DST OUT[1], IN[1], IN[0]
  /external/webp/src/dsp/
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...]
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_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...]
filters_mips_dsp_r2.c 36 #define DO_PREDICT_LINE(SRC, DST, LENGTH, INVERSE) do { \
38 uint8_t* pdst = (uint8_t*)(DST); \
49 "lbu %[temp1], -1(%[dst]) \n\t" \
58 "sb %[temp1], 0(%[dst]) \n\t" \
59 "sb %[temp2], 1(%[dst]) \n\t" \
60 "sb %[temp3], 2(%[dst]) \n\t" \
61 "sb %[temp4], 3(%[dst]) \n\t" \
65 " addiu %[dst], %[dst], 4 \n\t" \
73 "usw %[temp3], 0(%[dst]) \n\t"
    [all...]
  /external/skia/tools/skqp/
make_apk_list 10 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
make_universal_apk 85 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/
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 116 // 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(L2 - LocalTZA - hour)
    [all...]
date.cc 45 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;
  /frameworks/base/graphics/java/android/graphics/
PorterDuff.java 105 * <figcaption>{@link #DST Destination}</figcaption>
203 * <p>\(\alpha_{out} = \alpha_{dst}\)</p>
204 * <p>\(C_{out} = C_{dst}\)</p>
206 DST (2),
212 * <p>\(\alpha_{out} = \alpha_{src} + (1 - \alpha_{src}) * \alpha_{dst}\)</p>
213 * <p>\(C_{out} = C_{src} + (1 - \alpha_{src}) * C_{dst}\)</p>
221 * <p>\(\alpha_{out} = \alpha_{dst} + (1 - \alpha_{dst}) * \alpha_{src}\)</p>
222 * <p>\(C_{out} = C_{dst} + (1 - \alpha_{dst}) * C_{src}\)</p
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUtil.h 40 DST,
  /sdk/eclipse/scripts/
collect_sources_for_sdk.py 43 self.DST = None
92 p.DST = args[1]
96 elif not os.path.isdir(p.DST):
97 error = "%s is not a directory" % p.DST
149 dstdir = os.path.join(p.DST, pkg)
162 def _cp(p, src, dst):
164 print "cp", src, dst
166 shutil.copyfile(src, 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)
mk_sdk_repo_xml.sh 263 DST=$2
278 if [[ "${USED/$DST/}" == "$USED" ]]; then
279 USED="$USED $DST"
280 RESULT="$RESULT $DST $VALUE"
348 DST="$1"
350 DST="${SRC/*:/}"
436 <sdk:url>$DST</sdk:url>
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 654 #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)[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
  /external/skqp/tools/skqp/
make_universal_apk 75 DST=platform_tools/android/apps/$APP/src/main/libs/$NATIVE
76 mkdir -p $DST
77 cp -a $BUILD/$LIB $DST/$LIB
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
PorterDuffUtility.java 67 case DST:
68 return AlphaComposite.getInstance(AlphaComposite.DST, alpha1);

Completed in 1008 milliseconds

1 2 3 4 5 6