OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UINT4
(Results
1 - 4
of
4
) 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 */
/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;
/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/ppp/pppd/plugins/radius/
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
...]
Completed in 80 milliseconds