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

1 2

  /frameworks/base/rs/java/android/renderscript/
Byte2.java 21 * Class for exposing the native RenderScript byte2 type back to the Android system.
24 public class Byte2 {
28 public Byte2() {
31 public Byte2(byte initX, byte initY) {
37 public Byte2(Byte2 source) {
47 public void add(Byte2 a) {
59 public static Byte2 add(Byte2 a, Byte2 b)
    [all...]
FieldPacker.java 300 public void addI8(Byte2 v) {
473 public Byte2 subByte2() {
474 Byte2 v = new Byte2();
666 if (obj instanceof Byte2) {
667 addI8((Byte2)obj);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Byte2.java 24 * Class for exposing the native RenderScript byte2 type back to the Android system.
27 public class Byte2 {
28 public Byte2() {
31 public Byte2(byte initX, byte initY) {
FieldPacker.java 301 public void addI8(Byte2 v) {
474 public Byte2 subByte2() {
475 Byte2 v = new Byte2();
667 if (obj instanceof Byte2) {
668 fp.addI8((Byte2)obj);
807 if (obj instanceof Byte2) {
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_bug_char.java 34 private Byte2 pack_b2(byte[] val) {
37 return new Byte2(val[0], val[1]);
72 Byte2 min_rand_sc2 = pack_b2(min_rand_sc2_raw);
UT_vector.java 86 Byte2 B2 = s.get_i8_2();
UT_math_agree.java 49 private Byte2 pack_b2(byte[] val) {
51 return new Byte2(val[0], val[1]);
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_bug_char.java 34 private Byte2 pack_b2(byte[] val) {
37 return new Byte2(val[0], val[1]);
72 Byte2 min_rand_sc2 = pack_b2(min_rand_sc2_raw);
UT_vector.java 86 Byte2 B2 = s.get_i8_2();
UT_math_agree.java 49 private Byte2 pack_b2(byte[] val) {
51 return new Byte2(val[0], val[1]);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_bug_char.java 34 private Byte2 pack_b2(byte[] val) {
37 return new Byte2(val[0], val[1]);
72 Byte2 min_rand_sc2 = pack_b2(min_rand_sc2_raw);
UT_vector.java 86 Byte2 B2 = s.get_i8_2();
UT_math_agree.java 49 private Byte2 pack_b2(byte[] val) {
51 return new Byte2(val[0], val[1]);
  /external/libnfc-nxp/src/
phFriNfc_FelicaMap.h 112 #define PH_NFCFRI_NDEFMAP_FELI_CAL_LEN_BYTES(Byte1,Byte2,Byte3,DataLen)\
117 (DataLen) += (Byte2);\
  /external/llvm/include/llvm/Support/
SwapByteOrder.h 50 uint32_t Byte2 = value & 0x00FF0000;
52 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
FieldPackerTest.java 19 import android.renderscript.Byte2;
70 fp.addI8(new Byte2());
ComputeTest.java 21 import android.renderscript.Byte2;
54 Byte2 b2 = new Byte2();
57 b2 = new Byte2((byte)1, (byte)2);
449 Byte2 B2 = s.get_i8_2();
KernelInputTest.java 21 import android.renderscript.Byte2;
85 script.set_initial_value_char2(new Byte2((byte) 127, (byte) 3));
ForEachTest.java 21 import android.renderscript.Byte2;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
scsi.h     [all...]
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_vector.java 86 Byte2 B2 = s.get_i8_2();
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
UT_vector.java 86 Byte2 B2 = s.get_i8_2();
  /frameworks/compile/slang/tests/P_reduce_general_result/
ScriptC_reduce_general_result.java.expect 190 public Byte2[] get() {
194 Byte2[] result = new Byte2[7];
196 result[Idx] = new Byte2(outArray[2*Idx+0], outArray[2*Idx+1]);
225 private Byte2[] mResult;
    [all...]
  /bionic/libc/arch-x86/atom/string/
ssse3-strcmp-atom.S     [all...]
  /frameworks/rs/cpp/
rsCppStructs.h 79 class Byte2 {
83 Byte2(int8_t initX, int8_t initY)
85 Byte2() : x(0), y(0) {}
    [all...]

Completed in 693 milliseconds

1 2