Home | History | Annotate | Download | only in renderscript

Lines Matching refs:Byte3

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) {
64 Byte3 result = new Byte3();
90 public static Byte3 add(Byte3 a, byte b) {
91 Byte3 result = new Byte3();
104 public void sub(Byte3 a) {
117 public static Byte3 sub(Byte3 a, Byte3 b) {
118 Byte3 result = new Byte3();
144 public static Byte3 sub(Byte3 a, byte b) {
145 Byte3 result = new Byte3();
158 public void mul(Byte3 a) {
171 public static Byte3 mul(Byte3 a, Byte3 b) {
172 Byte3 result = new Byte3();
198 public static Byte3 mul(Byte3 a, byte b) {
199 Byte3 result = new Byte3();
212 public void div(Byte3 a) {
225 public static Byte3 div(Byte3 a, Byte3 b) {
226 Byte3 result = new Byte3();
252 public static Byte3 div(Byte3 a, byte b) {
253 Byte3 result = new Byte3();
285 public byte dotProduct(Byte3 a) {
296 public static byte dotProduct(Byte3 a, Byte3 b) {
306 public void addMultiple(Byte3 a, byte factor) {
313 * set vector value by Byte3
317 public void set(Byte3 a) {