Home
last modified time | relevance | path

Searched refs:bytes_remaining (Results 1 – 7 of 7) sorted by relevance

/third_party/openssl/providers/implementations/rands/seeding/
Drand_cpu_x86.c63 size_t bytes_remaining = len; in get_hardware_random_value() local
65 while (bytes_remaining > 0) { in get_hardware_random_value()
73 if (bytes_remaining >= sizeof(random_value)) { in get_hardware_random_value()
75 bytes_remaining -= sizeof(random_value); in get_hardware_random_value()
79 random_buffer + (sizeof(random_value) - bytes_remaining), in get_hardware_random_value()
80 bytes_remaining); in get_hardware_random_value()
81 bytes_remaining = 0; /* This will terminate the loop */ in get_hardware_random_value()
86 if (bytes_remaining == 0) in get_hardware_random_value()
Drand_vms.c366 size_t bytes_remaining = ossl_rand_pool_bytes_remaining(pool); in data_collect_method() local
468 if (total_length > bytes_remaining) in data_collect_method()
469 total_length = bytes_remaining; in data_collect_method()
/third_party/ffmpeg/libavutil/
Dbase64.c150 int bytes_remaining = in_size; in av_base64_encode() local
156 while (bytes_remaining > 3) { in av_base64_encode()
158 in += 3; bytes_remaining -= 3; in av_base64_encode()
165 while (bytes_remaining) { in av_base64_encode()
167 bytes_remaining--; in av_base64_encode()
/third_party/node/deps/npm/node_modules/jsonparse/
Djsonparse.js68 …this.bytes_remaining = 0; // number of bytes remaining in multi byte utf8 char to read after split…
161 if (this.bytes_remaining > 0) {
162 for (var j = 0; j < this.bytes_remaining; j++) {
163 …this.temp_buffs[this.bytes_in_sequence][this.bytes_in_sequence - this.bytes_remaining + j] = buffe…
167 this.bytes_in_sequence = this.bytes_remaining = 0;
169 …} else if (this.bytes_remaining === 0 && n >= 128) { // else if no remainder bytes carried over, p…
180 this.bytes_remaining = (i + this.bytes_in_sequence) - buffer.length;
/third_party/ffmpeg/libavcodec/
Dadpcm.c1450 int bytes_remaining; in adpcm_decode_frame() local
1461 bytes_remaining = bytestream2_get_bytes_left(&gb); in adpcm_decode_frame()
1462 if (bytes_remaining > 0) { in adpcm_decode_frame()
1463 bytestream2_skip(&gb, bytes_remaining); in adpcm_decode_frame()
/third_party/skia/third_party/externals/libwebp/
DREADME763 while (bytes_remaining > 0) {
766 bytes_remaining -= bytes_read;
/third_party/flutter/skia/third_party/externals/libwebp/
DREADME757 while (bytes_remaining > 0) {
760 bytes_remaining -= bytes_read;