Searched defs:f9 (Results 1 - 25 of 33) sorted by relevance

12

/external/dropbear/libtomcrypt/src/mac/f9/
H A Df9_done.c15 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) argument
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
[all...]
H A Df9_init.c21 @param f9 [out] f9 state to initialize
27 int f9_init(f9_state *f9, int cipher, const unsigned char *key, unsigned long keylen) argument
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);
56 zeromem(f9->ACC, cipher_descriptor[cipher].block_length);
57 f9->blocksize = cipher_descriptor[cipher].block_length;
58 f9
[all...]
H A Df9_process.c15 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) argument
30 LTC_ARGCHK(f9 != NULL);
34 if ((err = cipher_is_valid(f9->cipher)) != CRYPT_OK) {
38 if ((f9->blocksize > cipher_descriptor[f9
[all...]
H A Df9_memory.c15 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);
63 XFREE(f9);
[all...]
H A Df9_memory_multi.c16 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 proces
[all...]
/external/v8/test/mjsunit/compiler/
H A Dloopcount.js80 function f9() { function
86 assertEquals(42, f9());
/external/clang/test/CodeGen/
H A Dinline2.c52 // 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()
H A Dswitch.c118 // CHECK: define i32 @f9()
129 int f9() { function
H A Dfunction-attributes.c37 void f9(void) { f9_t(); } function
H A Darm-arguments.c53 // APCS-GNU: define i32 @f9()
54 // AAPCS: define arm_aapcscc i32 @f9()
56 struct s9 f9(void) {} function
/external/clang/test/Sema/
H A Dpragma-unused.c43 int f9(int x) { function
H A Dvarargs.c72 void f9(__builtin_va_list args) function
H A Dwarn-unused-function.c27 void f9(void) { f8(f7); } function
H A Dprivate-extern.c70 void f9() { function
/external/clang/test/Analysis/
H A Dmalloc-overflow.c60 void * f9(int n) function
H A Dstream.c69 FILE *f9(void) { function
H A Darray-struct.c86 void f9() { function
H A Dnull-deref-ps.c193 int f9(unsigned len) { function
/external/libffi/testsuite/libffi.call/
H A Dmany.c20 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);
12 many(float f1, float f2, float f3, float f4, float f5, float f6, float f7, float f8, float f9, float f10, float f11, float f12, float f13) argument
H A Dmany_win32.c20 float f9,
26 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
12 stdcall_many(float f1, float f2, float f3, float f4, float f5, float f6, float f7, float f8, float f9, float f10, float f11, float f12, float f13) argument
/external/llvm/test/MC/ELF/
H A Dcfi.s53 f9: label
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-tuple.h592 GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2),
593 f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {}
702 const T8& f8, const T9& f9) {
703 return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9);
700 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8, const T9& f9) argument
/external/clang/test/CodeGenCXX/
H A Dtemporaries.cpp180 void f9(H h) { function
184 f9(H());
189 f9(h);
H A Dx86_32-arguments.cpp116 s9 f9() { return s9(); } function
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-tuple.h592 GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2),
593 f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {}
702 const T8& f8, const T9& f9) {
703 return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9);
700 make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8, const T9& f9) argument

Completed in 370 milliseconds

12