/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 | 62 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3)) 68 static void TransformOne(const int16_t* in, uint8_t* dst) { 87 // an input in [-2048, 2047] interval. We then need to add a dst value 103 dst += BPS; 108 static void TransformTwo(const int16_t* in, uint8_t* dst, int do_two) { 109 TransformOne(in, dst); 111 TransformOne(in + 16, dst + 4); 115 static void TransformUV(const int16_t* in, uint8_t* dst) { 116 VP8Transform(in + 0 * 16, dst, 1) [all...] |
enc.c | 88 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3)) 95 uint8_t* dst) { 127 static void ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst, 129 ITransformOne(ref, in, dst); 131 ITransformOne(ref + 4, in + 16, dst + 4); 227 #define DST(x, y) dst[(x) + (y) * BPS] 229 static WEBP_INLINE void Fill(uint8_t* dst, int value, int size) { 232 memset(dst + j * BPS, value, size); 236 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 | 62 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3)) 68 static void TransformOne(const int16_t* in, uint8_t* dst) { 87 // an input in [-2048, 2047] interval. We then need to add a dst value 103 dst += BPS; 108 static void TransformTwo(const int16_t* in, uint8_t* dst, int do_two) { 109 TransformOne(in, dst); 111 TransformOne(in + 16, dst + 4); 115 static void TransformUV(const int16_t* in, uint8_t* dst) { 116 VP8Transform(in + 0 * 16, dst, 1) [all...] |
enc.c | 88 dst[(x) + (y) * BPS] = clip_8b(ref[(x) + (y) * BPS] + ((v) >> 3)) 95 uint8_t* dst) { 127 static void ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst, 129 ITransformOne(ref, in, dst); 131 ITransformOne(ref + 4, in + 16, dst + 4); 227 #define DST(x, y) dst[(x) + (y) * BPS] 229 static WEBP_INLINE void Fill(uint8_t* dst, int value, int size) { 232 memset(dst + j * BPS, value, size); 236 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 | 197 // In Egypt in 2010 they decided to suspend DST during Ramadan. This 198 // led to a short interval where DST is in effect from September 10 to 207 struct DST { 218 // Sets the before_ and the after_ segments from the DST cache such that 225 // Finds the least recently used segment from the DST cache that is not 227 DST* LeastRecentlyUsedDST(DST* skip); 234 inline void ClearSegment(DST* segment); 236 bool InvalidSegment(DST* segment) { 243 DST dst_[kDSTSize] [all...] |
/external/v8/src/ |
date.h | 197 // In Egypt in 2010 they decided to suspend DST during Ramadan. This 198 // led to a short interval where DST is in effect from September 10 to 207 struct DST { 218 // Sets the before_ and the after_ segments from the DST cache such that 225 // Finds the least recently used segment from the DST cache that is not 227 DST* LeastRecentlyUsedDST(DST* skip); 234 inline void ClearSegment(DST* segment); 236 bool InvalidSegment(DST* segment) { 243 DST dst_[kDSTSize] [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" 83 1 - copy all files from android-3 to \$DST directory 85 2 - copy all files from android-4 to \$DST, eventually overwriting stuff 88 3 - copy all files from android-5 to \$DST, eventually overwriting stuff 188 # $SRC/android-$PLATFORM/include --> $DST/platforms/android-$PLATFORM/arch-$ARCH/usr/include 189 # $SRC/android-$PLATFORM/arch-$ARCH/include --> $DST/platforms/android-$PLATFORM/arch-$ARCH/usr/include 191 # $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 | 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...] |
/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...] |