Lines Matching defs:length
1074 size_t length,
1086 /* Nothing to do if length is zero. */
1087 if (length == 0) {
1091 if (length % 16) {
1097 if (mbedtls_padlock_xcryptcbc(ctx, mode, length, iv, input, output) == 0) {
1110 while (length > 0) {
1125 length -= 16;
1128 while (length > 0) {
1139 length -= 16;
1191 size_t length,
1197 size_t blocks = length / 16;
1198 size_t leftover = length % 16;
1208 if (length < 16) {
1213 if (length > (1 << 20) * 16) {
1294 size_t length,
1315 while (length--) {
1330 while (length--) {
1356 size_t length,
1368 while (length--) {
1399 size_t length,
1414 while (length--) {
1438 size_t length,
1453 for (size_t i = 0; i < length;) {
1465 if (n > (length - i)) {
1466 n = (length - i);
1475 *nc_off = (*nc_off + length) % 16;