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

  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_atombios_i2c.c 119 int i, remaining, current_count, buffer_offset, max_bytes, ret; local in function:amdgpu_atombios_i2c_xfer
138 /* max_bytes are a limitation of ProcessI2cChannelTransaction not the hw */
140 max_bytes = ATOM_MAX_HW_I2C_READ;
143 max_bytes = ATOM_MAX_HW_I2C_WRITE;
147 if (remaining > max_bytes)
148 current_count = max_bytes;
amdgpu_vram_mgr.c 341 uint64_t vis_usage = 0, mem_bytes, max_bytes; local in function:amdgpu_vram_mgr_new
349 max_bytes = adev->gmc.mc_vram_size;
351 max_bytes -= AMDGPU_VM_RESERVED_VRAM;
355 if (atomic64_add_return(mem_bytes, &mgr->usage) > max_bytes) {
amdgpu_ttm.c 2251 uint32_t max_bytes; local in function:amdgpu_copy_buffer
2261 max_bytes = adev->mman.buffer_funcs->copy_max_bytes;
2262 num_loops = DIV_ROUND_UP(byte_count, max_bytes);
2284 uint32_t cur_size_in_bytes = min(byte_count, max_bytes);
2318 uint32_t max_bytes = adev->mman.buffer_funcs->fill_max_bytes; local in function:amdgpu_fill_buffer
2345 num_loops += DIV_ROUND_UP_ULL(byte_count, max_bytes);
2377 max_bytes);
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_atombios_i2c.c 112 int i, remaining, current_count, buffer_offset, max_bytes, ret; local in function:radeon_atom_hw_i2c_xfer
131 /* max_bytes are a limitation of ProcessI2cChannelTransaction not the hw */
133 max_bytes = ATOM_MAX_HW_I2C_READ;
136 max_bytes = ATOM_MAX_HW_I2C_WRITE;
140 if (remaining > max_bytes)
141 current_count = max_bytes;
  /src/sys/dev/ic/
rtl81x9.c 919 uint16_t rx_bytes, max_bytes; local in function:rtk_rxeof
929 max_bytes = (RTK_RXBUFLEN - cur_rx) + limit;
931 max_bytes = limit - cur_rx;
992 if (rx_bytes > max_bytes)
  /src/sys/external/bsd/drm/dist/shared-core/
r600_blit.c 1717 int max_bytes; local in function:r600_blit_copy
1728 max_bytes = 8192;
1739 h = (cur_size / max_bytes);
1745 cur_size = max_bytes;
1747 if (cur_size > max_bytes)
1748 cur_size = max_bytes;
1749 if (cur_size > (max_bytes - dst_x))
1750 cur_size = (max_bytes - dst_x);
1751 if (cur_size > (max_bytes - src_x))
1752 cur_size = (max_bytes - src_x)
    [all...]

Completed in 39 milliseconds