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

1 2 3 4 5

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
macros.h 208 #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)[3] = (SRC)[3];
    [all...]
  /external/mesa3d/src/mesa/main/
macros.h 208 #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)[3] = (SRC)[3];
    [all...]
  /external/bison/lib/
bbitset.h 161 #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...]
bitset.h 192 /* 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 & SRC == 0. *
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/fragment-shader/
frag-dst.sh 6 DST OUT[0], IN[0], IN[0]
  /external/mesa3d/src/gallium/tests/graw/fragment-shader/
frag-dst.sh 6 DST OUT[0], IN[0], IN[0]
  /external/chromium_org/third_party/libwebp/dsp/
dec.c 27 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
41 static void TransformOne(const int16_t* in, uint8_t* dst) {
60 // an input in [-2048, 2047] interval. We then need to add a dst value
76 dst += BPS;
81 static void TransformAC3(const int16_t* in, uint8_t* dst) {
95 static void TransformTwo(const int16_t* in, uint8_t* dst, int do_two) {
96 TransformOne(in, dst);
98 TransformOne(in + 16, dst + 4);
102 static void TransformUV(const int16_t* in, uint8_t* dst) {
    [all...]
enc.c 86 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
93 uint8_t* dst) {
125 static void ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst,
127 ITransformOne(ref, in, dst);
129 ITransformOne(ref + 4, in + 16, dst + 4);
198 #define DST(x, y) dst[(x) + (y) * BPS]
200 static WEBP_INLINE void Fill(uint8_t* dst, int value, int size) {
203 memset(dst + j * BPS, value, size);
207 static WEBP_INLINE void VerticalPred(uint8_t* dst,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/vertex-shader/
vert-dst.sh 9 DST OUT[1], IN[1], 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/
dec.c 27 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
41 static void TransformOne(const int16_t* in, uint8_t* dst) {
60 // an input in [-2048, 2047] interval. We then need to add a dst value
76 dst += BPS;
81 static void TransformAC3(const int16_t* in, uint8_t* dst) {
95 static void TransformTwo(const int16_t* in, uint8_t* dst, int do_two) {
96 TransformOne(in, dst);
98 TransformOne(in + 16, dst + 4);
102 static void TransformUV(const int16_t* in, uint8_t* dst) {
    [all...]
enc.c 86 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3))
93 uint8_t* dst) {
125 static void ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst,
127 ITransformOne(ref, in, dst);
129 ITransformOne(ref + 4, in + 16, dst + 4);
198 #define DST(x, y) dst[(x) + (y) * BPS]
200 static WEBP_INLINE void Fill(uint8_t* dst, int value, int size) {
203 memset(dst + j * BPS, value, size);
207 static WEBP_INLINE void VerticalPred(uint8_t* dst,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_chan.h 79 #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)
114 * \param dst pointer to destination GLchan[4] array.
117 #define UNCLAMPED_FLOAT_TO_RGBA_CHAN(dst, f) \
119 UNCLAMPED_FLOAT_TO_CHAN((dst)[0], (f)[0]); \
120 UNCLAMPED_FLOAT_TO_CHAN((dst)[1], (f)[1]);
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_chan.h 79 #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)
114 * \param dst pointer to destination GLchan[4] array.
117 #define UNCLAMPED_FLOAT_TO_RGBA_CHAN(dst, f) \
119 UNCLAMPED_FLOAT_TO_CHAN((dst)[0], (f)[0]); \
120 UNCLAMPED_FLOAT_TO_CHAN((dst)[1], (f)[1]);
    [all...]
  /frameworks/base/graphics/java/android/graphics/
PorterDuff.java 28 DST (2),
  /external/chromium_org/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/deqp/framework/common/
tcuInterval.hpp 174 #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, P0, A0, tmp2_,
    [all...]
  /ndk/build/tools/
dev-platform-compress.sh 38 We will always store a copy of file1 under \$DST/android-3/foo
39 If file2 is identical to file1, we remove its copy in \$DST/android-4/foo,
42 If file3 is identical to file2, we remove its copy in \$DST/android-4/foo,
52 register_var_option "--dst-dir=<path>" DSTDIR "Specify destination directory"
dev-platform-expand.sh 28 # $SRC/android-N/include --> $DST/android-N/arch-A/usr/include
29 # $SRC/android-N/arch-A/include --> $DST/android-N/arch-A/usr/include
30 # $SRC/android-N/arch-A/lib --> $DST/android-N/arch-A/usr/lib
63 register_var_option "--dst-dir=<path>" DSTDIR "Destination directory"
84 1 - copy all files from android-3 to \$DST directory
86 2 - copy all files from android-4 to \$DST, eventually overwriting stuff
89 3 - copy all files from android-5 to \$DST, eventually overwriting stuff
189 # $SRC/android-$PLATFORM/include --> $DST/platforms/android-$PLATFORM/arch-$ARCH/usr/include
190 # $SRC/android-$PLATFORM/arch-$ARCH/include --> $DST/platforms/android-$PLATFORM/arch-$ARCH/usr/include
192 # $SRC/android-$PLATFORM/arch-$ARCH/usr/include --> $DST/platforms/android-$PLATFORM/arch-$ARCH/usr/includ
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUtil.h 40 DST,
  /external/pixman/pixman/
pixman-arm-simd-asm-scaled.S 76 DST .req r1
96 str&t TMP1, [DST], #(1 << bpp_shift)
103 str&t TMP2, [DST], #(1 << bpp_shift)
142 strne&t TMP1, [DST]
145 .unreq 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)
  /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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.h 707 #define COPY_4V( DST, SRC ) \
709 (DST)[0] = (SRC)[0]; \
710 (DST)[1] = (SRC)[1]; \
711 (DST)[2] = (SRC)[2]; \
712 (DST)[3] = (SRC)[3]; \
718 #define COPY_4FV( DST, SRC ) COPY_4V(DST, SRC)
723 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
725 (DST)[0] = (V0); \
726 (DST)[1] = (V1);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 728 #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)[1] = (V1);
    [all...]

Completed in 850 milliseconds

1 2 3 4 5