Home
last modified time | relevance | path

Searched refs:g_len (Results 1 – 6 of 6) sorted by relevance

/third_party/openssl/util/perl/TLSProxy/
DServerKeyExchange.pm58 my $g_len = unpack('n', substr($self->data, $ptr));
60 my $g = substr($self->data, $ptr, $g_len);
61 $ptr += $g_len;
/third_party/ffmpeg/libavcodec/
Daacdec_template.c1769 unsigned g_len = ics->group_len[g]; in decode_spectrum_and_dequant() local
1778 for (group = 0; group < (AAC_SIGNE)g_len; group++, cfo+=128) { in decode_spectrum_and_dequant()
1782 for (group = 0; group < (AAC_SIGNE)g_len; group++, cfo+=128) { in decode_spectrum_and_dequant()
1815 for (group = 0; group < (AAC_SIGNE)g_len; group++, cfo+=128) { in decode_spectrum_and_dequant()
1836 for (group = 0; group < (AAC_SIGNE)g_len; group++, cfo+=128) { in decode_spectrum_and_dequant()
1862 for (group = 0; group < (AAC_SIGNE)g_len; group++, cfo+=128) { in decode_spectrum_and_dequant()
1884 for (group = 0; group < (AAC_SIGNE)g_len; group++, cfo+=128) { in decode_spectrum_and_dequant()
1910 for (group = 0; group < (AAC_SIGNE)g_len; group++, cfo+=128) { in decode_spectrum_and_dequant()
1994 coef += g_len << 7; in decode_spectrum_and_dequant()
2024 unsigned g_len = ics->group_len[g]; in decode_spectrum_and_dequant() local
[all …]
/third_party/openssl/test/
Dacvp_test.c451 const unsigned char *g, size_t g_len, in dsa_create_pkey() argument
481 || !TEST_ptr(BN_bin2bn(g, g_len, g_bn)) in dsa_create_pkey()
632 tst->q, tst->q_len, tst->g, tst->g_len, in dsa_sigver_test()
Dacvp_test.inc270 size_t g_len;
/third_party/node/src/
Dnode_crypto.h776 bool Init(const char* p, int p_len, const char* g, int g_len);
Dnode_crypto.cc5250 bool DiffieHellman::Init(const char* p, int p_len, const char* g, int g_len) { in Init() argument
5256 if (g_len <= 0) { in Init()
5261 BN_bin2bn(reinterpret_cast<const unsigned char*>(g), g_len, nullptr); in Init()