Searched refs:ctmp (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/conf/
H A Dconf_lib.c134 CONF ctmp; local
137 CONF_set_nconf(&ctmp, conf);
139 ret = NCONF_load_bio(&ctmp, bp, eline);
141 return ctmp.data;
151 CONF ctmp; local
152 CONF_set_nconf(&ctmp, conf);
153 return NCONF_get_section(&ctmp, section);
163 CONF ctmp; local
164 CONF_set_nconf(&ctmp, conf);
165 return NCONF_get_string(&ctmp, grou
178 CONF ctmp; local
192 CONF ctmp; local
215 CONF ctmp; local
[all...]
/freebsd-11-stable/sys/libkern/
H A Diconv_xlat16.c122 uint16_t c1, c2, ctmp; local
138 ctmp = 0;
151 ctmp = towlower(((u_char)*src << 8) | (u_char)*(src + 1),
154 ctmp = towupper(((u_char)*src << 8) | (u_char)*(src + 1),
156 if (ctmp) {
157 c1 = C2I1(ctmp);
158 c2 = C2I2(ctmp);
178 ctmp = towlower((u_char)*src, dp->f_ctp);
180 ctmp = (u_char)(code >> 16);
183 ctmp
[all...]
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_conf.c474 CONF ctmp; local
475 CONF_set_nconf(&ctmp, conf);
476 return X509V3_EXT_nconf(&ctmp, ctx, name, value);
484 CONF ctmp; local
485 CONF_set_nconf(&ctmp, conf);
486 return X509V3_EXT_nconf_nid(&ctmp, ctx, ext_nid, value);
515 CONF ctmp; local
516 CONF_set_nconf(&ctmp, conf);
517 return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert);
525 CONF ctmp; local
535 CONF ctmp; local
[all...]
H A Dv3_info.c159 CONF_VALUE *cnf, ctmp;
182 ctmp.name = ptmp + 1;
183 ctmp.value = cnf->value;
184 if (!v2i_GENERAL_NAME_ex(acc->location, method, ctx, &ctmp, 0))
/freebsd-11-stable/libexec/rbootd/
H A Dutils.c273 CLIENT *ctmp; local
275 if ((ctmp = (CLIENT *) malloc(sizeof(CLIENT))) == NULL) {
281 memset(ctmp, 0, sizeof(CLIENT));
282 memmove(&ctmp->addr[0], addr, RMP_ADDRLEN);
283 return(ctmp);
305 CLIENT *ctmp; local
308 ctmp = Clients;
310 FreeClient(ctmp);
H A Drbootd.c344 CLIENT *ctmp; local
346 for (ctmp = Clients; ctmp != NULL; ctmp = ctmp->next)
348 (char *)&ctmp->addr[0], RMP_ADDRLEN) == 0)
351 return(ctmp);
/freebsd-11-stable/crypto/openssl/apps/
H A Drsautl.c281 unsigned char ctmp; local
283 ctmp = rsa_in[i];
285 rsa_in[rsa_inlen - 1 - i] = ctmp;
H A Dpkeyutl.c310 unsigned char ctmp; local
313 ctmp = buf_in[i];
315 buf_in[l - 1 - i] = ctmp;
H A Ds_cb.c1199 struct chain_flags *ctmp = chain_flags_list; local
1200 while (ctmp->name) {
1201 BIO_printf(out, "\t%s: %s\n", ctmp->name,
1202 flags & ctmp->flag ? "OK" : "NOT OK");
1203 ctmp++;
/freebsd-11-stable/contrib/wpa/hs20/client/
H A Dest.c399 CONF *ctmp = NULL; local
481 ex = X509V3_EXT_nconf_nid(ctmp, NULL, NID_basic_constraints,
487 ex = X509V3_EXT_nconf_nid(ctmp, NULL, NID_key_usage,
493 ex = X509V3_EXT_nconf_nid(ctmp, NULL, NID_ext_key_usage,
/freebsd-11-stable/crypto/openssl/ssl/
H A Dssl_ciph.c522 SSL_COMP ctmp; local
528 ctmp.id = s->compress_meth;
530 i = sk_SSL_COMP_find(ssl_comp_methods, &ctmp);
1926 SSL_COMP *ctmp; local
1933 ctmp = sk_SSL_COMP_value(sk, i);
1934 if (ctmp->id == n)
1935 return (ctmp);
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_util.c477 struct ucl_chunk *chunk, *ctmp; local
502 LL_FOREACH_SAFE (parser->chunks, chunk, ctmp) {
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dctrl_iface.c5057 char *ctmp, *end = buf + buflen; local
5069 if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) {
5079 ctmp++;
5080 if (*ctmp >= '0' && *ctmp <= '9')
5081 id2 = atoi(ctmp);
5150 if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) {
5151 mask = strtoul(ctmp + 5, NULL, 0x10);

Completed in 166 milliseconds