/external/dropbear/libtomcrypt/src/mac/f9/ |
f9_process.c | 15 f9 Support, process blocks with f9 20 /** Process data through f9-MAC 21 @param f9 The f9-MAC state 26 int f9_process(f9_state *f9, const unsigned char *in, unsigned long inlen) 30 LTC_ARGCHK(f9 != NULL); 34 if ((err = cipher_is_valid(f9->cipher)) != CRYPT_OK) { 38 if ((f9->blocksize > cipher_descriptor[f9->cipher].block_length) || (f9->blocksize < 0) | [all...] |
f9_done.c | 15 f9 Support, terminate the state 20 /** Terminate the f9-MAC state 21 @param f9 f9 state to terminate 26 int f9_done(f9_state *f9, unsigned char *out, unsigned long *outlen) 29 LTC_ARGCHK(f9 != NULL); 33 if ((err = cipher_is_valid(f9->cipher)) != CRYPT_OK) { 37 if ((f9->blocksize > cipher_descriptor[f9->cipher].block_length) || (f9->blocksize < 0) | [all...] |
f9_init.c | 15 F9 Support, start an F9 state 20 /** Initialize F9-MAC state 21 @param f9 [out] f9 state to initialize 27 int f9_init(f9_state *f9, int cipher, const unsigned char *key, unsigned long keylen) 31 LTC_ARGCHK(f9 != NULL); 45 if ((err = cipher_descriptor[cipher].setup(key, keylen, 0, &f9->key)) != CRYPT_OK) { 51 f9->akey[x] = key[x] ^ 0xAA; 55 zeromem(f9->IV, cipher_descriptor[cipher].block_length) [all...] |
f9_memory.c | 15 f9 Support, Process a block through F9-MAC 20 /** f9-MAC a block of memory 35 f9_state *f9; local 48 f9 = XCALLOC(1, sizeof(*f9)); 49 if (f9 == NULL) { 53 if ((err = f9_init(f9, cipher, key, keylen)) != CRYPT_OK) { 57 if ((err = f9_process(f9, in, inlen)) != CRYPT_OK) { 61 err = f9_done(f9, out, outlen) [all...] |
f9_memory_multi.c | 16 f9 support, process multiple blocks of memory, Tom St Denis 22 f9 multiple blocks of memory 28 @param in The data to send through f9 29 @param inlen The length of the data to send through f9 (octets) 30 @param ... tuples of (data,len) pairs to f9, terminated with a (NULL,x) (x=don't care) 39 f9_state *f9; local 49 /* allocate ram for f9 state */ 50 f9 = XMALLOC(sizeof(f9_state)); 51 if (f9 == NULL) { 55 /* f9 process the message * [all...] |
f9_file.c | 15 f9 support, process a file, Tom St Denis 21 f9 a file 25 @param filename The name of the file you wish to f9 39 f9_state f9; 53 if ((err = f9_init(&f9, cipher, key, keylen)) != CRYPT_OK) { 60 if ((err = f9_process(&f9, buf, x)) != CRYPT_OK) { 67 if ((err = f9_done(&f9, out, outlen)) != CRYPT_OK) { 81 /* $Source: /cvs/libtom/libtomcrypt/src/mac/f9/f9_file.c,v $ */
|
/external/clang/test/CodeGen/ |
inline2.c | 52 // CHECK-GNU89: define available_externally i32 @f9() 53 // CHECK-C99: define i32 @f9() 54 extern inline int f9(void); 55 extern inline int f9(void) { return 0; } function 60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
|
function-attributes.c | 37 void f9(void) { f9_t(); } function
|
switch.c | 118 // CHECK: define i32 @f9() 129 int f9() { function
|
arm-arguments.c | 53 // APCS-GNU: define i32 @f9() 54 // AAPCS: define arm_aapcscc i32 @f9() 56 struct s9 f9(void) {} function
|
/bionic/libm/ia64/ |
s_fmal.S | 32 fma f8 = f8, f9, f10
|
s_fma.S | 32 fma.d f8 = f8, f9, f10
|
s_fmaf.S | 32 fma.s f8 = f8, f9, f10
|
/dalvik/dx/tests/079-dex-local-variable-renumbering/ |
Blort.java | 29 float f9 = 0.0f; local
|
/external/libffi/testsuite/libffi.call/ |
many.c | 20 float f9, 29 (double) f6, (double) f7, (double) f8, (double) f9, (double) f10, 33 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
|
many_win32.c | 20 float f9, 26 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
|
/external/oprofile/libutil++/tests/ |
string_filter_tests.cpp | 79 string_filter f9(v1, v2); 80 check(f9, "ok", true); 81 check(f9, "no2", false);
|
/external/clang/test/Sema/ |
warn-unused-function.c | 27 void f9(void) { f8(f7); } function
|
pragma-unused.c | 43 int f9(int x) { function
|
private-extern.c | 70 void f9() { function
|
varargs.c | 72 void f9(__builtin_va_list args) function
|
/external/clang/test/CXX/except/except.spec/ |
p5-virtual.cpp | 37 virtual void f9() noexcept(false); 73 virtual void f9() noexcept(true);
|
/external/clang/test/CodeGenCXX/ |
temporaries.cpp | 180 void f9(H h) { function 184 f9(H()); 189 f9(h);
|
/external/clang/test/Analysis/ |
stream.c | 69 FILE *f9(void) { function
|
/external/dropbear/libtomcrypt/ |
Android.mk | 29 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 \
|