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

  /src/lib/libcrypt/
md5crypt.c 46 MD5_CTX ctx, ctx1; local
78 INIT(&ctx1);
79 UPDATE(&ctx1, (const unsigned char *)pw, pwl);
80 UPDATE(&ctx1, (const unsigned char *)sp, sl);
81 UPDATE(&ctx1, (const unsigned char *)pw, pwl);
82 FINAL(final, &ctx1);
112 INIT(&ctx1);
115 UPDATE(&ctx1, (const unsigned char *)pw, pwl);
117 UPDATE(&ctx1, final, 16);
120 UPDATE(&ctx1, (const unsigned char *)sp, sl)
    [all...]
  /src/external/bsd/openldap/dist/contrib/slapd-modules/passwd/
apr1.c 68 lutil_MD5_CTX ctx, ctx1; local
77 lutil_MD5Init(&ctx1);
78 lutil_MD5Update(&ctx1, (const unsigned char *) passwd->bv_val, passwd->bv_len);
79 lutil_MD5Update(&ctx1, (const unsigned char *) salt->bv_val, salt->bv_len);
80 lutil_MD5Update(&ctx1, (const unsigned char *) passwd->bv_val, passwd->bv_len);
81 lutil_MD5Final(digest, &ctx1);
99 lutil_MD5Init(&ctx1);
101 lutil_MD5Update(&ctx1,
104 lutil_MD5Update(&ctx1, digest, LUTIL_MD5_BYTES);
107 lutil_MD5Update(&ctx1,
    [all...]
  /src/external/bsd/ipf/dist/lib/
save_file.c 64 file_match(ctx1, ctx2)
65 void *ctx1, *ctx2;
67 file_opts_t *f1 = ctx1, *f2 = ctx2;
save_v2trap.c 55 snmpv2_match(ctx1, ctx2)
56 void *ctx1, *ctx2;
58 snmpv2_opts_t *s1 = ctx1, *s2 = ctx2;
save_v1trap.c 51 snmpv1_match(ctx1, ctx2)
52 void *ctx1, *ctx2;
54 snmpv1_opts_t *s1 = ctx1, *s2 = ctx2;
  /src/sys/external/bsd/drm2/dist/drm/i915/gvt/
execlist.c 199 struct execlist_ctx_descriptor_format *ctx1 = &running->ctx[1]; local
214 /* ctx1 is valid, ctx0/ctx is scheduled-out -> element switch */
215 if (valid_context(ctx1) && same_context(ctx0, ctx)) {
218 execlist->running_context = ctx1;
227 * ctx1 is not valid, ctx == ctx0
228 * ctx1 is valid, ctx1 == ctx
234 } else if ((!valid_context(ctx1) && same_context(ctx0, ctx))
235 || (valid_context(ctx1) && same_context(ctx1, ctx)))
292 struct execlist_ctx_descriptor_format *ctx0, *ctx1; local
    [all...]
  /src/external/bsd/wpa/dist/src/ap/
wpa_auth.h 614 void (*cb)(void *ctx1, void *ctx2),
615 void *ctx1, void *ctx2);
617 void (*cb)(void *ctx1, void *ctx2),
618 void *ctx1, void *ctx2);
620 void (*cb)(void *ctx1, void *ctx2),
621 void *ctx1, void *ctx2);
wpa_auth_i.h 169 void (*eapol_status_cb)(void *ctx1, void *ctx2);
wpa_auth.c 6845 void (*cb)(void *ctx1, void *ctx2),
6846 void *ctx1, void *ctx2)
6867 void (*cb)(void *ctx1, void *ctx2),
6868 void *ctx1, void *ctx2)
7047 void (*cb)(void *ctx1, void *ctx2),
7048 void *ctx1, void *ctx2)
7098 sm->eapol_status_cb_ctx1 = ctx1;
  /src/external/gpl3/gcc.old/dist/gcc/
omp-general.cc 1736 tree ctx1, tree ctx2)
1740 for (tree t1 = pass ? ctx2 : ctx1; t1; t1 = TREE_CHAIN (t1))
1743 for (t2 = pass ? ctx1 : ctx2; t2; t2 = TREE_CHAIN (t2))
1807 /* Compare single context selector sets CTX1 and CTX2 with SET name.
1808 Return 0 if CTX1 is equal to CTX2,
1809 -1 if CTX1 is a strict subset of CTX2,
1810 1 if CTX2 is a strict subset of CTX1, or
1814 omp_context_selector_set_compare (const char *set, tree ctx1, tree ctx2)
1818 int len1 = list_length (ctx1);
1824 std::swap (ctx1, ctx2)
2348 tree ctx1 = TREE_VALUE (TREE_VALUE (variant1)); local
2436 tree ctx1 = TREE_VALUE (TREE_VALUE (attr1)); local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/
nouveau_nvkm_engine_gr_nv04.c 468 u32 tmp, ctx1; local
470 ctx1 = nvkm_rd32(device, 0x700000 + inst);
471 class = ctx1 & 0xff;
472 op = (ctx1 >> 15) & 7;
  /src/external/gpl3/gcc.old/dist/gcc/cp/
class.cc 10433 /* CTX1 and CTX2 are declaration contexts. Return the innermost common
10437 common_enclosing_class (tree ctx1, tree ctx2)
10439 if (!TYPE_P (ctx1) || !TYPE_P (ctx2))
10441 gcc_assert (ctx1 == TYPE_MAIN_VARIANT (ctx1)
10443 if (ctx1 == ctx2)
10444 return ctx1;
10445 for (tree t = ctx1; TYPE_P (t); t = TYPE_CONTEXT (t))
10454 for (tree t = ctx1; TYPE_P (t); t = TYPE_CONTEXT (t))
  /src/external/bsd/wpa/dist/hostapd/
ctrl_iface.c 2261 static void restore_tk(void *ctx1, void *ctx2)
2263 struct hostapd_data *hapd = ctx1;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
expressionsem.d 1926 Dsymbol ctx1 = s.toParentLocal();
1929 if (ctx0 != ctx1)
1930 return checkWild(ctx1);

Completed in 57 milliseconds