Searched refs:ecb (Results 1 - 19 of 19) sorted by relevance

/external/clang/test/SemaCXX/
H A Dconvert-to-bool.cpp14 void test_conv_to_bool(ConvToBool ctb, ConvToInt cti, ExplicitConvToBool ecb) { argument
17 if (ecb) { }
20 for (; ecb; ) { }
23 while (ecb) { }
26 do { } while (ecb);
30 if (!ecb) { }
32 bool b1 = !ecb;
33 if (ctb && ecb) { }
34 bool b2 = ctb && ecb;
35 if (ctb || ecb) { }
45 test_explicit_bool(ExplicitConvToBool ecb) argument
[all...]
/external/dropbear/libtomcrypt/src/modes/ecb/
H A Decb_decrypt.c25 @param ecb ECB state
28 int ecb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_ECB *ecb) argument
33 LTC_ARGCHK(ecb != NULL);
34 if ((err = cipher_is_valid(ecb->cipher)) != CRYPT_OK) {
37 if (len % cipher_descriptor[ecb->cipher].block_length) {
42 if (cipher_descriptor[ecb->cipher].accel_ecb_decrypt != NULL) {
43 return cipher_descriptor[ecb->cipher].accel_ecb_decrypt(ct, pt, len / cipher_descriptor[ecb->cipher].block_length, &ecb->key);
46 if ((err = cipher_descriptor[ecb
[all...]
H A Decb_encrypt.c25 @param ecb ECB state
28 int ecb_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_ECB *ecb) argument
33 LTC_ARGCHK(ecb != NULL);
34 if ((err = cipher_is_valid(ecb->cipher)) != CRYPT_OK) {
37 if (len % cipher_descriptor[ecb->cipher].block_length) {
42 if (cipher_descriptor[ecb->cipher].accel_ecb_encrypt != NULL) {
43 return cipher_descriptor[ecb->cipher].accel_ecb_encrypt(pt, ct, len / cipher_descriptor[ecb->cipher].block_length, &ecb->key);
46 if ((err = cipher_descriptor[ecb
[all...]
H A Decb_done.c21 @param ecb The ECB chain to terminate
24 int ecb_done(symmetric_ECB *ecb) argument
27 LTC_ARGCHK(ecb != NULL);
29 if ((err = cipher_is_valid(ecb->cipher)) != CRYPT_OK) {
32 cipher_descriptor[ecb->cipher].done(&ecb->key);
40 /* $Source: /cvs/libtom/libtomcrypt/src/modes/ecb/ecb_done.c,v $ */
H A Decb_start.c27 @param ecb The ECB state to initialize
30 int ecb_start(int cipher, const unsigned char *key, int keylen, int num_rounds, symmetric_ECB *ecb) argument
34 LTC_ARGCHK(ecb != NULL);
39 ecb->cipher = cipher;
40 ecb->blocklen = cipher_descriptor[cipher].block_length;
41 return cipher_descriptor[cipher].setup(key, keylen, num_rounds, &ecb->key);
46 /* $Source: /cvs/libtom/libtomcrypt/src/modes/ecb/ecb_start.c,v $ */
/external/llvm/lib/Support/
H A DIntEqClasses.cpp35 unsigned ecb = EC[b]; local
39 while (eca != ecb)
40 if (eca < ecb)
41 EC[b] = eca, b = ecb, ecb = EC[b];
43 EC[a] = ecb, a = eca, eca = EC[a];
/external/quake/quake/src/WinQuake/
H A Dnet_ipx.cpp101 ECB ecb; member in struct:__anon10443
171 static void IPX_ListenForPacket(ECB *ecb) argument
176 regs.x.es = ptr2real(ecb) >> 4;
177 regs.x.si = ptr2real(ecb) & 0xf;
203 ECB *ecb; local
208 if (lma->socketbuffer[s][n].ecb.inUse == 0)
210 for (ecb = readlist[s], prev = NULL; ecb; ecb = ecb
449 ECB *ecb; local
[all...]
/external/openssl/crypto/des/times/
H A Dalpha.cc4 options des ecb/s
H A Dhpux.cc3 options des ecb/s
H A Daix.cc12 options des ecb/s
H A Dusparc.cc17 options des ecb/s
/external/dropbear/libtomcrypt/
H A DAndroid.mk62 src/modes/ecb/ecb_decrypt.c src/modes/ecb/ecb_done.c src/modes/ecb/ecb_encrypt.c \
63 src/modes/ecb/ecb_start.c src/modes/f8/f8_decrypt.c src/modes/f8/f8_done.c src/modes/f8/f8_encrypt.c \
H A Dcrypt.tex841 support this mode directly but it is fairly easy to emulate with a call to the cipher's ecb\_encrypt() callback function.
851 \index{ecb\_start()} \index{cfb\_start()} \index{cbc\_start()} \index{ofb\_start()} \index{ctr\_start()}
872 symmetric_ECB *ecb);
893 \index{ecb\_encrypt()} \index{ecb\_decrypt()} \index{cfb\_encrypt()} \index{cfb\_decrypt()}
906 Where \textit{XXX} is one of $\lbrace ecb, cbc, ctr, cfb, ofb \rbrace$.
947 \index{ecb\_done()} \index{cbc\_done()}\index{cfb\_done()}\index{ofb\_done()} \index{ctr\_done()}
5659 To process a single block in ECB mode the ecb\_encrypt() and ecb\_decrypt() functions were provided. The plaintext and ciphertext buffers are allowed to overlap so you
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_cipher.h737 int keylen, int num_rounds, symmetric_ECB *ecb);
738 int ecb_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_ECB *ecb);
739 int ecb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_ECB *ecb);
740 int ecb_done(symmetric_ECB *ecb);
/external/openssl/crypto/evp/
H A Devp_locl.h172 BLOCK_CIPHER_def1(cname, ecb, ecb, ECB, kstruct, nid, block_size, key_len, \
H A De_aes.c489 BLOCK_CIPHER_generic(nid,keylen,16,0,ecb,ecb,ECB,flags|EVP_CIPH_FLAG_DEFAULT_ASN1) \
/external/dropbear/libtomcrypt/testprof/
H A Dx86_prof.c295 symmetric_ECB ecb; local
302 ecb_start(x, key, cipher_descriptor[x].min_key_length, 0, &ecb);
310 #define DO1 ecb_encrypt(pt, pt, sizeof(pt), &ecb);
329 #define DO1 ecb_decrypt(pt, pt, sizeof(pt), &ecb);
345 ecb_done(&ecb);
/external/openssl/crypto/aes/asm/
H A Dbsaes-x86_64.pl112 my $ecb=0; # suppress unreferenced ECB subroutines, spare some space...
1097 if ($ecb) {
2981 $code.=<<___ if ($ecb);
3010 $code.=<<___ if ($ecb);
/external/dropbear/
H A Dconfigure11297 mkdir -p libtomcrypt/src/modes/ecb
11299 as_dir=libtomcrypt/src/modes/ecb
11317 fi || { { echo "$as_me:$LINENO: error: cannot create directory libtomcrypt/src/modes/ecb" >&5
11318 echo "$as_me: error: cannot create directory libtomcrypt/src/modes/ecb" >&2;}

Completed in 339 milliseconds