RC4STATE           36 crypto/arc4.c  	for (i = 0; i < RC4STATE; i++)
RC4STATE           38 crypto/arc4.c  	for (i = 0; i < RC4STATE; i++) {
RC4STATE           39 crypto/arc4.c  		y = (key[x] + ctx->state[i] + y) % RC4STATE;
RC4STATE           53 crypto/arc4.c  		ctx->x = (ctx->x + 1) % RC4STATE;
RC4STATE           54 crypto/arc4.c  		ctx->y = (ctx->state[ctx->x] + ctx->y) % RC4STATE;
RC4STATE           57 crypto/arc4.c  		   (ctx->state[ctx->x] + ctx->state[ctx->y]) % RC4STATE];
RC4STATE           65 crypto/arc4.c  		ctx->x = (ctx->x + 1) % RC4STATE;
RC4STATE           66 crypto/arc4.c  		ctx->y = (ctx->state[ctx->x] + ctx->y) % RC4STATE;
RC4STATE           23 crypto/arc4.h  	u_int8_t state[RC4STATE];
RC4STATE          959 net80211/ieee80211_crypto.c 		rc4_skip(&ctx, RC4STATE);
RC4STATE         1006 net80211/ieee80211_crypto.c 		rc4_skip(&ctx, RC4STATE);