/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Thumb/ |
D | 2009-08-12-ConstIslandAssert.ll | 3 %struct.BF_KEY = type { [18 x i32], [1024 x i32] } 5 define void @BF_encrypt(i32* nocapture %data, %struct.BF_KEY* nocapture %key, i32 %encrypt) nounwin… 7 %0 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 0, i32 0; <i32*> [#uses=2] 17 %7 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %6; <i32*> [#uses=1] 22 %12 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %11; <i32*> [#uses=1] 25 %15 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 undef; <i32*> [#uses=1] 30 %20 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %19; <i32*> [#uses=1] 35 %25 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 0, i32 2; <i32*> [#uses=1] 38 %28 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %27; <i32*> [#uses=1] 43 %33 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %32; <i32*> [#uses=1] [all …]
|
/external/llvm/test/CodeGen/Thumb/ |
D | 2009-08-12-ConstIslandAssert.ll | 3 %struct.BF_KEY = type { [18 x i32], [1024 x i32] } 5 define void @BF_encrypt(i32* nocapture %data, %struct.BF_KEY* nocapture %key, i32 %encrypt) nounwin… 7 %0 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 0, i32 0; <i32*> [#uses=2] 17 %7 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %6; <i32*> [#uses=1] 22 %12 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %11; <i32*> [#uses=1] 25 %15 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 undef; <i32*> [#uses=1] 30 %20 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %19; <i32*> [#uses=1] 35 %25 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 0, i32 2; <i32*> [#uses=1] 38 %28 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %27; <i32*> [#uses=1] 43 %33 = getelementptr %struct.BF_KEY, %struct.BF_KEY* %key, i32 0, i32 1, i32 %32; <i32*> [#uses=1] [all …]
|
/external/swiftshader/third_party/LLVM/test/CodeGen/Thumb/ |
D | 2009-08-12-ConstIslandAssert.ll | 3 %struct.BF_KEY = type { [18 x i32], [1024 x i32] } 5 define void @BF_encrypt(i32* nocapture %data, %struct.BF_KEY* nocapture %key, i32 %encrypt) nounwin… 7 %0 = getelementptr %struct.BF_KEY* %key, i32 0, i32 0, i32 0; <i32*> [#uses=2] 17 %7 = getelementptr %struct.BF_KEY* %key, i32 0, i32 1, i32 %6; <i32*> [#uses=1] 22 %12 = getelementptr %struct.BF_KEY* %key, i32 0, i32 1, i32 %11; <i32*> [#uses=1] 25 %15 = getelementptr %struct.BF_KEY* %key, i32 0, i32 1, i32 undef; <i32*> [#uses=1] 30 %20 = getelementptr %struct.BF_KEY* %key, i32 0, i32 1, i32 %19; <i32*> [#uses=1] 35 %25 = getelementptr %struct.BF_KEY* %key, i32 0, i32 0, i32 2; <i32*> [#uses=1] 38 %28 = getelementptr %struct.BF_KEY* %key, i32 0, i32 1, i32 %27; <i32*> [#uses=1] 43 %33 = getelementptr %struct.BF_KEY* %key, i32 0, i32 1, i32 %32; <i32*> [#uses=1] [all …]
|
/external/boringssl/src/include/openssl/ |
D | blowfish.h | 76 } BF_KEY; typedef 78 OPENSSL_EXPORT void BF_set_key(BF_KEY *key, size_t len, const uint8_t *data); 79 OPENSSL_EXPORT void BF_encrypt(uint32_t *data, const BF_KEY *key); 80 OPENSSL_EXPORT void BF_decrypt(uint32_t *data, const BF_KEY *key); 83 const BF_KEY *key, int enc); 85 size_t length, const BF_KEY *schedule,
|
/external/boringssl/src/decrepit/blowfish/ |
D | blowfish.c | 76 void BF_encrypt(uint32_t *data, const BF_KEY *key) { in BF_encrypt() 108 void BF_decrypt(uint32_t *data, const BF_KEY *key) { in BF_decrypt() 141 const BF_KEY *key, int encrypt) { in BF_ecb_encrypt() 156 const BF_KEY *schedule, uint8_t *ivec, int encrypt) { in BF_cbc_encrypt() 231 static const BF_KEY bf_init = { 445 void BF_set_key(BF_KEY *key, size_t len, const uint8_t *data) { in BF_set_key() 450 OPENSSL_memcpy(key, &bf_init, sizeof(BF_KEY)); in BF_set_key() 502 const BF_KEY *schedule, uint8_t *ivec, int *num, in BF_cfb64_encrypt() 559 BF_KEY *bf_key = ctx->cipher_data; in bf_init_key() 566 BF_KEY *bf_key = ctx->cipher_data; in bf_ecb_cipher() [all …]
|
/external/python/cpython3/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 348 BF_KEY = bf_key_st variable
|
/external/python/cpython2/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 348 BF_KEY = bf_key_st variable
|