Home
last modified time | relevance | path

Searched refs:f9 (Results 1 – 25 of 131) sorted by relevance

123456

/external/dropbear/libtomcrypt/src/mac/f9/
Df9_process.c26 int f9_process(f9_state *f9, const unsigned char *in, unsigned long inlen) in f9_process() argument
30 LTC_ARGCHK(f9 != NULL); in f9_process()
34 if ((err = cipher_is_valid(f9->cipher)) != CRYPT_OK) { in f9_process()
38 if ((f9->blocksize > cipher_descriptor[f9->cipher].block_length) || (f9->blocksize < 0) || in f9_process()
39 (f9->buflen > f9->blocksize) || (f9->buflen < 0)) { in f9_process()
44 if (f9->buflen == 0) { in f9_process()
45 while (inlen >= (unsigned long)f9->blocksize) { in f9_process()
46 for (x = 0; x < f9->blocksize; x += sizeof(LTC_FAST_TYPE)) { in f9_process()
47 *((LTC_FAST_TYPE*)&(f9->IV[x])) ^= *((LTC_FAST_TYPE*)&(in[x])); in f9_process()
49 cipher_descriptor[f9->cipher].ecb_encrypt(f9->IV, f9->IV, &f9->key); in f9_process()
[all …]
Df9_done.c26 int f9_done(f9_state *f9, unsigned char *out, unsigned long *outlen) in f9_done() argument
29 LTC_ARGCHK(f9 != NULL); in f9_done()
33 if ((err = cipher_is_valid(f9->cipher)) != CRYPT_OK) { in f9_done()
37 if ((f9->blocksize > cipher_descriptor[f9->cipher].block_length) || (f9->blocksize < 0) || in f9_done()
38 (f9->buflen > f9->blocksize) || (f9->buflen < 0)) { in f9_done()
42 if (f9->buflen != 0) { in f9_done()
44 cipher_descriptor[f9->cipher].ecb_encrypt(f9->IV, f9->IV, &f9->key); in f9_done()
45 f9->buflen = 0; in f9_done()
46 for (x = 0; x < f9->blocksize; x++) { in f9_done()
47 f9->ACC[x] ^= f9->IV[x]; in f9_done()
[all …]
Df9_init.c27 int f9_init(f9_state *f9, int cipher, const unsigned char *key, unsigned long keylen) in f9_init() argument
31 LTC_ARGCHK(f9 != NULL); in f9_init()
45 if ((err = cipher_descriptor[cipher].setup(key, keylen, 0, &f9->key)) != CRYPT_OK) { in f9_init()
51 f9->akey[x] = key[x] ^ 0xAA; in f9_init()
55 zeromem(f9->IV, cipher_descriptor[cipher].block_length); in f9_init()
56 zeromem(f9->ACC, cipher_descriptor[cipher].block_length); in f9_init()
57 f9->blocksize = cipher_descriptor[cipher].block_length; in f9_init()
58 f9->cipher = cipher; in f9_init()
59 f9->buflen = 0; in f9_init()
60 f9->keylen = keylen; in f9_init()
Df9_memory.c35 f9_state *f9; in f9_memory() local
48 f9 = XCALLOC(1, sizeof(*f9)); in f9_memory()
49 if (f9 == NULL) { in f9_memory()
53 if ((err = f9_init(f9, cipher, key, keylen)) != CRYPT_OK) { in f9_memory()
57 if ((err = f9_process(f9, in, inlen)) != CRYPT_OK) { in f9_memory()
61 err = f9_done(f9, out, outlen); in f9_memory()
63 XFREE(f9); in f9_memory()
Df9_memory_multi.c39 f9_state *f9; in f9_memory_multi() local
50 f9 = XMALLOC(sizeof(f9_state)); in f9_memory_multi()
51 if (f9 == NULL) { in f9_memory_multi()
56 if ((err = f9_init(f9, cipher, key, keylen)) != CRYPT_OK) { in f9_memory_multi()
64 if ((err = f9_process(f9, curptr, curlen)) != CRYPT_OK) { in f9_memory_multi()
74 if ((err = f9_done(f9, out, outlen)) != CRYPT_OK) { in f9_memory_multi()
79 zeromem(f9, sizeof(f9_state)); in f9_memory_multi()
81 XFREE(f9); in f9_memory_multi()
Df9_file.c39 f9_state f9; in f9_file()
53 if ((err = f9_init(&f9, cipher, key, keylen)) != CRYPT_OK) { in f9_file()
60 if ((err = f9_process(&f9, buf, x)) != CRYPT_OK) { in f9_file()
67 if ((err = f9_done(&f9, out, outlen)) != CRYPT_OK) { in f9_file()
/external/clang/test/CodeGen/
Dinline2.c54 extern inline int f9(void);
55 extern inline int f9(void) { return 0; } in f9() function
60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9() in test_all()
/external/clang/test/SemaObjCXX/
Darc-overloading.mm148 int &f9(__strong id&); function
149 float &f9(const __autoreleasing id&); function
157 int &ir1 = f9(strong_id);
158 float &fr1 = f9(autoreleasing_id);
159 float &fr2 = f9(unsafe_id);
160 float &fr2a = f9(weak_id);
166 float &fr3 = f9(strong_a);
167 float &fr4 = f9(autoreleasing_a);
168 float &fr5 = f9(unsafe_unretained_a);
169 float &fr6 = f9(weak_a);
/external/libffi/testsuite/libffi.call/
Dmany.c20 float f9, in many() argument
29 (double) f6, (double) f7, (double) f8, (double) f9, (double) f10, in many()
33 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13); in many()
Dmany_win32.c20 float f9, in stdcall_many() argument
26 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13); in stdcall_many()
/external/oprofile/libutil++/tests/
Dstring_filter_tests.cpp79 string_filter f9(v1, v2); in main() local
80 check(f9, "ok", true); in main()
81 check(f9, "no2", false); in main()
/external/llvm/test/MC/Mips/
Dmips-fpu-instructions.s12 # CHECK: add.s $f9, $f6, $f7 # encoding: [0x40,0x32,0x07,0x46]
18 # CHECK: mul.s $f9, $f6, $f7 # encoding: [0x42,0x32,0x07,0x46]
26 # CHECK: sub.s $f9, $f6, $f7 # encoding: [0x41,0x32,0x07,0x46]
33 add.s $f9,$f6,$f7
39 mul.s $f9,$f6, $f7
47 sub.s $f9,$f6,$f7
151 # CHECK: swc1 $f9, 9158($7) # encoding: [0xc6,0x23,0xe9,0xe4]
162 swc1 $f9,9158($a3)
/external/valgrind/main/coregrind/m_dispatch/
Ddispatch-s390x-linux.S87 std %f9,160+8(SP)
280 ld %f9,160+8(SP)
323 std %f9,160+8(SP)
353 ld %f9,160+8(SP)
/external/openssl/crypto/pkcs7/t/
Dc.pem21 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
28 52:15:ea:88:f4:f0:f9:0b:ef:ce:d5:f8:83:40:61:16:5e:55:
29 f9:ce:2d:d1:8b:31:5c:03:c6:2d:10:7c:61:d5:5c:0a:42:97:
Ds.pem30 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
37 52:15:ea:88:f4:f0:f9:0b:ef:ce:d5:f8:83:40:61:16:5e:55:
38 f9:ce:2d:d1:8b:31:5c:03:c6:2d:10:7c:61:d5:5c:0a:42:97:
Dserver.pem21 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
28 52:15:ea:88:f4:f0:f9:0b:ef:ce:d5:f8:83:40:61:16:5e:55:
29 f9:ce:2d:d1:8b:31:5c:03:c6:2d:10:7c:61:d5:5c:0a:42:97:
/external/v8/test/mjsunit/compiler/
Dloopcount.js80 function f9() { function
86 assertEquals(42, f9());
/external/openssl/crypto/pkcs7/
Dinfo.pem21 fd:ef:41:09:91:ed:bc:ad:98:f9:f6:28:90:62:6f:
28 52:15:ea:88:f4:f0:f9:0b:ef:ce:d5:f8:83:40:61:16:5e:55:
29 f9:ce:2d:d1:8b:31:5c:03:c6:2d:10:7c:61:d5:5c:0a:42:97:
/external/clang/test/CXX/except/except.spec/
Dp5-virtual.cpp37 virtual void f9() noexcept(false);
73 virtual void f9() noexcept(true);
/external/dropbear/libtomcrypt/
DAndroid.mk29 src/hashes/whirl/whirl.c src/mac/f9/f9_done.c src/mac/f9/f9_file.c src/mac/f9/f9_init.c \
30 src/mac/f9/f9_memory.c src/mac/f9/f9_memory_multi.c src/mac/f9/f9_process.c src/mac/f9/f9_test.c \
/external/clang/test/CodeGenCXX/
Dtemporaries.cpp180 void f9(H h) { in f9() function
184 f9(H()); in f9()
189 f9(h); in f9()
/external/libffi/src/ia64/
Dunix.S65 ldf.fill f9 = [r16], 32
206 (p6) stfs [r16] = f9, 8
230 (p6) stfd [r16] = f9, 16
254 (p6) stfe [r16] = f9, 32
309 stf.spill [r17] = f9, 32
435 (p6) ldfs f9 = [r17], 8
463 (p6) ldfd f9 = [r17], 16
491 (p6) ldfe f9 = [r17], 32
/external/kernel-headers/original/asm-mips/
Dfpregdef.h36 #define ft2f $f9
77 #define ft5 $f9
/external/llvm/test/CodeGen/ARM/
Dfpconv.ll84 define float @f9(i32 %a) {
85 ;CHECK-VFP: f9:
87 ;CHECK: f9:
/external/llvm/test/MC/Disassembler/Mips/
Dmips32r2.txt15 # CHECK: add.s $f9, $f6, $f7
225 # CHECK: ldc1 $f9, 9158($7)
243 # CHECK: lwc1 $f9, 9158($7)
291 # CHECK: mul.s $f9, $f6, $f7
342 # CHECK: sdc1 $f9, 9158($7)
393 # CHECK: sub.s $f9, $f6, $f7
405 # CHECK: swc1 $f9, 9158($7)

123456