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

1 2

  /frameworks/base/rs/java/android/renderscript/
Byte3.java 21 * Class for exposing the native RenderScript byte3 type back to the Android system.
24 public class Byte3 {
29 public Byte3() {
32 public Byte3(byte initX, byte initY, byte initZ) {
39 public Byte3(Byte3 source) {
50 public void add(Byte3 a) {
63 public static Byte3 add(Byte3 a, Byte3 b)
    [all...]
FieldPacker.java 304 public void addI8(Byte3 v) {
479 public Byte3 subByte3() {
480 Byte3 v = new Byte3();
671 if (obj instanceof Byte3) {
672 addI8((Byte3)obj);
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
Byte3.java 24 * Class for exposing the native RenderScript byte3 type back to the Android system.
27 public class Byte3 {
28 public Byte3() {
31 public Byte3(byte initX, byte initY, byte initZ) {
FieldPacker.java 305 public void addI8(Byte3 v) {
480 public Byte3 subByte3() {
481 Byte3 v = new Byte3();
672 if (obj instanceof Byte3) {
673 fp.addI8((Byte3)obj);
811 if (obj instanceof Byte3) {
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
SwapByteOrder.h 51 uint32_t Byte3 = value & 0xFF000000;
52 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /external/llvm/include/llvm/Support/
SwapByteOrder.h 50 uint32_t Byte3 = value & 0xFF000000;
51 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
SwapByteOrder.h 53 uint32_t Byte3 = value & 0xFF000000;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
SwapByteOrder.h 53 uint32_t Byte3 = value & 0xFF000000;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
SwapByteOrder.h 53 uint32_t Byte3 = value & 0xFF000000;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
SwapByteOrder.h 53 uint32_t Byte3 = value & 0xFF000000;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
SwapByteOrder.h 53 uint32_t Byte3 = value & 0xFF000000;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
SwapByteOrder.h 53 uint32_t Byte3 = value & 0xFF000000;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
SwapByteOrder.h 53 uint32_t Byte3 = value & 0xFF000000;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
SwapByteOrder.h 53 uint32_t Byte3 = value & 0xFF000000;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
SwapByteOrder.h 53 uint32_t Byte3 = value & 0xFF000000;
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
FieldPackerTest.java 20 import android.renderscript.Byte3;
71 fp.addI8(new Byte3());
ComputeTest.java 22 import android.renderscript.Byte3;
60 Byte3 b3 = new Byte3();
64 b3 = new Byte3((byte)1, (byte)2, (byte)3);
459 Byte3 B3 = s.get_i8_3();
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/DxeSmm/AcpiSmm/
AcpiSmmPlatform.h 68 #define PCI_REG_MASK(Byte0, Byte1, Byte2, Byte3, Byte4, Byte5, Byte6, Byte7) \
69 Byte0, Byte1, Byte2, Byte3, Byte4, Byte5, Byte6, Byte7
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_vector.java 21 import android.renderscript.Byte3;
109 Byte3 B3 = s.get_i8_3();
UT_math_agree.java 21 import android.renderscript.Byte3;
68 private Byte3 pack_b3(byte[] val) {
70 return new Byte3(val[0], val[1], val[2]);
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_vector.java 23 import android.support.v8.renderscript.Byte3;
111 Byte3 B3 = s.get_i8_3();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
scsi.h     [all...]
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_vector.java 94 Byte3 B3 = s.get_i8_3();
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
UT_vector.java 94 Byte3 B3 = s.get_i8_3();
  /frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
UT_vector.java 94 Byte3 B3 = s.get_i8_3();

Completed in 1691 milliseconds

1 2