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

1 2

  /external/dropbear/libtomcrypt/src/mac/f9/
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...]
  /external/v8/test/mjsunit/compiler/
loopcount.js 80 function f9() { function
86 assertEquals(42, f9());
  /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
function-attributes.c 36 void f9(void) { f9_t(); } function
x86_64-arguments-nacl.c 46 // CHECK: define i64 @f9()
47 struct s9 { int a; int b; int : 0; } f9(void) { while (1) {} } function
arm-arguments.c 54 // APCS-GNU: define i32 @f9()
55 // AAPCS: define arm_aapcscc i32 @f9()
57 struct s9 f9(void) {} function
  /external/clang/test/Sema/
pragma-unused.c 43 int f9(int x) { function
varargs.c 72 void f9(__builtin_va_list args) function
warn-unused-function.c 27 void f9(void) { f8(f7); } function
private-extern.c 70 void f9() { function
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
Blort.java 29 float f9 = 0.0f; local
  /external/clang/test/Analysis/
stream.c 69 FILE *f9(void) { function
malloc-overflow.c 60 void * f9(int n) function
array-struct.c 85 void f9() { function
null-deref-ps.c 193 int f9(unsigned len) { function
  /external/v8/test/mjsunit/harmony/
block-let-crankshaft.js 34 var functions = [ f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14,
79 function f9() { function
  /external/llvm/test/MC/ELF/
cfi.s 53 f9: label
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
AESEngine.java 253 int f9 = x ^ f8; local
255 return f2 ^ f4 ^ f8 ^ shift(f2 ^ f9, 8) ^ shift(f4 ^ f9, 16) ^ shift(f9, 24);
AESFastEngine.java 586 int f9 = x ^ f8; local
    [all...]
  /external/clang/test/CodeGenCXX/
temporaries.cpp 180 void f9(H h) { function
184 f9(H());
189 f9(h);
x86_32-arguments.cpp 116 s9 f9() { return s9(); } function
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
AES.java 402 int f9 = x ^ f8; local
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-cxx11-nowarn.cpp 86 Agg<float> f9 = {1E50L}; // expected-warning {{ cannot be narrowed }} expected-note {{override}} local

Completed in 2027 milliseconds

1 2