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

  /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/external/bsd/drm2/dist/include/drm/
drm_audio_component.h 59 * Note that the returned size may be over @max_bytes. Then it
63 unsigned char *buf, int max_bytes);
  /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);
amdgpu_cs.c 301 u64 *max_bytes,
317 *max_bytes = 0;
364 *max_bytes = us_to_bytes(adev, adev->mm_stats.accum_us);
  /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...]
  /src/sys/arch/arm/at91/
at91pdcvar.h 274 static __inline void *AT91PDC_FIFO_WRPTR(at91pdc_fifo_t *fifo, int *max_bytes)
282 *max_bytes = contig_bytes;
  /src/sys/arch/mac68k/nubus/
nubus.c 670 nubus_dirent *dirent, char *data_return, int max_bytes)
678 fmt, dirent, data_return, max_bytes);
686 while (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/drm2/dist/drm/i915/display/
intel_audio.c 1022 unsigned char *buf, int max_bytes)
1043 memcpy(buf, eld, min(max_bytes, ret));
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
nouveau_dispnv50_disp.c 513 bool *enabled, unsigned char *buf, int max_bytes)
534 min(max_bytes, ret));
  /src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/
amdgpu_dm.c 625 unsigned char *buf, int max_bytes)
646 memcpy(buf, connector->eld, min(max_bytes, ret));

Completed in 25 milliseconds