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

12

/external/bison/lib/
H A Dstrtol.c192 # define L_(Ch) L##Ch
196 # define ISSPACE(Ch) __iswspace_l ((Ch), loc)
197 # define ISALPHA(Ch) __iswalpha_l ((Ch), loc)
198 # define TOUPPER(Ch) __towupper_l ((Ch), loc)
200 # define ISSPACE(Ch) iswspace (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/clang/lib/AST/
H A DTemplateBase.cpp44 const char Ch = Val.getZExtValue(); local
45 Out << ((Ch == '\'') ? "'\\" : "'");
46 Out.write_escaped(StringRef(&Ch, 1), /*UseHexEscapes=*/ true);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DLongDigest.java235 h += Sum1(e) + Ch(e, f, g) + K[t] + W[t++];
240 g += Sum1(d) + Ch(d, e, f) + K[t] + W[t++];
245 f += Sum1(c) + Ch(c, d, e) + K[t] + W[t++];
250 e += Sum1(b) + Ch(b, c, d) + K[t] + W[t++];
255 d += Sum1(a) + Ch(a, b, c) + K[t] + W[t++];
260 c += Sum1(h) + Ch(h, a, b) + K[t] + W[t++];
265 b += Sum1(g) + Ch(g, h, a) + K[t] + W[t++];
270 a += Sum1(f) + Ch(f, g, h) + K[t] + W[t++];
295 private long Ch( method in class:LongDigest
H A DSHA224Digest.java177 h += Sum1(e) + Ch(e, f, g) + K[t] + X[t];
183 g += Sum1(d) + Ch(d, e, f) + K[t] + X[t];
189 f += Sum1(c) + Ch(c, d, e) + K[t] + X[t];
195 e += Sum1(b) + Ch(b, c, d) + K[t] + X[t];
201 d += Sum1(a) + Ch(a, b, c) + K[t] + X[t];
207 c += Sum1(h) + Ch(h, a, b) + K[t] + X[t];
213 b += Sum1(g) + Ch(g, h, a) + K[t] + X[t];
219 a += Sum1(f) + Ch(f, g, h) + K[t] + X[t];
245 private int Ch( method in class:SHA224Digest
H A DSHA256Digest.java179 h += Sum1(e) + Ch(e, f, g) + K[t] + X[t];
185 g += Sum1(d) + Ch(d, e, f) + K[t] + X[t];
191 f += Sum1(c) + Ch(c, d, e) + K[t] + X[t];
197 e += Sum1(b) + Ch(b, c, d) + K[t] + X[t];
203 d += Sum1(a) + Ch(a, b, c) + K[t] + X[t];
209 c += Sum1(h) + Ch(h, a, b) + K[t] + X[t];
215 b += Sum1(g) + Ch(g, h, a) + K[t] + X[t];
221 a += Sum1(f) + Ch(f, g, h) + K[t] + X[t];
247 private int Ch( method in class:SHA256Digest
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_stdlib.c102 sub esp,0Ch
113 mov edx,dword ptr [ebp+0Ch]
120 add esp,0Ch
146 mov eax,dword ptr [esp+1Ch]
154 mov dword ptr [esp+1Ch],eax
182 mul dword ptr [esp+1Ch]
224 mov eax,dword ptr [esp+0Ch]
232 mov eax,dword ptr [esp+0Ch]
251 cmp eax,dword ptr [esp+0Ch]
274 mov edx,dword ptr [esp+0Ch]
[all...]
/external/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/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Davxcc.asm61 vcmpneq_oqpd xmm1, xmm2, xmm3 ; 0Ch
79 vcmpneq_ospd xmm1, xmm2, xmm3 ; 1Ch
115 vcmpneq_oqpd xmm1, xmm2, [rax] ; 0Ch
133 vcmpneq_ospd xmm1, xmm2, [rax] ; 1Ch
169 vcmpneq_oqpd xmm1, xmm2, dqword [rax] ; 0Ch
187 vcmpneq_ospd xmm1, xmm2, dqword [rax] ; 1Ch
205 vcmpneq_oqpd ymm1, ymm2, ymm3 ; 0Ch
223 vcmpneq_ospd ymm1, ymm2, ymm3 ; 1Ch
241 vcmpneq_oqpd ymm1, ymm2, [rax] ; 0Ch
259 vcmpneq_ospd ymm1, ymm2, [rax] ; 1Ch
[all...]
/external/openssl/crypto/sha/asm/
H A Dsha256-mips.S75 xor $15,$30 # Ch(e,f,g)
127 xor $16,$25 # Ch(e,f,g)
179 xor $17,$24 # Ch(e,f,g)
231 xor $18,$7 # Ch(e,f,g)
283 xor $19,$3 # Ch(e,f,g)
335 xor $20,$2 # Ch(e,f,g)
387 xor $21,$1 # Ch(e,f,g)
439 xor $22,$31 # Ch(e,f,g)
491 xor $23,$30 # Ch(e,f,g)
543 xor $8,$25 # Ch(
[all...]
H A Dsha512-armv4.pl113 eor $t1,$t1,$t3 @ Ch(e,f,g)
118 adc $Thi,$Thi,$t1 @ T += Ch(e,f,g)
452 my ($t0,$t1,$t2,$T1,$K,$Ch,$Maj)=map("d$_",(24..31)); # temps
471 veor $Ch,$f,$g
473 vand $Ch,$e
475 veor $Ch,$g @ Ch(e,f,g)
478 vadd.i64 $T1,$Ch
486 vand $Ch,$a,$c
490 vorr $Maj,$Ch
[all...]
H A Dsha256-armv4.S87 eor r2,r2,r10 @ Ch(e,f,g)
89 add r11,r11,r2 @ h+=Ch(e,f,g)
143 eor r2,r2,r9 @ Ch(e,f,g)
145 add r10,r10,r2 @ h+=Ch(e,f,g)
199 eor r2,r2,r8 @ Ch(e,f,g)
201 add r9,r9,r2 @ h+=Ch(e,f,g)
255 eor r2,r2,r7 @ Ch(e,f,g)
257 add r8,r8,r2 @ h+=Ch(e,f,g)
311 eor r2,r2,r6 @ Ch(e,f,g)
313 add r7,r7,r2 @ h+=Ch(
[all...]
H A Dsha512-armv4.S169 eor r10,r10,r12 @ Ch(e,f,g)
174 adc r4,r4,r10 @ T += Ch(e,f,g)
306 eor r10,r10,r12 @ Ch(e,f,g)
311 adc r4,r4,r10 @ T += Ch(e,f,g)
468 veor d29,d22 @ Ch(e,f,g)
505 veor d29,d21 @ Ch(e,f,g)
542 veor d29,d20 @ Ch(e,f,g)
579 veor d29,d19 @ Ch(e,f,g)
616 veor d29,d18 @ Ch(e,f,g)
653 veor d29,d17 @ Ch(
[all...]
H A Dsha512-armv8.pl96 orr $t1,$t1,$t2 // Ch(e,f,g)
100 add $h,$h,$t1 // h+=Ch(e,f,g)
122 orr $t1,$t1,$t2 // Ch(e,f,g)
126 add $h,$h,$t1 // h+=Ch(e,f,g)
/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/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.cpp401 Chain *Ch = *--I; local
403 return Ch;
407 Chain *Ch = *I; local
409 return Ch;
414 Chain *Ch = L.front(); local
416 return Ch;
/external/lzma/C/
H A DSha256.c33 #define Ch(x,y,z) (z^(x&(y^z))) macro
48 #define R(a,b,c,d,e,f,g,h, i) h += S1(e) + Ch(e,f,g) + K[i+j] + (j?blk2(i):blk0(i));\
63 #define R(i) h(i) += S1(e(i)) + Ch(e(i),f(i),g(i)) + K[i+j] + (j?blk2(i):blk0(i));\
/external/chromium_org/third_party/boringssl/linux-arm/crypto/sha/
H A Dsha256-armv4.S87 eor r2,r2,r10 @ Ch(e,f,g)
89 add r11,r11,r2 @ h+=Ch(e,f,g)
143 eor r2,r2,r9 @ Ch(e,f,g)
145 add r10,r10,r2 @ h+=Ch(e,f,g)
199 eor r2,r2,r8 @ Ch(e,f,g)
201 add r9,r9,r2 @ h+=Ch(e,f,g)
255 eor r2,r2,r7 @ Ch(e,f,g)
257 add r8,r8,r2 @ h+=Ch(e,f,g)
311 eor r2,r2,r6 @ Ch(e,f,g)
313 add r7,r7,r2 @ h+=Ch(
[all...]
H A Dsha512-armv4.S171 eor r10,r10,r12 @ Ch(e,f,g)
176 adc r4,r4,r10 @ T += Ch(e,f,g)
308 eor r10,r10,r12 @ Ch(e,f,g)
313 adc r4,r4,r10 @ T += Ch(e,f,g)
470 vbsl d29,d21,d22 @ Ch(e,f,g)
507 vbsl d29,d20,d21 @ Ch(e,f,g)
544 vbsl d29,d19,d20 @ Ch(e,f,g)
581 vbsl d29,d18,d19 @ Ch(e,f,g)
618 vbsl d29,d17,d18 @ Ch(e,f,g)
655 vbsl d29,d16,d17 @ Ch(
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha256-internal.c68 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/wpa_supplicant_8/src/crypto/
H A Dsha256-internal.c68 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha256-internal.c68 #define Ch(x,y,z) (z ^ (x & (y ^ z))) macro
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/chromium_org/third_party/boringssl/src/crypto/sha/asm/
H A Dsha512-armv4.pl130 eor $t1,$t1,$t3 @ Ch(e,f,g)
135 adc $Thi,$Thi,$t1 @ T += Ch(e,f,g)
471 my ($t0,$t1,$t2,$T1,$K,$Ch,$Maj)=map("d$_",(24..31)); # temps
488 vmov $Ch,$e
494 vbsl $Ch,$f,$g @ Ch(e,f,g)
497 vadd.i64 $T1,$Ch,$h

Completed in 419 milliseconds

12