Searched refs:binlen (Results 1 – 6 of 6) sorted by relevance
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
D | utils_module_tests.c | 48 size_t binlen; in printf_encode_decode_tests() local 61 binlen = printf_decode(bin, sizeof(bin), buf); in printf_encode_decode_tests() 62 if (binlen != test->len || in printf_encode_decode_tests() 63 os_memcmp(bin, test->data, binlen) != 0) { in printf_encode_decode_tests() 65 bin, binlen); in printf_encode_decode_tests() 69 binlen = printf_decode(bin, sizeof(bin), test->encoded); in printf_encode_decode_tests() 70 if (binlen != test->len || in printf_encode_decode_tests() 71 os_memcmp(bin, test->data, binlen) != 0) { in printf_encode_decode_tests() 73 bin, binlen); in printf_encode_decode_tests()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
D | utils_module_tests.c | 48 size_t binlen; in printf_encode_decode_tests() local 61 binlen = printf_decode(bin, sizeof(bin), buf); in printf_encode_decode_tests() 62 if (binlen != test->len || in printf_encode_decode_tests() 63 os_memcmp(bin, test->data, binlen) != 0) { in printf_encode_decode_tests() 65 bin, binlen); in printf_encode_decode_tests() 69 binlen = printf_decode(bin, sizeof(bin), test->encoded); in printf_encode_decode_tests() 70 if (binlen != test->len || in printf_encode_decode_tests() 71 os_memcmp(bin, test->data, binlen) != 0) { in printf_encode_decode_tests() 73 bin, binlen); in printf_encode_decode_tests()
|
/third_party/openssl/crypto/evp/ |
D | pmeth_lib.c | 435 long binlen; in EVP_PKEY_CTX_hex2ctrl() local 438 bin = OPENSSL_hexstr2buf(hex, &binlen); in EVP_PKEY_CTX_hex2ctrl() 441 if (binlen <= INT_MAX) in EVP_PKEY_CTX_hex2ctrl() 442 rv = ctx->pmeth->ctrl(ctx, cmd, binlen, bin); in EVP_PKEY_CTX_hex2ctrl()
|
/third_party/curl/lib/ |
D | http2.c | 1310 ssize_t binlen; in Curl_http2_request_upgrade() local 1321 binlen = nghttp2_pack_settings_payload(binsettings, H2_BINSETTINGS_LEN, in Curl_http2_request_upgrade() 1324 if(binlen <= 0) { in Curl_http2_request_upgrade() 1329 conn->proto.httpc.binlen = binlen; in Curl_http2_request_upgrade() 1331 result = Curl_base64url_encode(data, (const char *)binsettings, binlen, in Curl_http2_request_upgrade() 2281 rv = nghttp2_session_upgrade2(httpc->h2, httpc->binsettings, httpc->binlen, in Curl_http2_switched()
|
D | http.h | 256 size_t binlen; /* length of the binsettings data */ member
|
/third_party/openssl/engines/ |
D | e_capi.c | 606 static int lend_tobn(BIGNUM *bn, unsigned char *bin, int binlen) 614 for (i = 0; i < binlen / 2; i++) { 617 bin[i] = bin[binlen - i - 1]; 618 bin[binlen - i - 1] = c; 621 if (!BN_bin2bn(bin, binlen, bn))
|