Home
last modified time | relevance | path

Searched refs:bytestocopy (Results 1 – 2 of 2) sorted by relevance

/external/libjpeg-turbo/
Djchuff.c439 bytestocopy = min(bytes, state->free_in_buffer); \
440 MEMCOPY(state->next_output_byte, buffer, bytestocopy); \
441 state->next_output_byte += bytestocopy; \
442 buffer += bytestocopy; \
443 state->free_in_buffer -= bytestocopy; \
446 bytes -= bytestocopy; \
461 size_t bytes, bytestocopy; int localbuf = 0; in flush_bits() local
491 size_t bytes, bytestocopy; int localbuf = 0; in encode_one_block() local
/external/curl/lib/
Dsendf.c565 size_t bytestocopy = CURLMIN(conn->buf_len - conn->read_pos, in Curl_read() local
569 if(bytestocopy > 0) { in Curl_read()
570 memcpy(buf, conn->master_buffer + conn->read_pos, bytestocopy); in Curl_read()
571 conn->read_pos += bytestocopy; in Curl_read()
574 *n = (ssize_t)bytestocopy; in Curl_read()