HomeSort by relevance Sort by last modified time
    Searched defs:Maj (Results 1 - 25 of 35) sorted by null

1 2

  /external/clang/lib/Basic/
Targets.cpp 142 unsigned Maj, Min, Rev;
144 Triple.getMacOSXVersion(Maj, Min, Rev);
147 Triple.getOSVersion(Maj, Min, Rev);
155 PlatformMinVersion = VersionTuple(Maj, Min, Rev);
161 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
163 Str[0] = '0' + Maj;
176 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
178 Str[0] = '0' + Maj;
190 assert(Maj < 100 && Min < 100 && Rev < 100 && "Invalid version!");
192 if (Maj < 10 || (Maj == 10 && Min < 10))
    [all...]
  /external/epid-sdk/epid/member/tiny/math/src/
sha512.c 107 #define Maj(x, y, z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z)))
163 a = t + Sigma0(work_ptr[0]) + Maj(work_ptr[0], work_ptr[1], work_ptr[2]);
sha256.c 154 #define Maj(a, b, c) (((a) & (b)) ^ ((a) & (c)) ^ ((b) & (c)))
187 t2 = Sigma0(a) + Maj(a, b, c);
206 t2 = Sigma0(a) + Maj(a, b, c);
  /external/u-boot/fs/zfs/
zfs_sha256.c 45 * Maj(x, y, z) (((x) & (y)) | ((x) & (z)) | ((y) & (z)))
50 #define Maj(x, y, z) (((x) & (y)) ^ ((z) & ((x) ^ (y))))
93 T2 = SIGMA0(a) + Maj(a, b, c);
  /external/wpa_supplicant_8/src/crypto/
sha256-internal.c 72 #define Maj(x,y,z) (((x | y) & z) | (x & y))
108 t1 = Sigma0(a) + Maj(a, b, c); \
sha512-internal.c 93 #define Maj(x,y,z) (((x | y) & z) | (x & y))
138 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]);
  /external/curl/lib/
sha256.c 119 #define Maj(x,y,z) (((x | y) & z) | (x & y))
147 unsigned long t1 = Sigma0(a) + Maj(a, b, c); \
  /external/lzma/C/
Sha256.c 43 #define Maj(x,y,z) ((x&y)|(z&(x|y)))
50 h += S0(a) + Maj(a, b, c)
78 h(i) += S0(a(i)) + Maj(a(i), b(i), c(i)) \
  /external/ImageMagick/MagickCore/
signature.c 606 #define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z)))
716 T2=Trunc32(Suma0(A)+Maj(A,B,C));
  /external/boringssl/src/crypto/fipsmodule/sha/
