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

1 2 3 4 5 6

  /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()
switch.c 118 // CHECK: define i32 @f9()
129 int f9() { function
  /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/
attr-args.c 12 inline __attribute__((used(a))) void *f9(); // expected-error {{'used' attribute takes no arguments}}
pragma-unused.c 43 int f9(int x) { function
private-extern.c 71 void f9() { function
warn-unused-function.c 27 void f9(void) { f8(f7); } function
  /external/clang/test/CXX/except/except.spec/
p5-virtual.cpp 37 virtual void f9() noexcept(false);
73 virtual void f9() noexcept(true);
  /device/asus/flo/
audio_effects.conf 66 uuid 119341a0-8469-11df-81f9-0002a5d5c51b
90 uuid 93f04452-e4fe-41cc-91f9-e475b6d1d69f
  /device/lge/hammerhead/
audio_effects.conf 91 uuid 119341a0-8469-11df-81f9-0002a5d5c51b
125 uuid 93f04452-e4fe-41cc-91f9-e475b6d1d69f
  /device/lge/mako/
audio_effects.conf 59 uuid 119341a0-8469-11df-81f9-0002a5d5c51b
83 uuid 93f04452-e4fe-41cc-91f9-e475b6d1d69f
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/
p1.cpp 15 int (*f9(int n))(int n [[carries_dependency]]); // expected-error {{'[[carries_dependency]]' attribute only allowed on parameter in a function declaration}}
  /external/clang/test/CodeGenCXX/
mangle-neon-vectors.cpp 37 void f9(poly8x16_t v) {} function
  /external/llvm/test/MC/SystemZ/
regs-good.s 61 #CHECK: ler %f8, %f9 # encoding: [0x38,0x89]
70 ler %f8,%f9
79 #CHECK: ldr %f8, %f9 # encoding: [0x28,0x89]
88 ldr %f8,%f9
95 #CHECK: lxr %f8, %f9 # encoding: [0xb3,0x65,0x00,0x89]
100 lxr %f8,%f9
128 #CHECK: .cfi_offset %f9, 200
162 .cfi_offset %f9,200
  /frameworks/av/media/libeffects/data/
audio_effects.conf 102 uuid 119341a0-8469-11df-81f9-0002a5d5c51b
126 uuid 93f04452-e4fe-41cc-91f9-e475b6d1d69f
  /bionic/libc/kernel/arch-mips/asm/
fpregdef.h 40 #define ft2f $f9
86 #define ft5 $f9

Completed in 437 milliseconds

1 2 3 4 5 6