Lines Matching refs:nbytes
63 Py_ssize_t nbytes; in md5_update() local
65 nbytes = INT_MAX; in md5_update()
67 nbytes = n; in md5_update()
69 Py_SAFE_DOWNCAST(nbytes, Py_ssize_t, unsigned int)); in md5_update()
70 buf += nbytes; in md5_update()
71 n -= nbytes; in md5_update()
292 Py_ssize_t nbytes; in MD5_new() local
294 nbytes = INT_MAX; in MD5_new()
296 nbytes = n; in MD5_new()
298 Py_SAFE_DOWNCAST(nbytes, Py_ssize_t, unsigned int)); in MD5_new()
299 buf += nbytes; in MD5_new()
300 n -= nbytes; in MD5_new()