Searched refs:nblocks (Results 1 – 2 of 2) sorted by relevance
231 nblocks = len(buf) // 512232 assert nblocks and not len(buf) % 512, "Buffer length is invalid"233 if nblocks == 1:249 while nblocks:253 nblocks -= 1258 nblocks, err = divmod(len(buf), 512)259 assert nblocks and not err, "Buffer length is invalid"260 if nblocks == 1:274 while nblocks:277 nblocks -= 1
107 size_t nblocks, in poly1305_process() argument134 for( i = 0U; i < nblocks; i++ ) in poly1305_process()336 size_t nblocks; in mbedtls_poly1305_update() local375 nblocks = remaining / POLY1305_BLOCK_SIZE_BYTES; in mbedtls_poly1305_update()377 poly1305_process( ctx, nblocks, &input[offset], 1U ); in mbedtls_poly1305_update()379 offset += nblocks * POLY1305_BLOCK_SIZE_BYTES; in mbedtls_poly1305_update()
Completed in 10 milliseconds