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

/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/webkit/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/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
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-tuple.h536 GTEST_BY_REF_(T8) f8) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4),
537 f5_(f5), f6_(f6), f7_(f7), f8_(f8) {}
590 GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2), member in class:std::tr1::tuple
591 f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {}
693 const T8& f8) {
694 return GTEST_9_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8);
700 const T8& f8, const T9& f9) {
701 return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9);
691 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) argument
698 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/v8/src/mips/
H A Dsimulator-mips.h134 f0, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, enumerator in enum:assembler::mips::Simulator::FPURegister
H A Dassembler-mips.cc92 const FPURegister f8 = { 8 }; member in namespace:v8::internal

Completed in 68 milliseconds