HomeSort by: relevance | last modified time | path
    Searched refs:bytesWrittenTotal (Results 1 - 4 of 4) sorted by relevancy

  /src/external/mit/expat/dist/lib/
random_arc4random.c 45 size_t bytesWrittenTotal = 0;
47 while (bytesWrittenTotal < count) {
50 size_t toUse = count - bytesWrittenTotal;
53 memcpy((char *)target + bytesWrittenTotal, &random32, toUse);
54 bytesWrittenTotal += toUse;
random_dev_urandom.c 48 size_t bytesWrittenTotal = 0;
56 void *const currentTarget = (void *)((char *)target + bytesWrittenTotal);
57 const size_t bytesToWrite = count - bytesWrittenTotal;
64 bytesWrittenTotal += bytesWrittenMore;
65 if (bytesWrittenTotal >= count)
random_rand_s.c 73 size_t bytesWrittenTotal = 0;
75 while (bytesWrittenTotal < count) {
81 size_t toUse = count - bytesWrittenTotal;
84 memcpy((char *)target + bytesWrittenTotal, &random32, toUse);
85 bytesWrittenTotal += toUse;
random_getrandom.c 63 size_t bytesWrittenTotal = 0;
67 void *const currentTarget = (void *)((char *)target + bytesWrittenTotal);
68 const size_t bytesToWrite = count - bytesWrittenTotal;
83 bytesWrittenTotal += bytesWrittenMore;
84 if (bytesWrittenTotal >= count)

Completed in 25 milliseconds