HomeSort by: relevance | last modified time | path
    Searched defs:to_copy (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/dev/isa/
cs89x0isa.c 173 u_int to_copy; local in function:cs_process_rx_dma
323 to_copy = (u_int)
328 memcpy(pBuff, dma_mem_ptr, to_copy);
329 pBuff += to_copy;
340 to_copy = pkt_length - to_copy;
345 memcpy(pBuff, dma_mem_ptr, to_copy);
346 dma_mem_ptr += to_copy;
  /src/libexec/ld.elf_so/
tls.c 167 size_t to_copy = DTV_MAX_INDEX(dtv); local in function:_rtld_tls_get_addr
175 if (to_copy > _rtld_tls_max_index) /* XXX How? */
176 to_copy = _rtld_tls_max_index;
177 memcpy(new_dtv + 1, dtv + 1, to_copy * sizeof(*dtv));
  /src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/
amdgpu_dm_debugfs.c 1042 size_t to_copy = log_ctx.pos - *pos; local in function:dtn_log_read
1044 to_copy = min(to_copy, size);
1046 if (!copy_to_user(buf, log_ctx.buf + *pos, to_copy)) {
1047 *pos += to_copy;
1048 result = to_copy;
  /src/sys/compat/linux/common/
linux_file.c 1079 size_t bytes_left, to_copy; local in function:linux_sys_copy_file_range
1180 to_copy = MIN(bytes_left, LINUX_COPY_FILE_RANGE_MAX_CHUNK);
1186 aiov.iov_len = to_copy;
1190 auio.uio_resid = to_copy;
1203 size_t read_bytes = to_copy - auio.uio_resid;
  /src/common/dist/zlib/contrib/minizip/
zip.c 238 unsigned char* to_copy; local in function:add_data_in_datablock
254 to_copy = &(ldi->data[ldi->filled_in_this_block]);
257 *(to_copy+i)=*(from_copy+i);

Completed in 14 milliseconds