Searched refs:ac (Results 251 - 275 of 731) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dslapacl.c25 #include <ac/stdlib.h>
27 #include <ac/ctype.h>
28 #include <ac/string.h>
29 #include <ac/socket.h>
30 #include <ac/unistd.h>
H A Dfrontend.c32 #include <ac/string.h>
33 #include <ac/socket.h>
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_cparam_config_critcl.tcl228 long int ac;
231 rde_param_query_ast (p, &ac, &av);
233 if (ac > 1) {
236 Tcl_Obj** lv = NALLOC (3+ac, Tcl_Obj*);
240 memcpy(lv + 3, av, ac * sizeof (Tcl_Obj*));
/macosx-10.10/Heimdal-398.1.2/kdc/
H A Dfast.c380 krb5_auth_context ac = NULL; local
494 ret = krb5_verify_ap_req2(r->context, &ac,
507 ac = tgs_ac;
511 if (ac->remote_subkey == NULL) {
512 krb5_auth_con_free(r->context, ac);
520 ac->remote_subkey,
643 if (ac && ac != tgs_ac)
644 krb5_auth_con_free(r->context, ac);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dopen.c26 #include <ac/stdlib.h>
28 #include <ac/param.h>
29 #include <ac/socket.h>
30 #include <ac/string.h>
31 #include <ac/time.h>
33 #include <ac/unistd.h>
H A Dcharray.c21 #include <ac/string.h>
22 #include <ac/socket.h>
/macosx-10.10/Heimdal-398.1.2/lib/kadm5/
H A Dsend_recv.c57 ret = krb5_mk_priv(context->context, context->ac, &msg, &out, NULL);
97 ret = krb5_rd_priv(context->context, context->ac, &data, reply, NULL);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/denyop/
H A Ddenyop.c27 #include <ac/string.h>
28 #include <ac/socket.h>
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/nops/
H A Dnops.c27 #include <ac/string.h>
28 #include <ac/socket.h>
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/trace/
H A Dtrace.c27 #include <ac/string.h>
28 #include <ac/socket.h>
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldap/
H A Dadd.c28 #include <ac/string.h>
29 #include <ac/socket.h>
H A Dmodify.c28 #include <ac/string.h>
29 #include <ac/socket.h>
H A Dpbind.c26 #include <ac/string.h>
27 #include <ac/socket.h>
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-meta/
H A Dcompare.c27 #include <ac/string.h>
28 #include <ac/socket.h>
H A Dmodrdn.c27 #include <ac/socket.h>
28 #include <ac/string.h>
H A Dsuffixmassage.c54 #include <ac/string.h>
55 #include <ac/socket.h>
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Drwmdn.c31 #include <ac/string.h>
32 #include <ac/socket.h>
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dmd5.c245 #define FF(a, b, c, d, x, s, ac) { \
246 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
250 #define GG(a, b, c, d, x, s, ac) { \
251 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
255 #define HH(a, b, c, d, x, s, ac) { \
256 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
260 #define II(a, b, c, d, x, s, ac) { \
261 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Dsysinfo.y413 main (int ac, char **av)
416 if (ac > 1)
/macosx-10.10/ksh-23/ksh/src/lib/libsum/
H A Dsum-md5.c158 #define FF(a, b, c, d, x, s, ac) { \
159 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
163 #define GG(a, b, c, d, x, s, ac) { \
164 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
168 #define HH(a, b, c, d, x, s, ac) { \
169 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
173 #define II(a, b, c, d, x, s, ac) { \
174 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/lib/
H A Dmd5.c93 #define FF(a, b, c, d, x, s, ac) { (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
94 #define GG(a, b, c, d, x, s, ac) { (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
95 #define HH(a, b, c, d, x, s, ac) { (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
96 #define II(a, b, c, d, x, s, ac) { (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/saslauthd/
H A Dmd5.c93 #define FF(a, b, c, d, x, s, ac) { (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
94 #define GG(a, b, c, d, x, s, ac) { (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
95 #define HH(a, b, c, d, x, s, ac) { (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
96 #define II(a, b, c, d, x, s, ac) { (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }
/macosx-10.10/ppp-786.1.1/Helpers/pppd/
H A Dmd5.c97 #define FF(a, b, c, d, x, s, ac) \
98 {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
102 #define GG(a, b, c, d, x, s, ac) \
103 {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
107 #define HH(a, b, c, d, x, s, ac) \
108 {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
112 #define II(a, b, c, d, x, s, ac) \
113 {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/md5/
H A Dmd5.c76 #define FF(a, b, c, d, x, s, ac) \
77 {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
81 #define GG(a, b, c, d, x, s, ac) \
82 {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
86 #define HH(a, b, c, d, x, s, ac) \
87 {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
91 #define II(a, b, c, d, x, s, ac) \
92 {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
/macosx-10.10/tcl-105/tcl_ext/trf/trf/generic/md5/
H A Dmd5.c76 #define FF(a, b, c, d, x, s, ac) \
77 {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
81 #define GG(a, b, c, d, x, s, ac) \
82 {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
86 #define HH(a, b, c, d, x, s, ac) \
87 {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
91 #define II(a, b, c, d, x, s, ac) \
92 {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \

Completed in 159 milliseconds

<<11121314151617181920>>