Home | History | Annotate | Download | only in nameser

Lines Matching defs:siz

591 		size_t siz;
601 siz = (edata-rdata)*4/3 + 4; /* "+4" accounts for trailing \0 */
602 if (siz > sizeof(base64_cert) * 3/4) {
608 base64_cert, siz);
889 unsigned int siz;
893 siz = (int)(edata-rdata)*4/3 + 4; /* "+4" accounts for trailing \0 */
894 if (siz > sizeof(base64_dhcid) * 3/4) {
899 base64_dhcid, siz);
926 unsigned int siz;
986 siz = (int)(edata-rdata)*4/3 + 4; /* "+4" accounts for trailing \0 */
987 if (siz > sizeof(base64_key) * 3/4) {
992 base64_key, siz);
1020 unsigned int siz;
1028 siz = key_len*4/3 + 4; /* "+4" accounts for trailing \0 */
1029 if (siz > sizeof(base64_key) * 3/4) {
1043 len = b64_ntop(rdata, key_len, base64_key, siz);