HomeSort by relevance Sort by last modified time
    Searched refs:f8 (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /external/dropbear/libtomcrypt/src/modes/f8/
f8_encrypt.c 15 F8 implementation, encrypt data, Tom St Denis
21 F8 encrypt
25 @param f8 F8 state
28 int f8_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_F8 *f8)
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) |
    [all...]
f8_getiv.c 15 F8 implementation, get IV, Tom St Denis
24 @param f8 The F8 state
27 int f8_getiv(unsigned char *IV, unsigned long *len, symmetric_F8 *f8)
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
    [all...]
f8_setiv.c 15 F8 implementation, set IV, Tom St Denis
24 @param f8 The F8 state
27 int f8_setiv(const unsigned char *IV, unsigned long len, symmetric_F8 *f8)
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)
    [all...]
f8_done.c 15 F8 implementation, finish chain, Tom St Denis
21 @param f8 The F8 chain to terminate
24 int f8_done(symmetric_F8 *f8)
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 $ */
f8_start.c 15 F8 implementation, start chain, Tom St Denis
22 Initialize an F8 context
30 @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
    [all...]
f8_decrypt.c 15 F8 implementation, decrypt data, Tom St Denis
21 F8 decrypt
25 @param f8 F8 state
28 int f8_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_F8 *f8)
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 $ */
f8_test_mode.c 15 F8 implementation, test, Tom St Denis
42 symmetric_F8 f8;
52 if ((err = f8_start(idx, IV, key, sizeof(key), salt, sizeof(salt), 0, &f8)) != CRYPT_OK) {
57 if ((err = f8_encrypt(pt, buf, sizeof(pt), &f8)) != CRYPT_OK) {
58 f8_done(&f8);
61 f8_done(&f8);
74 /* $Source: /cvs/libtom/libtomcrypt/src/modes/f8/f8_test_mode.c,v $ */
  /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
  /external/clang/test/CodeGen/
inline2.c 47 // 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()
2007-09-28-PackedUnionMember.c 14 } f8; member in struct:H
microsoft-call-conv.c 47 void f8(void) { function
function-attributes.c 27 // CHECK: define void @f8()
31 void __attribute__((always_inline)) f8(void) { } function
stdcall-fastcall.c 47 void f8(void) { function
  /external/clang/test/CodeGenCXX/
2010-06-22-ZeroBitfield.cpp 5 s8 f8() { return s8(); } function
  /external/clang/test/Sema/
warn-unused-function.c 26 void f8(void(*a0)(void));
27 void f9(void) { f8(f7); }
expr-address-of.c 111 void f8() { function
112 void *dummy0 = &f8(); // expected-error {{address expression must be an lvalue or a function designator}}
115 void *dummy1 = &(1 ? v : f8()); // expected-error {{address expression must be an lvalue or a function designator}}
117 void *dummy2 = &(f8(), v); // expected-error {{address expression must be an lvalue or a function designator}}
  /external/oprofile/libutil++/tests/
string_filter_tests.cpp 71 string_filter f8(v1, v2);
72 check(f8, "ok", true);
73 check(f8, "no", false);
74 check(f8, "no", false);
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
Blort.java 28 float f8 = 0.0f; local
  /external/clang/test/SemaCXX/
function-extern-c.cpp 36 extern "C" double f8(void);
  /external/libffi/testsuite/libffi.call/
many.c 19 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);
many_win32.c 19 float f8,
26 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
  /external/clang/test/SemaTemplate/
dependent-type-identity.cpp 68 void f8(typename N::X2<T>::template apply<U> *); // expected-note{{previous}}
69 void f8(typename N::X2<U>::template apply<U> *);
70 void f8(typename N::X2<U>::template apply<T> *);
71 void f8(typename ::Nalias::X2<type>::template apply<U_type> *); // expected-error{{redeclar}}
  /external/clang/test/CXX/except/except.spec/
p5-virtual.cpp 36 virtual void f8() noexcept;
72 virtual void f8() noexcept(true);

Completed in 392 milliseconds

1 2 3 4 5