Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/
H A Dlm_dmae.c997 …const u16_t length_limit = (operation->blocks[0].dest.type != LM_DMAE_ADDRESS_GRC) ? min… in lm_dmae_context_execute_single_block() local
1001 …DbgBreakIf(0 == length_limit); //to avoid divide-by-0. can't do static assert because it depends o… in lm_dmae_context_execute_single_block()
1003 cnt_split = operation->blocks[0].length / length_limit; in lm_dmae_context_execute_single_block()
1004 length_mod = operation->blocks[0].length % length_limit; in lm_dmae_context_execute_single_block()
1022 offset = length_limit*i ; in lm_dmae_context_execute_single_block()
1045 length_current = (cnt_split==i)? length_mod : length_limit ; in lm_dmae_context_execute_single_block()
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/
H A Decore_hw.c898 u16 length_limit = DMAE_MAX_RW_SIZE; in ecore_dmae_execute_command() local
923 cnt_split = size_in_dwords / length_limit; in ecore_dmae_execute_command()
924 length_mod = size_in_dwords % length_limit; in ecore_dmae_execute_command()
930 offset = length_limit * i; in ecore_dmae_execute_command()
944 length_cur = (cnt_split == i) ? length_mod : length_limit; in ecore_dmae_execute_command()