Searched refs:chunks (Results 1 – 5 of 5) sorted by relevance
/system/core/libsparse/ |
D | sparse.c | 84 unsigned int chunks = 0; in sparse_count_chunks() local 90 chunks++; in sparse_count_chunks() 92 chunks++; in sparse_count_chunks() 97 chunks++; in sparse_count_chunks() 100 return chunks; in sparse_count_chunks() 155 int chunks; in sparse_file_write() local 158 chunks = sparse_count_chunks(s); in sparse_file_write() 159 out = output_file_open_fd(fd, s->block_size, s->len, gz, sparse, chunks, crc); in sparse_file_write() 175 int chunks; in sparse_file_callback() local 178 chunks = sparse_count_chunks(s); in sparse_file_callback() [all …]
|
D | output_file.h | 25 int gz, int sparse, int chunks, int crc); 28 int chunks, int crc);
|
D | output_file.c | 553 int64_t len, bool sparse, int chunks, bool crc) in output_file_init() argument 592 .total_chunks = chunks, in output_file_init() 643 int chunks, int crc) in output_file_open_callback() argument 658 ret = output_file_init(&outc->out, block_size, len, sparse, chunks, crc); in output_file_open_callback() 668 int gz, int sparse, int chunks, int crc) in output_file_open_fd() argument 681 ret = output_file_init(out, block_size, len, sparse, chunks, crc); in output_file_open_fd()
|
/system/core/libcutils/tests/memset_mips/ |
D | memset_cmips.S | 95 andi t8,a2,0x3f # any 64-byte chunks? 96 # t8 is the byte count past 64-byte chunks 97 beq a2,t8,.Lchk8w # when a2==t8, no 64-byte chunks 100 # Here a3 counts bytes in 16w chunks 101 addu a3,a0,a3 # Now a3 is the final dst after 64-byte chunks 103 # Find out, if there are any 64-byte chunks after which will be still at least 115 # Here t5 counts bytes in 16w "safe" chunks 116 addu t4,a0,t5 # Now t4 is the dst after 64-byte "safe" chunks
|
/system/core/adb/ |
D | sysdeps_win32.c | 1517 int chunks, chunk, remains; in _wait_for_all() local 1532 chunks = handles_count / WAIT_ALL_CHUNK_SIZE; in _wait_for_all() 1534 threads = (WaitForAllParam*)malloc((chunks + (remains ? 1 : 0)) * in _wait_for_all() 1554 for (chunk = 0; chunk < chunks; chunk++) { in _wait_for_all() 1567 chunks++; in _wait_for_all() 1571 for (chunk = 0; chunk < chunks; chunk++) { in _wait_for_all() 1579 chunk, chunks, errno); in _wait_for_all() 1580 chunks = chunk; in _wait_for_all() 1590 for (chunk = 0; chunk < chunks; chunk++) { in _wait_for_all()
|