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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 21 public final int red; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) {
27 this.red = red;
33 public GLColor(int red, int green, int blue) {
34 this.red = red;
44 return (red == color.red &&
  /external/ImageMagick/api_examples/
magick.sh 2 magick -size 100x100 xc:red \
wand.c 4 magick -size 100x100 xc:red \
47 *red, /* red image wand */ local
59 /* read in the red image */
60 red = NewMagickWand();
61 MagickSetSize(red,100,100);
62 status = MagickReadImage(red, "xc:red" );
64 ThrowWandException(red);
87 /* append rose image into the red image wand *
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowColor.java 11 public static int rgb(int red, int green, int blue) {
12 return argb(0xff, red, green, blue);
16 public static int argb(int alpha, int red, int green, int blue) {
17 return (alpha << 24) | (red << 16) | (green << 8) | blue;
  /external/libnl/lib/route/sch/
red.c 2 * lib/route/sch/red.c RED Qdisc
14 * @defgroup red Random Early Detection (RED)
25 #include <netlink/route/sch/red.h>
57 struct rtnl_red *red; local
71 red = red_alloc(qdisc);
72 if (!red)
77 red->qr_limit = opts->limit;
78 red->qr_qth_min = opts->qth_min
94 struct rtnl_red *red = red_qdisc(qdisc); local
103 struct rtnl_red *red = red_qdisc(qdisc); local
112 struct rtnl_red *red = red_qdisc(qdisc); local
121 struct rtnl_red *red; local
161 struct rtnl_red *red; local
180 struct rtnl_red *red; local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorProcessTest.java 47 private IParcelFileDescriptorPeer red; field in class:ParcelFileDescriptorProcessTest
92 "android.os.cts", "android.os.cts.ParcelFileDescriptorPeer$Red"));
102 red = redConn.get();
104 red.setPeer(blue);
105 blue.setPeer(red);
124 // red <-- blue
125 red.setupReadPipe();
129 assertEquals(1, red.read());
132 assertEquals(-1, red.read());
133 assertEquals(null, red.checkError())
    [all...]
  /frameworks/av/media/libnbaio/
MonoPipeReader.cpp 49 ssize_t red = availableToRead(); local
50 if (CC_UNLIKELY(red <= 0)) {
51 return red;
53 if (CC_LIKELY((size_t) red > count)) {
54 red = count;
58 if (part1 > (size_t) red) {
59 part1 = red;
64 size_t part2 = red - part1;
69 android_atomic_release_store(red + mPipe->mFront, &mPipe->mFront);
70 mFramesRead += red;
    [all...]
PipeReader.cpp 79 size_t red = mPipe.mMaxFrames - front; local
80 if (CC_LIKELY(red > count)) {
81 red = count;
84 memcpy(buffer, (char *) mPipe.mBuffer + (front * mFrameSize), red * mFrameSize);
86 if (CC_UNLIKELY(front + red == mPipe.mMaxFrames)) {
87 if (CC_UNLIKELY((count -= red) > front)) {
91 memcpy((char *) buffer + (red * mFrameSize), mPipe.mBuffer, count * mFrameSize);
92 red += count;
95 mFront += red;
96 mFramesRead += red;
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py2/term/
__init__.py 28 from _setup.term._term import terminfo, write, green, red, yellow, announce namespace
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py3/term/
__init__.py 28 from _setup.term._term import terminfo, write, green, red, yellow, announce namespace
  /external/mesa3d/src/glsl/glcpp/tests/
020-define-func-2-arg-multi.c 1 #define foo(x,y) x,two fish,red fish,y
  /external/clang/test/CodeGenCXX/
scoped-enums.cpp 4 enum class Color { red, blue, green }; member in class:Color
8 f(Color::red);
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/macholib/
fetch_macholib 2 svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/macholib/
fetch_macholib 2 svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
fetch_macholib 2 svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/
fetch_macholib 2 svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
  /external/ppp/pppd/plugins/
passwordfd.c 35 int readgood, red; local
50 red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood);
51 if (red == 0)
53 if (red < 0) {
58 readgood += red;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
PipeShort.java 98 int red = mMaxValues - front; local
99 if (red > count) {
100 red = count;
103 System.arraycopy(mBuffer, front, buffer, offset, red);
105 if (front + red == mMaxValues) {
106 if ((count -= red) > front) {
110 System.arraycopy(mBuffer, 0, buffer, offset + red, count);
111 red += count;
114 mFront += red;
115 return red;
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfChromaticities.cpp 48 Chromaticities::Chromaticities (const Imath::V2f &red,
53 red (red),
84 float d = chroma.red.x * (chroma.blue.y - chroma.green.y) +
85 chroma.blue.x * (chroma.green.y - chroma.red.y) +
86 chroma.green.x * (chroma.red.y - chroma.blue.y);
94 float Sg = (X * (chroma.red.y - chroma.blue.y) +
95 chroma.red.x * (Y * (chroma.blue.y - 1) +
97 chroma.blue.x * (Y * (chroma.red.y - 1) +
98 chroma.red.y * (X + Z))) / d
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_lut.rs 19 short red[256];
26 tmp.r = red[in.r];
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
CompareUtils.java 10 int diff = Math.abs(Color.red(color) - Color.red(expectedColor))
22 int average = Color.red(color) + Color.green(color) + Color.blue(color);
24 return Math.abs(Color.red(color) - average) <= threshold
  /external/eigen/test/
runtest.sh 4 red='\E[31m'
13 echo -e $red Test $1 failed: $black
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
VDUDisplay.java 38 public void setColor(int index, int red, int green, int blue);
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/yui/
pseudo-first.css 15 color: red;
  /external/eigen/blas/testing/
runblastest.sh 4 red='\E[31m'
21 echo -e $red Test $1 failed: $black
29 echo -e $red "Test $1 failed (FATAL ERROR, read the file $1.summ for details)" $black
37 echo -e $red "Test $1 failed (FAILED THE TESTS OF ERROR-EXITS, read the file $1.summ for details)" $black

Completed in 515 milliseconds

1 2 3 4 5 6 7 8 91011>>