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

1 2

  /external/bison/lib/
bbitset.h 159 #define BITSET_CHECK2_(DST, SRC) \
160 if (!BITSET_COMPATIBLE_ (DST, SRC)) abort ();
162 #define BITSET_CHECK3_(DST, SRC1, SRC2) \
163 if (!BITSET_COMPATIBLE_ (DST, SRC1) \
164 || !BITSET_COMPATIBLE_ (DST, SRC2)) abort ();
166 #define BITSET_CHECK4_(DST, SRC1, SRC2, SRC3) \
167 if (!BITSET_COMPATIBLE_ (DST, SRC1) || !BITSET_COMPATIBLE_ (DST, SRC2) \
168 || !BITSET_COMPATIBLE_ (DST, SRC3)) abort ();
171 /* Redefine number of bits in bitset DST. *
    [all...]
bitset.h 191 /* DST = ~0. */
192 #define bitset_ones(DST) BITSET_ONES_ (DST)
194 /* DST = 0. */
195 #define bitset_zero(DST) BITSET_ZERO_ (DST)
199 /* DST = SRC. */
200 #define bitset_copy(DST, SRC) BITSET_COPY_ (DST, SRC)
202 /* Return DST & SRC == 0. *
    [all...]
  /frameworks/base/graphics/java/android/graphics/
PorterDuff.java 28 DST (2),
  /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)
  /ndk/build/tools/
build-platforms.sh 20 # the NDK itself. It will populate DST ($NDK/platforms by default)
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
33 # $SRC/android-N/arch-A/usr/include --> $DST/android-N/arch-A/usr/include
34 # $SRC/android-N/arch-A/usr/lib --> $DST/android-N/arch-A/usr/lib
124 --dst-dir=*)
154 echo " --dst-dir=<path> Destination directory [$DSTDIR]"
251 log "Copying $3 from \$SRC/$1 to \$DST/$2."
308 # $SRC/android-$PLATFORM/include --> $DST/platforms/android-$PLATFORM/arch-$ABI/usr/includ
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PorterDuff_ModeTest.java 37 assertEquals(Mode.DST, Mode.valueOf("DST"));
64 Mode.DST,
PorterDuffXfermodeTest.java 63 p.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST));
PorterDuffColorFilterTest.java 66 filter = new PorterDuffColorFilter(filterColor, PorterDuff.Mode.DST);
CanvasTest.java 2230 final RectF dst = new RectF(0, 0, 10, 31); local
2246 final Rect dst = new Rect(0, 10, 30, 0); local
    [all...]
  /external/libpcap/
tokdefs.h 32 DST = 258,
136 #define DST 258
grammar.y 169 %token DST SRC HOST GATEWAY
323 | DST { $$ = Q_DST; }
324 | SRC OR DST { $$ = Q_OR; }
325 | DST OR SRC { $$ = Q_OR; }
326 | SRC AND DST { $$ = Q_AND; }
327 | DST AND SRC { $$ = Q_AND; }
grammar.c 67 DST = 258,
171 #define DST 258
782 "$end", "error", "$undefined", "DST", "SRC", "HOST", "GATEWAY", "NET",
    [all...]
scanner.l 170 dst return DST;
scanner.c     [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
bitmap.h 125 #define bitmap_compl_and(DST, A, B) bitmap_and_compl (DST, B, A)
134 /* DST = A | (B & ~C). Return true if DST changes. */
135 extern bool bitmap_ior_and_compl (bitmap DST, const_bitmap A, const_bitmap B, const_bitmap C);
137 extern bool bitmap_ior_and_compl_into (bitmap DST, const_bitmap B, const_bitmap C);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
bitmap.h 125 #define bitmap_compl_and(DST, A, B) bitmap_and_compl (DST, B, A)
134 /* DST = A | (B & ~C). Return true if DST changes. */
135 extern bool bitmap_ior_and_compl (bitmap DST, const_bitmap A, const_bitmap B, const_bitmap C);
137 extern bool bitmap_ior_and_compl_into (bitmap DST, const_bitmap B, const_bitmap C);
  /external/iproute2/examples/
cbq.init-v0.7.3 811 SRC=${rule%%,*}; DST=${rule##*,}
816 DADDR=${DST%%:*}; DTEMP=${DST##*:}
817 [ "$DADDR" = "$DST" ] && DTEMP=""
841 u32_d="${DADDR:+match ip dst $DADDR} $u32_d"
    [all...]
  /external/v8/src/
date.js 123 // In this way, only one check, for a DST cache miss, is needed.
127 // Because computing the DST offset is an expensive operation,
128 // we keep a cache of the last computed DST offset along with a time interval
132 // Cached DST offset.
178 // the point in time where the DST offset change occurred. Updated
184 // The interval contains a DST offset change and the given time is
201 // Compute the DST offset for the time and shrink the cache interval
202 // to only contain the time. This allows fast repeated DST offset
239 // Inline the DST offset cache checks for speed.
646 // We also need to invalidate the DST cache as the new timezone may hav
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Xfermodes.java 37 // create a bitmap with a circle, used for the "dst" image
77 new PorterDuffXfermode(PorterDuff.Mode.DST),
94 "Clear", "Src", "Dst", "SrcOver",
143 // draw the src/dst example into our offscreen bitmap
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas.java 176 case DST:
177 g.setComposite(AlphaComposite.getInstance(AlphaComposite.DST, falpha));
539 public void drawBitmap(Bitmap bitmap, Rect src, Rect dst, Paint paint) {
542 dst.left, dst.top, dst.right, dst.bottom, paint);
545 dst.left, dst.top, dst.right, dst.bottom, paint)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/
jsref.js 504 // Added these two functions because DST rules changed for the US.
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/
jsref.js 465 // Added these two functions because DST rules changed for the US.
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/arm/
arm.h     [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/config/arm/
arm.h     [all...]
  /prebuilt/sdk/4/
android.jar 

Completed in 170 milliseconds

1 2