Home
last modified time | relevance | path

Searched refs:numlen (Results 1 – 3 of 3) sorted by relevance

/external/dropbear/libtomcrypt/src/pk/ecc/
Decc_ansi_x963_export.c35 unsigned long numlen; in ecc_ansi_x963_export() local
44 numlen = key->dp->size; in ecc_ansi_x963_export()
46 if (*outlen < (1 + 2*numlen)) { in ecc_ansi_x963_export()
47 *outlen = 1 + 2*numlen; in ecc_ansi_x963_export()
56 mp_to_unsigned_bin(key->pubkey.x, buf + (numlen - mp_unsigned_bin_size(key->pubkey.x))); in ecc_ansi_x963_export()
57 XMEMCPY(out+1, buf, numlen); in ecc_ansi_x963_export()
61 mp_to_unsigned_bin(key->pubkey.y, buf + (numlen - mp_unsigned_bin_size(key->pubkey.y))); in ecc_ansi_x963_export()
62 XMEMCPY(out+1+numlen, buf, numlen); in ecc_ansi_x963_export()
64 *outlen = 1 + 2*numlen; in ecc_ansi_x963_export()
/external/qemu/telephony/
Dandroid_modem.c1655 int numlen; in handleSendSMSText() local
1677 numlen = sms_address_to_str( &address, temp, sizeof(temp) ); in handleSendSMSText()
1678 if (numlen > sizeof(temp)-1) in handleSendSMSText()
1680 temp[numlen] = 0; in handleSendSMSText()
1683 if (numlen == 10 && !strncmp(temp, PHONE_PREFIX+1, 6)) { in handleSendSMSText()
1685 memcpy( number+1, temp, numlen ); in handleSendSMSText()
1686 number[numlen+1] = 0; in handleSendSMSText()
1687 } else if (numlen == 7 && !strncmp(temp, PHONE_PREFIX+4, 3)) { in handleSendSMSText()
1689 memcpy( number+4, temp, numlen ); in handleSendSMSText()
1690 number[numlen+4] = 0; in handleSendSMSText()
[all …]
/external/kernel-headers/original/linux/
Dtelephony.h107 int numlen; member