Searched defs:f8 (Results 1 - 25 of 42) sorted by relevance

12

/external/dropbear/libtomcrypt/src/modes/f8/
H A Df8_done.c21 @param f8 The F8 chain to terminate
24 int f8_done(symmetric_F8 *f8) argument
27 LTC_ARGCHK(f8 != NULL);
29 if ((err = cipher_is_valid(f8->cipher)) != CRYPT_OK) {
32 cipher_descriptor[f8->cipher].done(&f8->key);
40 /* $Source: /cvs/libtom/libtomcrypt/src/modes/f8/f8_done.c,v $ */
H A Df8_getiv.c24 @param f8 The F8 state
27 int f8_getiv(unsigned char *IV, unsigned long *len, symmetric_F8 *f8) argument
31 LTC_ARGCHK(f8 != NULL);
32 if ((unsigned long)f8->blocklen > *len) {
33 *len = f8->blocklen;
36 XMEMCPY(IV, f8->IV, f8->blocklen);
37 *len = f8->blocklen;
44 /* $Source: /cvs/libtom/libtomcrypt/src/modes/f8/f8_getiv.c,v $ */
H A Df8_decrypt.c25 @param f8 F8 state
28 int f8_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_F8 *f8) argument
32 LTC_ARGCHK(f8 != NULL);
33 return f8_encrypt(ct, pt, len, f8);
41 /* $Source: /cvs/libtom/libtomcrypt/src/modes/f8/f8_decrypt.c,v $ */
H A Df8_setiv.c24 @param f8 The F8 state
27 int f8_setiv(const unsigned char *IV, unsigned long len, symmetric_F8 *f8) argument
32 LTC_ARGCHK(f8 != NULL);
34 if ((err = cipher_is_valid(f8->cipher)) != CRYPT_OK) {
38 if (len != (unsigned long)f8->blocklen) {
43 f8->padlen = 0;
44 return cipher_descriptor[f8->cipher].ecb_encrypt(IV, f8->IV, &f8->key);
50 /* $Source: /cvs/libtom/libtomcrypt/src/modes/f8/f8_seti
[all...]
H A Df8_encrypt.c25 @param f8 F8 state
28 int f8_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_F8 *f8) argument
34 LTC_ARGCHK(f8 != NULL);
35 if ((err = cipher_is_valid(f8->cipher)) != CRYPT_OK) {
40 if (f8->blocklen < 0 || f8->blocklen > (int)sizeof(f8->IV) ||
41 f8->padlen < 0 || f8->padlen > (int)sizeof(f8
[all...]
H A Df8_start.c30 @param f8 The F8 state to initialize
36 int num_rounds, symmetric_F8 *f8)
44 LTC_ARGCHK(f8 != NULL);
57 f8->blockcnt = 0;
58 f8->cipher = cipher;
59 f8->blocklen = cipher_descriptor[cipher].block_length;
60 f8->padlen = f8->blocklen;
75 if ((err = cipher_descriptor[cipher].setup(tkey, keylen, num_rounds, &f8->key)) != CRYPT_OK) {
80 if ((err = cipher_descriptor[f8
33 f8_start( int cipher, const unsigned char *IV, const unsigned char *key, int keylen, const unsigned char *salt_key, int skeylen, int num_rounds, symmetric_F8 *f8) argument
[all...]
/external/clang/test/CodeGen/
H A Dstdcall-fastcall.c47 void f8(void) { function
H A D2007-09-28-PackedUnionMember.c14 } f8; member in struct:H
H A Dinline2.c47 // CHECK-GNU89: define available_externally i32 @f8()
48 // CHECK-C99: define i32 @f8()
49 extern int f8(void);
50 extern inline int f8(void) { return 0; } function
60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A Dmicrosoft-call-conv.c47 void f8(void) { function
H A Dswitch.c104 // CHECK: define i32 @f8(
107 int f8(unsigned x) { function
H A Dpointer-arithmetic.c24 void f8(void *a, int b) { return *(a + b); } function
H A Dexprs.c104 int f8() { function
H A Dfunction-attributes.c27 // CHECK: define void @f8()
31 void __attribute__((always_inline)) f8(void) { } function
/external/clang/test/CodeGenCXX/
H A D2010-06-22-ZeroBitfield.cpp5 s8 f8() { return s8(); } function
H A Dmangle-neon-vectors.cpp32 void f8(poly16x8_t v) { } function
/external/v8/test/mjsunit/compiler/
H A Dloopcount.js71 function f8() { function
77 assertEquals(0x40000002, f8());
/external/clang/test/Sema/
H A Dpragma-unused.c39 int f8(int x) { // expected-warning{{unused parameter 'x'}} function
H A Dvarargs.c64 void f8(int a, ...) { function
H A Dprivate-extern.c64 void f8() { function
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/ExecutionContexts/
H A D10.1.3-1.js152 function f8(x,x,x,x) function
163 actual = f8(1,2,3,4);
/external/clang/test/Analysis/
H A Dmalloc-overflow.c52 void * f8(int n) function
H A Dstream.c62 void f8(int c) { function
/external/libffi/testsuite/libffi.call/
H A Dmany.c19 float f8,
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.c19 float f8,
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

Completed in 321 milliseconds

12