Home | History | Annotate | Download | only in renderscript

Lines Matching defs:Byte2

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) {
60 Byte2 result = new Byte2();
84 public static Byte2 add(Byte2 a, byte b) {
85 Byte2 result = new Byte2();
97 public void sub(Byte2 a) {
109 public static Byte2 sub(Byte2 a, Byte2 b) {
110 Byte2 result = new Byte2();
134 public static Byte2 sub(Byte2 a, byte b) {
135 Byte2 result = new Byte2();
147 public void mul(Byte2 a) {
159 public static Byte2 mul(Byte2 a, Byte2 b) {
160 Byte2 result = new Byte2();
184 public static Byte2 mul(Byte2 a, byte b) {
185 Byte2 result = new Byte2();
197 public void div(Byte2 a) {
209 public static Byte2 div(Byte2 a, Byte2 b) {
210 Byte2 result = new Byte2();
234 public static Byte2 div(Byte2 a, byte b) {
235 Byte2 result = new Byte2();
265 public byte dotProduct(Byte2 a) {
276 public static byte dotProduct(Byte2 a, Byte2 b) {
286 public void addMultiple(Byte2 a, byte factor) {
292 * set vector value by Byte2
296 public void set(Byte2 a) {