Lines Matching defs:Int4
23 public class Int4 {
29 public Int4() {
33 public Int4(int i) {
37 public Int4(int x, int y, int z, int w) {
45 public Int4(Int4 source) {
57 public void add(Int4 a) {
71 public static Int4 add(Int4 a, Int4 b) {
72 Int4 result = new Int4();
100 public static Int4 add(Int4 a, int b) {
101 Int4 result = new Int4();
115 public void sub(Int4 a) {
129 public static Int4 sub(Int4 a, Int4 b) {
130 Int4 result = new Int4();
158 public static Int4 sub(Int4 a, int b) {
159 Int4 result = new Int4();
173 public void mul(Int4 a) {
187 public static Int4 mul(Int4 a, Int4 b) {
188 Int4 result = new Int4();
216 public static Int4 mul(Int4 a, int b) {
217 Int4 result = new Int4();
231 public void div(Int4 a) {
245 public static Int4 div(Int4 a, Int4 b) {
246 Int4 result = new Int4();
274 public static Int4 div(Int4 a, int b) {
275 Int4 result = new Int4();
289 public void mod(Int4 a) {
303 public static Int4 mod(Int4 a, Int4 b) {
304 Int4 result = new Int4();
332 public static Int4 mod(Int4 a, int b) {
333 Int4 result = new Int4();
367 public int dotProduct(Int4 a) {
378 public static int dotProduct(Int4 a, Int4 b) {
388 public void addMultiple(Int4 a, int factor) {
396 * set vector value by Int4
400 public void set(Int4 a) {