Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dcharset.py27 MISC_LEN = 7 variable
337 return email.base64mime.base64_len(s) + len(cset) + MISC_LEN
339 return email.quoprimime.header_quopri_len(s) + len(cset) + MISC_LEN
343 return min(lenb64, lenqp) + len(cset) + MISC_LEN
Dbase64mime.py47 MISC_LEN = 7 variable
101 max_encoded = maxlinelen - len(charset) - MISC_LEN
Dquoprimime.py55 MISC_LEN = 7 variable
157 max_encoded = maxlinelen - len(charset) - MISC_LEN - 1