sha256.c 203 #define Maj(x, y, z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z)))
208 h = Sigma0(a) + Maj(a, b, c); \
333 #undef Maj
sha512.c 358 #define Maj(x, y, z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z)))
388 A = T + Sigma0(A) + Maj(A, F[1], F[2]);
401 A = T + Sigma0(A) + Maj(A, F[1], F[2]);
422 h = Sigma0(a) + Maj(a, b, c); \
529 #undef Maj
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
LongDigest.java 284 h += Sum0(a) + Maj(a, b, c);
289 g += Sum0(h) + Maj(h, a, b);
294 f += Sum0(g) + Maj(g, h, a);
299 e += Sum0(f) + Maj(f, g, h);
304 d += Sum0(e) + Maj(e, f, g);
309 c += Sum0(d) + Maj(d, e, f);
314 b += Sum0(c) + Maj(c, d, e);
319 a += Sum0(b) + Maj(b, c, d);
350 private long Maj(
SHA224Digest.java 205 h += Sum0(a) + Maj(a, b, c);
211 g += Sum0(h) + Maj(h, a, b);
217 f += Sum0(g) + Maj(g, h, a);
223 e += Sum0(f) + Maj(f, g, h);
229 d += Sum0(e) + Maj(e, f, g);
235 c += Sum0(d) + Maj(d, e, f);
241 b += Sum0(c) + Maj(c, d, e);
247 a += Sum0(b) + Maj(b, c, d);
279 private int Maj(
SHA256Digest.java 208 h += Sum0(a) + Maj(a, b, c);
214 g += Sum0(h) + Maj(h, a, b);
220 f += Sum0(g) + Maj(g, h, a);
226 e += Sum0(f) + Maj(f, g, h);
232 d += Sum0(e) + Maj(e, f, g);
238 c += Sum0(d) + Maj(d, e, f);
244 b += Sum0(c) + Maj(c, d, e);
250 a += Sum0(b) + Maj(b, c, d);
282 private int Maj(
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/digests/
LongDigest.java 286 h += Sum0(a) + Maj(a, b, c);
291 g += Sum0(h) + Maj(h, a, b);
296 f += Sum0(g) + Maj(g, h, a);
301 e += Sum0(f) + Maj(f, g, h);
306 d += Sum0(e) + Maj(e, f, g);
311 c += Sum0(d) + Maj(d, e, f);
316 b += Sum0(c) + Maj(c, d, e);
321 a += Sum0(b) + Maj(b, c, d);
352 private long Maj(
SHA224Digest.java 207 h += Sum0(a) + Maj(a, b, c);
213 g += Sum0(h) + Maj(h, a, b);
219 f += Sum0(g) + Maj(g, h, a);
225 e += Sum0(f) + Maj(f, g, h);
231 d += Sum0(e) + Maj(e, f, g);
237 c += Sum0(d) + Maj(d, e, f);
243 b += Sum0(c) + Maj(c, d, e);
249 a += Sum0(b) + Maj(b, c, d);
281 private int Maj(
SHA256Digest.java 210 h += Sum0(a) + Maj(a, b, c);
216 g += Sum0(h) + Maj(h, a, b);
222 f += Sum0(g) + Maj(g, h, a);
228 e += Sum0(f) + Maj(f, g, h);
234 d += Sum0(e) + Maj(e, f, g);
240 c += Sum0(d) + Maj(d, e, f);
246 b += Sum0(c) + Maj(c, d, e);
252 a += Sum0(b) + Maj(b, c, d);
284 private int Maj(
  /external/e2fsprogs/lib/ext2fs/
sha256.c 38 #define Maj(x,y,z) (((x | y) & z) | (x & y))
49 t1 = Sigma0(a) + Maj(a, b, c); \
sha512.c 65 #define Maj(x,y,z) (((x | y) & z) | (x & y))
74 t1 = Sigma0(a) + Maj(a, b, c);\
  /external/f2fs-tools/tools/
sha512.c 85 #define Maj(x,y,z) (((x | y) & z) | (x & y))
94 t1 = Sigma0(a) + Maj(a, b, c);\
  /external/openssh/
blocks.c 44 #define Maj(x,y,z) ((x & y) ^ (x & z) ^ (y & z))
72 T2 = Sigma0(a) + Maj(a,b,c); \
  /external/openssh/openbsd-compat/
sha2.c 168 #define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z)))
306 (h) = T1 + Sigma0_256((a)) + Maj((a), (b), (c)); \
318 (h) = T1 + Sigma0_256((a)) + Maj((a), (b), (c)); \
403 T2 = Sigma0_256(a) + Maj(a, b, c);
426 T2 = Sigma0_256(a) + Maj(a, b, c);
586 (h) = T1 + Sigma0_512((a)) + Maj((a), (b), (c)); \
599 (h) = T1 + Sigma0_512((a)) + Maj((a), (b), (c)); \
684 T2 = Sigma0_512(a) + Maj(a, b, c);
707 T2 = Sigma0_512(a) + Maj(a, b, c);
  /external/python/cpython3/Modules/
sha256module.c 116 #define Maj(x,y,z) (((x | y) & z) | (x & y))
146 t1 = Sigma0(a) + Maj(a, b, c); \
sha512module.c 125 #define Maj(x,y,z) (((x | y) & z) | (x & y))
155 t1 = Sigma0(a) + Maj(a, b, c); \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
sha256module.c 117 #define Maj(x,y,z) (((x | y) & z) | (x & y))
145 t1 = Sigma0(a) + Maj(a, b, c); \

Completed in 2195 milliseconds

1 2