Home
last modified time | relevance | path

Searched refs:uOff (Results 1 – 3 of 3) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
DNat192.java107 public static int addToEachOther(int[] u, int uOff, int[] v, int vOff) in addToEachOther() argument
110 c += (u[uOff + 0] & M) + (v[vOff + 0] & M); in addToEachOther()
111 u[uOff + 0] = (int)c; in addToEachOther()
114 c += (u[uOff + 1] & M) + (v[vOff + 1] & M); in addToEachOther()
115 u[uOff + 1] = (int)c; in addToEachOther()
118 c += (u[uOff + 2] & M) + (v[vOff + 2] & M); in addToEachOther()
119 u[uOff + 2] = (int)c; in addToEachOther()
122 c += (u[uOff + 3] & M) + (v[vOff + 3] & M); in addToEachOther()
123 u[uOff + 3] = (int)c; in addToEachOther()
126 c += (u[uOff + 4] & M) + (v[vOff + 4] & M); in addToEachOther()
[all …]
DNat256.java191 public static int addToEachOther(int[] u, int uOff, int[] v, int vOff) in addToEachOther() argument
194 c += (u[uOff + 0] & M) + (v[vOff + 0] & M); in addToEachOther()
195 u[uOff + 0] = (int)c; in addToEachOther()
198 c += (u[uOff + 1] & M) + (v[vOff + 1] & M); in addToEachOther()
199 u[uOff + 1] = (int)c; in addToEachOther()
202 c += (u[uOff + 2] & M) + (v[vOff + 2] & M); in addToEachOther()
203 u[uOff + 2] = (int)c; in addToEachOther()
206 c += (u[uOff + 3] & M) + (v[vOff + 3] & M); in addToEachOther()
207 u[uOff + 3] = (int)c; in addToEachOther()
210 c += (u[uOff + 4] & M) + (v[vOff + 4] & M); in addToEachOther()
[all …]
DNat224.java173 public static int addToEachOther(int[] u, int uOff, int[] v, int vOff) in addToEachOther() argument
176 c += (u[uOff + 0] & M) + (v[vOff + 0] & M); in addToEachOther()
177 u[uOff + 0] = (int)c; in addToEachOther()
180 c += (u[uOff + 1] & M) + (v[vOff + 1] & M); in addToEachOther()
181 u[uOff + 1] = (int)c; in addToEachOther()
184 c += (u[uOff + 2] & M) + (v[vOff + 2] & M); in addToEachOther()
185 u[uOff + 2] = (int)c; in addToEachOther()
188 c += (u[uOff + 3] & M) + (v[vOff + 3] & M); in addToEachOther()
189 u[uOff + 3] = (int)c; in addToEachOther()
192 c += (u[uOff + 4] & M) + (v[vOff + 4] & M); in addToEachOther()
[all …]