Lines Matching defs:bytesWrittenTotal
1047 size_t bytesWrittenTotal = 0;
1051 void *const currentTarget = (void *)((char *)target + bytesWrittenTotal);
1052 const size_t bytesToWrite = count - bytesWrittenTotal;
1065 bytesWrittenTotal += bytesWrittenMore;
1066 if (bytesWrittenTotal >= count)
1082 size_t bytesWrittenTotal = 0;
1090 void *const currentTarget = (void *)((char *)target + bytesWrittenTotal);
1091 const size_t bytesToWrite = count - bytesWrittenTotal;
1096 bytesWrittenTotal += bytesWrittenMore;
1097 if (bytesWrittenTotal >= count)
1114 size_t bytesWrittenTotal = 0;
1116 while (bytesWrittenTotal < count) {
1120 for (; (i < sizeof(random32)) && (bytesWrittenTotal < count);
1121 i++, bytesWrittenTotal++) {
1123 ((uint8_t *)target)[bytesWrittenTotal] = random8;
1147 size_t bytesWrittenTotal = 0;
1149 while (bytesWrittenTotal < count) {
1156 for (; (i < sizeof(random32)) && (bytesWrittenTotal < count);
1157 i++, bytesWrittenTotal++) {
1159 ((uint8_t *)target)[bytesWrittenTotal] = random8;