HomeSort by relevance Sort by last modified time
    Searched refs:UINT4 (Results 1 - 13 of 13) sorted by null

  /external/ppp/pppd/
md5.h 44 typedef unsigned int UINT4;
47 typedef unsigned long UINT4;
54 UINT4 i[2]; /* number of _bits_ handled mod 2^64 */
55 UINT4 buf[4]; /* scratch buffer */
md5.c 76 {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
81 {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
86 {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
91 {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
108 mdContext->i[0] = mdContext->i[1] = (UINT4)0;
112 mdContext->buf[0] = (UINT4)0x67452301;
113 mdContext->buf[1] = (UINT4)0xefcdab89;
114 mdContext->buf[2] = (UINT4)0x98badcfe;
115 mdContext->buf[3] = (UINT4)0x10325476;
127 UINT4 in[16]
    [all...]
  /external/ppp/pppd/plugins/radius/
ip_util.c 29 UINT4 rc_get_ipaddr (char *host)
40 return ((UINT4) 0);
42 return ntohl((*(UINT4 *) hp->h_addr));
103 const char *rc_ip_hostname (UINT4 h_ipaddr)
106 UINT4 n_ipaddr = htonl (h_ipaddr);
125 UINT4 rc_own_ipaddress(void)
127 static UINT4 this_host_ipaddr = 0;
radiusclient.h 27 typedef unsigned int UINT4;
329 UINT4 lvalue;
389 VALUE_PAIR *rc_avpair_get __P((VALUE_PAIR *, UINT4));
401 int rc_auth __P((UINT4, VALUE_PAIR *, VALUE_PAIR **, char *, REQUEST_INFO *));
402 int rc_auth_using_server __P((SERVER *, UINT4, VALUE_PAIR *, VALUE_PAIR **,
405 int rc_acct __P((UINT4, VALUE_PAIR *));
406 int rc_acct_using_server __P((SERVER *, UINT4, VALUE_PAIR *));
413 UINT4 rc_map2id __P((char *));
421 int rc_find_server __P((char *, UINT4 *, char *));
429 DICT_VALUE * rc_dict_getval __P((UINT4, char *))
    [all...]
clientid.c 17 UINT4 id;
104 UINT4 rc_map2id(char *name)
buildreq.c 26 UINT4 client_id;
162 int rc_auth(UINT4 client_port, VALUE_PAIR *send, VALUE_PAIR **received,
187 UINT4 client_port,
290 UINT4 client_port,
360 int rc_acct(UINT4 client_port, VALUE_PAIR *send)
419 UINT4 service_type;
config.c 410 static int find_match (UINT4 *ip_addr, char *hostname)
412 UINT4 addr;
431 addr = ** (UINT4 **) paddr;
450 int rc_find_server (char *server_name, UINT4 *ip_addr, char *secret)
452 UINT4 myipaddr = 0;
463 if ((*ip_addr = rc_get_ipaddr (server_name)) == (UINT4) 0)
avpair.c 90 vp->lvalue = * (UINT4 *) pval;
158 UINT4 lvalue;
234 sizeof (UINT4));
268 UINT4 lvalue;
329 sizeof (UINT4));
352 VALUE_PAIR *rc_avpair_get (VALUE_PAIR *vp, UINT4 attr)
641 pair->lvalue = (UINT4) timelocal (tm);
643 pair->lvalue = (UINT4) mktime (tm);
sendserver.c 37 UINT4 lvalue;
74 length = sizeof(UINT4);
78 memcpy(buf, (char *) &lvalue, sizeof(UINT4));
167 *buf++ = sizeof (UINT4) + 2;
169 memcpy (buf, (char *) &lvalue, sizeof (UINT4));
170 buf += sizeof (UINT4);
171 total_length += sizeof (UINT4) + 2;
201 UINT4 auth_ipaddr;
radius.c 249 UINT4 av_type;
338 UINT4 av_type;
852 UINT4 av_type;
939 UINT4 av_type;
1080 UINT4 av_type;
    [all...]
dict.c 395 DICT_VALUE * rc_dict_getval (UINT4 value, char *attrname)
  /external/quake/quake/src/QW/client/
md4.c 30 /* UINT4 defines a four byte word */
32 typedef unsigned int UINT4;
34 typedef unsigned long int UINT4;
52 UINT4 state[4]; /* state (ABCD) */
53 UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
91 static void MD4Transform (UINT4 [4], unsigned char [64]);
92 static void Encode (unsigned char *, UINT4 *, unsigned int);
93 static void Decode (UINT4 *, unsigned char *, unsigned int);
111 #define GG(a, b, c, d, x, s) {(a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; (a) = ROTATE_LEFT ((a), (s));}
113 #define HH(a, b, c, d, x, s) {(a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; (a) = ROTATE_LEFT ((a), (s));
    [all...]
  /external/grub/stage2/
md5.c 43 typedef unsigned int UINT4;
56 static UINT4 initstate[4] =
66 static UINT4 T[64] =
89 static UINT4 state[4];
97 UINT4 a,b,c,d,tmp;
98 const UINT4 *x = (UINT4 *) block;
191 *(UINT4 *) (buffer + 56) = cpu_to_le32 (8 * length);
192 *(UINT4 *) (buffer + 60) = 0;

Completed in 266 milliseconds