Searched refs:c (Results 1 – 8 of 8) sorted by relevance
/sunrpc/ |
A D | des_impl.c | 298 #define c2l(c,l) (l =((unsigned long)(*((c)++))) , \ argument 303 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ argument 388 c2l (in, c); in des_set_key() 395 HPERM_OP (c, t, -2, 0xcccc0000); in des_set_key() 402 c &= 0x0fffffff; in des_set_key() 408 c = ((c >> 2) | (c << 26)); in des_set_key() 413 c = ((c >> 1) | (c << 27)); in des_set_key() 416 c &= 0x0fffffff; in des_set_key() 421 des_skb[1][((c >> 6) & 0x03) | ((c >> 7) & 0x3c)] | in des_set_key() 422 des_skb[2][((c >> 13) & 0x0f) | ((c >> 14) & 0x30)] | in des_set_key() [all …]
|
A D | xcrypt.c | 60 # define hexval(c) \ argument 61 (c >= '0' && c <= '9' \ 62 ? c - '0' \ 63 : ({ int upp = toupper (c); \ 202 hexval (char c) in hexval() argument 204 if (c >= '0' && c <= '9') in hexval() 205 return (c - '0'); in hexval() 206 else if (c >= 'a' && c <= 'z') in hexval() 207 return (c - 'a' + 10); in hexval() 208 else if (c >= 'A' && c <= 'Z') in hexval() [all …]
|
A D | xdr_array.c | 71 u_int c; /* the actual element count */ in xdr_array() local 79 c = *sizep; in xdr_array() 84 if ((c > maxsize || c > UINT_MAX / elsize) && (xdrs->x_op != XDR_FREE)) in xdr_array() 97 if (c == 0) in xdr_array() 99 *addrp = target = calloc (c, elsize); in xdr_array() 116 for (i = 0; (i < c) && stat; i++) in xdr_array() 127 mem_free (*addrp, c * elsize); in xdr_array()
|
A D | Makefile | 89 $(rpc-compat-routines.os): $(objpfx)compat-%.os: %.c $(before-compile) 90 $(compile-command.c) -DEXPORT_RPC_SYMBOLS 93 CFLAGS-auth_unix.c += -fexceptions 94 CFLAGS-key_call.c += -fexceptions 95 CFLAGS-pmap_rmt.c += -fexceptions 96 CFLAGS-clnt_perr.c += -fexceptions 97 CFLAGS-openchild.c += -fexceptions
|
A D | Versions | 18 # c* 70 # c*
|
A D | clnt_raw.c | 238 clntraw_control (CLIENT *cl, int i, char *c) in clntraw_control() argument
|
A D | auth_des.c | 374 ixdr = (uint32_t *) verf.adv_xtimestamp.c; in authdes_validate()
|
/sunrpc/rpc/ |
A D | auth.h | 74 char c[8]; member
|
Completed in 14 milliseconds