HomeSort by: relevance | last modified time | path
    Searched refs:cp_ctx (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/wpa/dist/src/pae/
ieee802_1x_cp.h 21 void ieee802_1x_cp_sm_step(void *cp_ctx);
22 void ieee802_1x_cp_connect_pending(void *cp_ctx);
23 void ieee802_1x_cp_connect_unauthenticated(void *cp_ctx);
24 void ieee802_1x_cp_connect_authenticated(void *cp_ctx);
25 void ieee802_1x_cp_connect_secure(void *cp_ctx);
26 void ieee802_1x_cp_signal_chgdserver(void *cp_ctx);
27 void ieee802_1x_cp_set_electedself(void *cp_ctx, bool status);
28 void ieee802_1x_cp_set_ciphersuite(void *cp_ctx, u64 cs);
29 void ieee802_1x_cp_set_offset(void *cp_ctx, enum confidentiality_offset offset);
30 void ieee802_1x_cp_signal_newsak(void *cp_ctx);
    [all...]
ieee802_1x_cp.c 550 void ieee802_1x_cp_connect_pending(void *cp_ctx)
552 struct ieee802_1x_cp_sm *sm = cp_ctx;
561 void ieee802_1x_cp_connect_unauthenticated(void *cp_ctx)
563 struct ieee802_1x_cp_sm *sm = (struct ieee802_1x_cp_sm *)cp_ctx;
572 void ieee802_1x_cp_connect_authenticated(void *cp_ctx)
574 struct ieee802_1x_cp_sm *sm = cp_ctx;
583 void ieee802_1x_cp_connect_secure(void *cp_ctx)
585 struct ieee802_1x_cp_sm *sm = cp_ctx;
594 void ieee802_1x_cp_signal_chgdserver(void *cp_ctx)
596 struct ieee802_1x_cp_sm *sm = cp_ctx;
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/
nouveau_nvkm_engine_gr_ctxnv40.c 92 #define CP_CTX 0x00100000
169 cp_ctx(ctx, 0x4000a4, 1);
171 cp_ctx(ctx, 0x400144, 58);
173 cp_ctx(ctx, 0x400314, 1);
175 cp_ctx(ctx, 0x400400, 10);
176 cp_ctx(ctx, 0x400480, 10);
177 cp_ctx(ctx, 0x400500, 19);
183 cp_ctx(ctx, 0x400560, 6);
186 cp_ctx(ctx, 0x40057c, 5);
187 cp_ctx(ctx, 0x400710, 3)
    [all...]
nouveau_nvkm_engine_gr_ctxnv50.c 82 #define CP_CTX 0x00100000
223 cp_ctx (ctx, 0x400828, 1); /* needed. otherwise, flickering happens. */
310 cp_ctx(ctx, 0x400808, 7);
312 cp_ctx(ctx, 0x400834, 0x32);
325 cp_ctx(ctx, 0x400908, 0xb);
327 cp_ctx(ctx, 0x400908, 0xc);
329 cp_ctx(ctx, 0x400908, 0xe);
332 cp_ctx(ctx, 0x400b00, 0x1);
334 cp_ctx(ctx, 0x400b10, 0x1);
336 cp_ctx(ctx, 0x400b20, 0x1)
    [all...]
ctxnv40.h 45 cp_ctx(struct nvkm_grctx *ctx, u32 reg, u32 length) function
57 cp_out(ctx, CP_CTX | (length << CP_CTX_COUNT_SHIFT) | ctx->ctxprog_reg);
  /src/crypto/external/bsd/openssh/dist/
cipher.c 95 struct chachapoly_ctx *cp_ctx; member in struct:sshcipher_ctx
294 cc->cp_ctx = chachapoly_new(key, keylen);
295 ret = cc->cp_ctx != NULL ? 0 : SSH_ERR_INVALID_ARGUMENT;
373 return chachapoly_crypt(cc->cp_ctx, seqnr, dest, src,
436 return chachapoly_get_length(cc->cp_ctx, plenp, seqnr,
450 chachapoly_free(cc->cp_ctx);
451 cc->cp_ctx = NULL;

Completed in 30 milliseconds