Searched defs:F1 (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dmd5.c69 /* The four core functions - F1 is optimized somewhat */
71 /* #define F1(x, y, z) (x & y | ~x & z) */
72 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
73 #define F2(x, y, z) F1(z, x, y)
94 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
95 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
96 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
97 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
98 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
99 MD5STEP(F1,
[all...]
/illumos-gate/usr/src/cmd/tbl/
H A Dt0.c29 int F1 = 0; variable
/illumos-gate/usr/src/lib/libast/common/vmalloc/
H A Dmalloc.c73 #define F1(f,t1,a1) f(t1 a1) macro
77 #define F1(f,t1,a1) f(a1) t1 a1; macro
518 extern Void_t F1(_cfree, Void_t*,p) { free(p); } function
519 extern Void_t F1(_free, Void_t*,p) { free(p); } function
520 extern Void_t* F1(_malloc, size_t,n) { return malloc(n); } function
525 extern Void_t* F1(_pvalloc, size_t,n) { return pvalloc(n); } function
529 extern Void_t* F1(_valloc, size_t,n) { return valloc(n); } function
535 extern Void_t F1(__cfree, Void_t*,p) { free(p); } function
536 extern Void_t F1(__free, Void_t*,p) { free(p); } function
537 extern Void_t* F1(__mallo function
542 extern Void_t* F1(__pvalloc, size_t,n) { return pvalloc(n); } function
546 extern Void_t* F1(__valloc, size_t,n) { return valloc(n); } function
552 extern Void_t F1(__libc_cfree, Void_t*,p) { free(p); } function
553 extern Void_t F1(__libc_free, Void_t*,p) { free(p); } function
554 extern Void_t* F1(__libc_malloc, size_t,n) { return malloc(n); } function
559 extern Void_t* F1(__libc_pvalloc, size_t,n) { return pvalloc(n); } function
563 extern Void_t* F1(__libc_valloc, size_t,n) { return valloc(n); } function
706 extern Void_t F1(_ast_cfree, Void_t*,p) { free(p); } function
707 extern Void_t F1(_ast_free, Void_t*,p) { free(p); } function
708 extern Void_t* F1(_ast_malloc, size_t,n) { return malloc(n); } function
713 extern Void_t* F1(_ast_pvalloc, size_t,n) { return pvalloc(n); } function
717 extern Void_t* F1(_ast_valloc, size_t,n) { return valloc(n); } function
[all...]

Completed in 606 milliseconds