Home | History | Annotate | Download | only in renderscript

Lines Matching full:byte4

21  * Class for exposing the native RenderScript byte4 type back to the Android system.
24 public class Byte4 {
30 public Byte4() {
33 public Byte4(byte initX, byte initY, byte initZ, byte initW) {
40 public Byte4(Byte4 source) {
52 public void add(Byte4 a) {
66 public static Byte4 add(Byte4 a, Byte4 b) {
67 Byte4 result = new Byte4();
95 public static Byte4 add(Byte4 a, byte b) {
96 Byte4 result = new Byte4();
110 public void sub(Byte4 a) {
124 public static Byte4 sub(Byte4 a, Byte4 b) {
125 Byte4 result = new Byte4();
153 public static Byte4 sub(Byte4 a, byte b) {
154 Byte4 result = new Byte4();
168 public void mul(Byte4 a) {
182 public static Byte4 mul(Byte4 a, Byte4 b) {
183 Byte4 result = new Byte4();
211 public static Byte4 mul(Byte4 a, byte b) {
212 Byte4 result = new Byte4();
226 public void div(Byte4 a) {
240 public static Byte4 div(Byte4 a, Byte4 b) {
241 Byte4 result = new Byte4();
269 public static Byte4 div(Byte4 a, byte b) {
270 Byte4 result = new Byte4();
304 public byte dotProduct(Byte4 a) {
315 public static byte dotProduct(Byte4 a, Byte4 b) {
325 public void addMultiple(Byte4 a, byte factor) {
333 * set vector value by Byte4
337 public void set(Byte4 a) {