Searched refs:Ch (Results 1 - 25 of 66) sorted by relevance

123

/external/syslinux/core/
H A Dbios.inc23 absolute 4*1Ch
37 absolute 046Ch
H A Dtimer.inc29 ; Hook INT 1Ch
37 ; Unhook INT 1Ch
/external/swiftshader/third_party/subzero/src/
H A DIceMangling.cpp54 char Ch = OldName[Last]; local
55 if (Ch == '_') {
58 } else if (std::isdigit(Ch) || std::isupper(Ch, CLocale)) {
59 if (Ch != 'Z')
85 char Ch = OldName[OldPos + Offset]; local
88 switch (Ch) {
90 Ch = 'A';
93 Ch = '0';
97 ++Ch;
[all...]
/external/fio/crc/
H A Dsha256.c28 static inline uint32_t Ch(uint32_t x, uint32_t y, uint32_t z) function
86 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0];
88 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1];
90 t1 = f + e1(c) + Ch(c,d,e) + 0xb5c0fbcf + W[ 2];
92 t1 = e + e1(b) + Ch(b,c,d) + 0xe9b5dba5 + W[ 3];
94 t1 = d + e1(a) + Ch(a,b,c) + 0x3956c25b + W[ 4];
96 t1 = c + e1(h) + Ch(h,a,b) + 0x59f111f1 + W[ 5];
98 t1 = b + e1(g) + Ch(g,h,a) + 0x923f82a4 + W[ 6];
100 t1 = a + e1(f) + Ch(f,g,h) + 0xab1c5ed5 + W[ 7];
103 t1 = h + e1(e) + Ch(
[all...]
H A Dsha512.c25 static inline uint64_t Ch(uint64_t x, uint64_t y, uint64_t z) function
124 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[i ];
126 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[i+1];
128 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[i+2];
130 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[i+3];
132 t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[i+4];
134 t1 = c + e1(h) + Ch(h,a,b) + sha512_K[i+5] + W[i+5];
136 t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[i+6];
138 t1 = a + e1(f) + Ch(f,g,h) + sha512_K[i+7] + W[i+7];
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVStream.cpp60 char Ch = ' '; local
62 while (IS >> Ch && Ch != '"')
66 while (IS >> Ch) {
67 if (Ch == '"') {
73 PreCh = Ch;
76 PreCh = Ch;
157 char Ch; local
158 while (I.IS.get(Ch) && Ch !
[all...]
/external/clang/lib/AST/
H A DTemplateBase.cpp59 const char Ch = Val.getZExtValue(); local
60 Out << ((Ch == '\'') ? "'\\" : "'");
61 Out.write_escaped(StringRef(&Ch, 1), /*UseHexEscapes=*/ true);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DSHA224Digest.java203 h += Sum1(e) + Ch(e, f, g) + K[t] + X[t];
209 g += Sum1(d) + Ch(d, e, f) + K[t] + X[t];
215 f += Sum1(c) + Ch(c, d, e) + K[t] + X[t];
221 e += Sum1(b) + Ch(b, c, d) + K[t] + X[t];
227 d += Sum1(a) + Ch(a, b, c) + K[t] + X[t];
233 c += Sum1(h) + Ch(h, a, b) + K[t] + X[t];
239 b += Sum1(g) + Ch(g, h, a) + K[t] + X[t];
245 a += Sum1(f) + Ch(f, g, h) + K[t] + X[t];
271 private int Ch( method in class:SHA224Digest
H A DSHA256Digest.java206 h += Sum1(e) + Ch(e, f, g) + K[t] + X[t];
212 g += Sum1(d) + Ch(d, e, f) + K[t] + X[t];
218 f += Sum1(c) + Ch(c, d, e) + K[t] + X[t];
224 e += Sum1(b) + Ch(b, c, d) + K[t] + X[t];
230 d += Sum1(a) + Ch(a, b, c) + K[t] + X[t];
236 c += Sum1(h) + Ch(h, a, b) + K[t] + X[t];
242 b += Sum1(g) + Ch(g, h, a) + K[t] + X[t];
248 a += Sum1(f) + Ch(f, g, h) + K[t] + X[t];
274 private int Ch( method in class:SHA256Digest
H A DLongDigest.java282 h += Sum1(e) + Ch(e, f, g) + K[t] + W[t++];
287 g += Sum1(d) + Ch(d, e, f) + K[t] + W[t++];
292 f += Sum1(c) + Ch(c, d, e) + K[t] + W[t++];
297 e += Sum1(b) + Ch(b, c, d) + K[t] + W[t++];
302 d += Sum1(a) + Ch(a, b, c) + K[t] + W[t++];
307 c += Sum1(h) + Ch(h, a, b) + K[t] + W[t++];
312 b += Sum1(g) + Ch(g, h, a) + K[t] + W[t++];
317 a += Sum1(f) + Ch(f, g, h) + K[t] + W[t++];
342 private long Ch( method in class:LongDigest
/external/llvm/lib/MC/
H A DSubtargetFeature.cpp35 char Ch = Feature[0]; local
37 return Ch == '+' || Ch =='-';
51 char Ch = Feature[0]; local
53 return Ch == '+';
/external/clang/test/SemaTemplate/
H A Dfriend-template.cpp164 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B)
196 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B)
/external/swiftshader/third_party/LLVM/lib/MC/
H A DSubtargetFeature.cpp33 char Ch = Feature[0]; local
35 return Ch == '+' || Ch =='-';
49 char Ch = Feature[0]; local
51 return Ch == '+';
/external/ipsec-tools/src/racoon/missing/crypto/sha2/
H A Dsha2.c200 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
351 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
361 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
374 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
461 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
464 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
487 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
678 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
688 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
701 T1 = (h) + Sigma1_512(e) + Ch((
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp425 Chain *Ch = *--I; local
427 return Ch;
431 Chain *Ch = *I; local
433 return Ch;
438 Chain *Ch = L.front(); local
440 return Ch;
/external/lzma/C/
H A DSha256.c42 #define Ch(x,y,z) (z^(x&(y^z))) macro
48 h += S1(e) + Ch(e,f,g) + K[(i)+(j)] + (j ? blk2(i) : blk0(i)); \
76 h(i) += S1(e(i)) + Ch(e(i),f(i),g(i)) + K[(i)+(j)] + (j ? blk2(i) : blk0(i)); \
/external/llvm/lib/Fuzzer/
H A DFuzzerDriver.cpp118 char Ch = Str[i]; local
119 if (Ch < '0' || Ch > '9')
121 Res = Res * 10 + (Ch - '0');
/external/curl/lib/
H A Dsha256.c110 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
142 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha256-internal.c71 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
107 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/wpa_supplicant_8/src/crypto/
H A Dsha256-internal.c71 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
107 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha256-internal.c71 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
107 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/boringssl/src/crypto/fipsmodule/sha/asm/
H A Dsha512-armv4.pl144 eor $t1,$t1,$t3 @ Ch(e,f,g)
149 adc $Thi,$Thi,$t1 @ T += Ch(e,f,g)
523 my ($t0,$t1,$t2,$T1,$K,$Ch,$Maj)=map("d$_",(24..31)); # temps
540 vmov $Ch,$e
546 vbsl $Ch,$f,$g @ Ch(e,f,g)
549 vadd.i64 $T1,$Ch,$h
H A Dsha512-armv8.pl124 orr $t1,$t1,$t2 // Ch(e,f,g)
128 add $h,$h,$t1 // h+=Ch(e,f,g)
150 orr $t1,$t1,$t2 // Ch(e,f,g)
154 add $h,$h,$t1 // h+=Ch(e,f,g)
/external/boringssl/src/crypto/fipsmodule/sha/
H A Dsha256.c207 #define Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z))) macro
212 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; \
332 #undef Ch macro
/external/dhcpcd-6.8.2/crypt/
H A Dsha256.c75 #define Ch(x, y, z) ((x & (y ^ z)) ^ z) macro
86 t0 = h + S1(e) + Ch(e, f, g) + k; \

Completed in 1323 milliseconds

123