Home
last modified time | relevance | path

Searched refs:algo (Results 1 – 25 of 40) sorted by relevance

12

/dflybsd-src/sys/dev/drm/i915/
H A Dintel_i2c.c248 struct i2c_algo_bit_data *algo; in intel_gpio_setup() local
250 algo = &bus->bit_algo; in intel_gpio_setup()
254 bus->adapter.algo_data = algo; in intel_gpio_setup()
255 algo->setsda = set_data; in intel_gpio_setup()
256 algo->setscl = set_clock; in intel_gpio_setup()
257 algo->getsda = get_data; in intel_gpio_setup()
258 algo->getscl = get_clock; in intel_gpio_setup()
259 algo->pre_xfer = intel_gpio_pre_xfer; in intel_gpio_setup()
260 algo->post_xfer = intel_gpio_post_xfer; in intel_gpio_setup()
261 algo->udelay = I2C_RISEFALL_TIME; in intel_gpio_setup()
[all …]
/dflybsd-src/contrib/cryptsetup/lib/
H A Dgcrypt.c44 int algo = *((int *)data); in gcrypt_hash() local
45 int len = gcry_md_get_algo_dlen(algo); in gcrypt_hash()
48 if (gcry_md_open(&md, algo, 0)) in gcrypt_hash()
60 memcpy(key, gcry_md_read(md, algo), len); in gcrypt_hash()
/dflybsd-src/contrib/wpa_supplicant/src/crypto/
H A Dcrypto_gnutls.c20 static int gnutls_digest_vector(int algo, size_t num_elem, in gnutls_digest_vector() argument
30 if (gcry_md_open(&hd, algo, 0) != GPG_ERR_NO_ERROR) in gnutls_digest_vector()
34 p = gcry_md_read(hd, algo); in gnutls_digest_vector()
36 memcpy(mac, p, gcry_md_get_algo_dlen(algo)); in gnutls_digest_vector()
101 static int gnutls_hmac_vector(int algo, const u8 *key, size_t key_len, in gnutls_hmac_vector() argument
112 if (gcry_md_open(&hd, algo, GCRY_MD_FLAG_HMAC) != GPG_ERR_NO_ERROR) in gnutls_hmac_vector()
120 p = gcry_md_read(hd, algo); in gnutls_hmac_vector()
122 memcpy(mac, p, gcry_md_get_algo_dlen(algo)); in gnutls_hmac_vector()
/dflybsd-src/sys/dev/drm/
H A Dlinux_i2c.c71 ret = adapter->algo->master_xfer(adapter, msgs, num); in __i2c_transfer()
96 if (adapter->algo->master_xfer == NULL) in i2c_transfer()
130 adapter->algo = &i2c_bit_algo; in i2c_bit_add_bus()
H A Ddrm_dp_helper.c1074 aux->ddc.algo = &drm_dp_i2c_algo; in drm_dp_aux_init()
1094 if (!aux->ddc.algo) in drm_dp_aux_register()
/dflybsd-src/lib/libtcplay/
H A Dpbkdf2-openssl.c46 md = EVP_get_digestbyname(hash->algo); in pbkdf2()
48 tc_log(1, "Hash %s not found\n", hash->algo); in pbkdf2()
H A Dtcplay.h96 const char *algo; member
300 struct pbkdf_prf_algo *check_prf_algo(const char *algo, int sys, int quiet);
/dflybsd-src/sys/dev/crypto/aesni/
H A Daesni_wrap.c176 switch (ses->algo) { in aesni_cipher_setup_common()
210 if (ses->algo == CRYPTO_AES_CBC) in aesni_cipher_setup_common()
291 if (ses->algo == CRYPTO_AES_CBC) { in aesni_cipher_process()
305 if (ses->algo == CRYPTO_AES_CBC) { in aesni_cipher_process()
H A Daesni.h56 int algo; member
H A Daesni.c189 ses->algo = encini->cri_alg; in aesni_newsession()
/dflybsd-src/crypto/libressl/apps/openssl/
H A Dts.c602 X509_ALGOR *algo = NULL; in create_query() local
624 if ((algo = X509_ALGOR_new()) == NULL) in create_query()
626 if ((algo->algorithm = OBJ_nid2obj(EVP_MD_type(md))) == NULL) in create_query()
628 if ((algo->parameter = ASN1_TYPE_new()) == NULL) in create_query()
630 algo->parameter->type = V_ASN1_NULL; in create_query()
631 if (!TS_MSG_IMPRINT_set_algo(msg_imprint, algo)) in create_query()
668 X509_ALGOR_free(algo); in create_query()
/dflybsd-src/lib/libfetch/
H A Dhttp.c640 char *algo; member
649 b->realm = b->qop = b->nonce = b->opaque = b->algo = NULL; in init_http_auth_challenge()
664 if (b->algo) in clean_http_auth_challenge()
665 free(b->algo); in clean_http_auth_challenge()
828 cs->challenges[cs->count]->algo = in http_parse_authenticate()
1264 if (!c->algo) in http_digest_auth()
1265 c->algo = strdup(""); in http_digest_auth()
1268 *c->algo? ",algorithm=" : "", c->algo, in http_digest_auth()
1284 DigestCalcHA1(c->algo, parms->user, c->realm, in http_digest_auth()
/dflybsd-src/sys/netproto/802_11/wlan/
H A Dieee80211_hostap.c1638 int algo, int seq, int status) in authalgreject() argument
1643 wh, NULL, "unsupported alg %d", algo); in authalgreject()
1858 uint16_t algo, seq, status; in hostap_recv_mgmt() local
1878 algo = le16toh(*(uint16_t *)frm); in hostap_recv_mgmt()
1882 "recv auth frame with algorithm %d seq %d", algo, seq); in hostap_recv_mgmt()
1905 if (algo == IEEE80211_AUTH_ALG_SHARED) in hostap_recv_mgmt()
1908 else if (algo == IEEE80211_AUTH_ALG_OPEN) in hostap_recv_mgmt()
1910 else if (algo == IEEE80211_AUTH_ALG_LEAP) { in hostap_recv_mgmt()
1911 authalgreject(ni, wh, algo, in hostap_recv_mgmt()
1924 authalgreject(ni, wh, algo, in hostap_recv_mgmt()
H A Dieee80211_sta.c1552 uint16_t algo, seq, status; in sta_recv_mgmt() local
1561 algo = le16toh(*(uint16_t *)frm); in sta_recv_mgmt()
1565 "recv auth frame with algorithm %d seq %d", algo, seq); in sta_recv_mgmt()
1579 if (algo == IEEE80211_AUTH_ALG_SHARED) in sta_recv_mgmt()
1582 else if (algo == IEEE80211_AUTH_ALG_OPEN) in sta_recv_mgmt()
1586 wh, "auth", "unsupported alg %d", algo); in sta_recv_mgmt()
/dflybsd-src/contrib/ldns/
H A Ddnssec_verify.c1948 ldns_ecdsa2pkey_raw(const unsigned char* key, size_t keylen, uint8_t algo) in ldns_ecdsa2pkey_raw() argument
1955 if(algo == LDNS_ECDSAP256SHA256) { in ldns_ecdsa2pkey_raw()
1958 } else if(algo == LDNS_ECDSAP384SHA384) { in ldns_ecdsa2pkey_raw()
1988 ldns_buffer* rrset, unsigned char* key, size_t keylen, uint8_t algo) in ldns_verify_rrsig_ecdsa_raw() argument
1994 evp_key = ldns_ecdsa2pkey_raw(key, keylen, algo); in ldns_verify_rrsig_ecdsa_raw()
1999 if(algo == LDNS_ECDSAP256SHA256) in ldns_verify_rrsig_ecdsa_raw()
2010 ldns_buffer *key_buf, uint8_t algo) in ldns_verify_rrsig_buffers() argument
2017 ldns_buffer_position(key_buf), algo); in ldns_verify_rrsig_buffers()
2023 uint8_t algo) in ldns_verify_rrsig_buffers_raw() argument
2026 switch(algo) { in ldns_verify_rrsig_buffers_raw()
[all …]
/dflybsd-src/contrib/tcsh-6/nls/spanish/
H A Dset910 8 Falta algo a continuación: '%c'\n
/dflybsd-src/sys/dev/drm/include/linux/
H A Di2c.h45 const struct i2c_algorithm *algo; member
/dflybsd-src/contrib/ldns/ldns/
H A Ddnssec_verify.h620 uint8_t algo);
638 uint8_t algo);
H A Ddnssec.h174 EVP_PKEY* ldns_ecdsa2pkey_raw(const unsigned char* key, size_t keylen, uint8_t algo);
H A Dkeys.h627 int ldns_key_algo_supported(int algo);
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/parallel/
H A Dalgorithm37 #include <parallel/algo.h>
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/parallel/
H A Dalgorithm38 #include <parallel/algo.h>
/dflybsd-src/sys/dev/drm/amd/amdgpu/
H A Damdgpu_i2c.c189 i2c->adapter.algo = &amdgpu_atombios_i2c_algo; in amdgpu_i2c_create()
/dflybsd-src/contrib/file/magic/Magdir/
H A Dluks89 >72 string x \b, algo %s
/dflybsd-src/sys/dev/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_mst_types.c225 if (!aconnector->port || !aconnector->port->aux.ddc.algo) in dm_dp_mst_dc_sink_create()

12