HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 576 - 600 of 3043) sorted by null

<<21222324252627282930>>

  /build/tools/rgb2565/
to565.c 32 unsigned short out; local
35 out = to565(in[0],in[1],in[2]);
36 write(1, &out, 2);
44 unsigned short out; local
65 out = to565(rb, gb, bb);
66 write(1, &out, 2);
75 e = r - from565_r(out);
78 e = g - from565_g(out);
81 e = b - from565_b(out);
  /cts/hostsidetests/theme/src/android/theme/cts/
ThemeHostTest.java 237 final FileOutputStream out = new FileOutputStream(tmp); local
240 out.write(buffer, 0, count);
242 out.flush();
243 out.close();