| /kernel/linux/linux-5.10/arch/arc/kernel/ |
| D | disasm.c | 56 state->words[0] = (word1 << 16) | word0; in disasm_instr() 59 state->words[0] = word1; in disasm_instr() 65 state->words[1] = (word1 << 16) | word0; in disasm_instr() 72 fieldA = (IS_BIT(state->words[0], 16)) ? in disasm_instr() 73 FIELD_s25(state->words[0]) : in disasm_instr() 74 FIELD_s21(state->words[0]); in disasm_instr() 76 state->delay_slot = IS_BIT(state->words[0], 5); in disasm_instr() 82 if (IS_BIT(state->words[0], 16)) { in disasm_instr() 85 fieldA = (IS_BIT(state->words[0], 17)) ? in disasm_instr() 86 (FIELD_s25(state->words[0]) & ~0x3) : in disasm_instr() [all …]
|
| /kernel/linux/linux-4.19/arch/arc/kernel/ |
| D | disasm.c | 59 state->words[0] = (word1 << 16) | word0; in disasm_instr() 62 state->words[0] = word1; in disasm_instr() 68 state->words[1] = (word1 << 16) | word0; in disasm_instr() 75 fieldA = (IS_BIT(state->words[0], 16)) ? in disasm_instr() 76 FIELD_s25(state->words[0]) : in disasm_instr() 77 FIELD_s21(state->words[0]); in disasm_instr() 79 state->delay_slot = IS_BIT(state->words[0], 5); in disasm_instr() 85 if (IS_BIT(state->words[0], 16)) { in disasm_instr() 88 fieldA = (IS_BIT(state->words[0], 17)) ? in disasm_instr() 89 (FIELD_s25(state->words[0]) & ~0x3) : in disasm_instr() [all …]
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/marvell/prestera/ |
| D | prestera_dsa.c | 37 u32 words[4]; in prestera_dsa_parse() local 40 words[0] = ntohl(dsa_words[0]); in prestera_dsa_parse() 41 words[1] = ntohl(dsa_words[1]); in prestera_dsa_parse() 42 words[2] = ntohl(dsa_words[2]); in prestera_dsa_parse() 43 words[3] = ntohl(dsa_words[3]); in prestera_dsa_parse() 46 cmd = (enum prestera_dsa_cmd)FIELD_GET(PRESTERA_DSA_W0_CMD, words[0]); in prestera_dsa_parse() 52 if (FIELD_GET(PRESTERA_DSA_W0_EXT_BIT, words[0]) == 0) in prestera_dsa_parse() 54 if (FIELD_GET(PRESTERA_DSA_W1_EXT_BIT, words[1]) == 0) in prestera_dsa_parse() 56 if (FIELD_GET(PRESTERA_DSA_W2_EXT_BIT, words[2]) == 0) in prestera_dsa_parse() 59 field = FIELD_GET(PRESTERA_DSA_W3_VID, words[3]); in prestera_dsa_parse() [all …]
|
| /kernel/linux/linux-4.19/tools/bpf/bpftool/bash-completion/ |
| D | bpftool | 37 # Takes a list of words in argument; each one of them is added to COMPREPLY if 44 for (( idx=3; idx < ${#words[@]}-1; idx++ )); do 45 if [[ $w == ${words[idx]} ]]; then 55 # Takes a list of words as argument; if any of those words is present on the 61 for (( idx=3; idx < ${#words[@]}-1; idx++ )); do 62 [[ $w == ${words[idx]} ]] && return 0 68 # Takes a list of words in argument; adds them all to COMPREPLY if none of them 135 for (( idx=3; idx < ${#words[@]}-1; idx++ )); do 136 if [[ ${words[$((idx-2))]} == "update" ]]; then 137 keyword=${words[$((idx-1))]} [all …]
|
| /kernel/linux/linux-4.19/crypto/ |
| D | morus640.c | 31 u32 words[MORUS_BLOCK_WORDS]; member 35 __le32 words[MORUS_BLOCK_WORDS]; member 56 { .words = { 62 { .words = { 82 b0->words[i] ^= b1->words[i] & b2->words[i]; in crypto_morus640_round() 83 b0->words[i] ^= b3->words[i]; in crypto_morus640_round() 84 b0->words[i] ^= m->words[i]; in crypto_morus640_round() 85 b0->words[i] = rol32(b0->words[i], b); in crypto_morus640_round() 90 b3->words[(i + w) % MORUS_BLOCK_WORDS] = tmp.words[i]; in crypto_morus640_round() 111 dst->words[i] = le32_to_cpu(*(const __le32 *)src); in crypto_morus640_load_a() [all …]
|
| D | morus1280.c | 31 u64 words[MORUS_BLOCK_WORDS]; member 35 __le64 words[MORUS_BLOCK_WORDS]; member 56 { .words = { 76 b0->words[i] ^= b1->words[i] & b2->words[i]; in crypto_morus1280_round() 77 b0->words[i] ^= b3->words[i]; in crypto_morus1280_round() 78 b0->words[i] ^= m->words[i]; in crypto_morus1280_round() 79 b0->words[i] = rol64(b0->words[i], b); in crypto_morus1280_round() 84 b3->words[(i + w) % MORUS_BLOCK_WORDS] = tmp.words[i]; in crypto_morus1280_round() 105 dst->words[i] = le64_to_cpu(*(const __le64 *)src); in crypto_morus1280_load_a() 114 dst->words[i] = get_unaligned_le64(src); in crypto_morus1280_load_u() [all …]
|
| /kernel/linux/linux-4.19/scripts/ |
| D | decode_stacktrace.sh | 97 local words 100 read -a words <<<"$1" 107 local last=$(( ${#words[@]} - 1 )) 109 for i in "${!words[@]}"; do 111 if [[ ${words[$i]} =~ \[\<([^]]+)\>\] ]]; then 112 unset words[$i] 116 if [[ ${words[$i]} == \[ && ${words[$i+1]} == *\] ]]; then 117 unset words[$i] 118 words[$i+1]=$(printf "[%13s\n" "${words[$i+1]}") 122 if [[ ${words[$last]} =~ \[([^]]+)\] ]]; then [all …]
|
| /kernel/linux/linux-4.19/drivers/net/ethernet/intel/ice/ |
| D | ice_nvm.c | 9 * @module_typeid: module pointer location in words from the NVM beginning 47 * @offset: offset in words from module start 48 * @words: number of words to access 51 ice_check_sr_access_params(struct ice_hw *hw, u32 offset, u16 words) in ice_check_sr_access_params() argument 53 if ((offset + words) > hw->nvm.sr_words) { in ice_check_sr_access_params() 59 if (words > ICE_SR_SECTOR_SIZE_IN_WORDS) { in ice_check_sr_access_params() 62 "NVM error: tried to access %d words, limit is %d.\n", in ice_check_sr_access_params() 63 words, ICE_SR_SECTOR_SIZE_IN_WORDS); in ice_check_sr_access_params() 67 if (((offset + (words - 1)) / ICE_SR_SECTOR_SIZE_IN_WORDS) != in ice_check_sr_access_params() 81 * @offset: offset in words from module start [all …]
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/net/can/ |
| D | bosch,m_can.yaml | 69 11-bit Filter 0-128 elements / 0-128 words 70 29-bit Filter 0-64 elements / 0-128 words 71 Rx FIFO 0 0-64 elements / 0-1152 words 72 Rx FIFO 1 0-64 elements / 0-1152 words 73 Rx Buffers 0-64 elements / 0-1152 words 74 Tx Event FIFO 0-32 elements / 0-64 words 75 Tx Buffers 0-32 elements / 0-576 words 86 - description: 11-bit Filter 0-128 elements / 0-128 words 89 - description: 29-bit Filter 0-64 elements / 0-128 words 92 - description: Rx FIFO 0 0-64 elements / 0-1152 words [all …]
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/intel/i40e/ |
| D | i40e_nvm.c | 29 /* Switching to words (sr_size contains power of 2KB) */ in i40e_init_nvm() 211 * @module_pointer: module pointer location in words from the NVM beginning 212 * @offset: offset in words from module start 213 * @words: number of words to write 214 * @data: buffer with words to write to the Shadow RAM 217 * Writes a 16 bit words buffer to the Shadow RAM using the admin command. 221 u16 words, void *data, in i40e_read_nvm_aq() argument 235 if ((offset + words) > hw->nvm.sr_size) in i40e_read_nvm_aq() 238 (offset + words), hw->nvm.sr_size); in i40e_read_nvm_aq() 239 else if (words > I40E_SR_SECTOR_SIZE_IN_WORDS) in i40e_read_nvm_aq() [all …]
|
| /kernel/linux/linux-5.10/scripts/ |
| D | decode_stacktrace.sh | 160 local words 163 read -a words <<<"$1" 170 local last=$(( ${#words[@]} - 1 )) 172 for i in "${!words[@]}"; do 174 if [[ ${words[$i]} =~ \[\<([^]]+)\>\] ]]; then 175 unset words[$i] 179 if [[ ${words[$i]} == \[ && ${words[$i+1]} == *\] ]]; then 180 unset words[$i] 181 words[$i+1]=$(printf "[%13s\n" "${words[$i+1]}") 185 if [[ ${words[$last]} =~ \[([^]]+)\] ]]; then [all …]
|
| /kernel/linux/linux-5.10/tools/bpf/bpftool/bash-completion/ |
| D | bpftool | 8 # Takes a list of words in argument; each one of them is added to COMPREPLY if 15 for (( idx=3; idx < ${#words[@]}-1; idx++ )); do 16 if [[ $w == ${words[idx]} ]]; then 26 # Takes a list of words as argument; if any of those words is present on the 32 for (( idx=3; idx < ${#words[@]}-1; idx++ )); do 33 [[ $w == ${words[idx]} ]] && return 0 39 # Takes a list of words in argument; adds them all to COMPREPLY if none of them 140 for (( idx=3; idx < ${#words[@]}-1; idx++ )); do 141 case "${words[$((idx-2))]}" in 143 keyword=${words[$((idx-1))]} [all …]
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/oki-semi/pch_gbe/ |
| D | pch_gbe.h | 141 #define PCH_GBE_RH_ALM_EMP_4 0x00000000 /* 4 words */ 142 #define PCH_GBE_RH_ALM_EMP_8 0x00004000 /* 8 words */ 143 #define PCH_GBE_RH_ALM_EMP_16 0x00008000 /* 16 words */ 144 #define PCH_GBE_RH_ALM_EMP_32 0x0000C000 /* 32 words */ 146 #define PCH_GBE_RH_ALM_FULL_4 0x00000000 /* 4 words */ 147 #define PCH_GBE_RH_ALM_FULL_8 0x00001000 /* 8 words */ 148 #define PCH_GBE_RH_ALM_FULL_16 0x00002000 /* 16 words */ 149 #define PCH_GBE_RH_ALM_FULL_32 0x00003000 /* 32 words */ 151 #define PCH_GBE_RH_RD_TRG_4 0x00000000 /* 4 words */ 152 #define PCH_GBE_RH_RD_TRG_8 0x00000200 /* 8 words */ [all …]
|
| /kernel/linux/linux-4.19/drivers/net/ethernet/oki-semi/pch_gbe/ |
| D | pch_gbe.h | 152 #define PCH_GBE_RH_ALM_EMP_4 0x00000000 /* 4 words */ 153 #define PCH_GBE_RH_ALM_EMP_8 0x00004000 /* 8 words */ 154 #define PCH_GBE_RH_ALM_EMP_16 0x00008000 /* 16 words */ 155 #define PCH_GBE_RH_ALM_EMP_32 0x0000C000 /* 32 words */ 157 #define PCH_GBE_RH_ALM_FULL_4 0x00000000 /* 4 words */ 158 #define PCH_GBE_RH_ALM_FULL_8 0x00001000 /* 8 words */ 159 #define PCH_GBE_RH_ALM_FULL_16 0x00002000 /* 16 words */ 160 #define PCH_GBE_RH_ALM_FULL_32 0x00003000 /* 32 words */ 162 #define PCH_GBE_RH_RD_TRG_4 0x00000000 /* 4 words */ 163 #define PCH_GBE_RH_RD_TRG_8 0x00000200 /* 8 words */ [all …]
|
| /kernel/linux/linux-4.19/drivers/net/ethernet/intel/i40e/ |
| D | i40e_nvm.c | 29 /* Switching to words (sr_size contains power of 2KB) */ in i40e_init_nvm() 211 * @module_pointer: module pointer location in words from the NVM beginning 212 * @offset: offset in words from module start 213 * @words: number of words to write 214 * @data: buffer with words to write to the Shadow RAM 217 * Writes a 16 bit words buffer to the Shadow RAM using the admin command. 221 u16 words, void *data, in i40e_read_nvm_aq() argument 235 if ((offset + words) > hw->nvm.sr_size) in i40e_read_nvm_aq() 238 (offset + words), hw->nvm.sr_size); in i40e_read_nvm_aq() 239 else if (words > I40E_SR_SECTOR_SIZE_IN_WORDS) in i40e_read_nvm_aq() [all …]
|
| /kernel/linux/linux-4.19/drivers/video/fbdev/ |
| D | c2p_iplan2.c | 21 * Perform a full C2P step on 16 8-bit pixels, stored in 4 32-bit words 90 u32 words[4]; in c2p_iplan2() member 112 c2p_16x8(d.words); in c2p_iplan2() 113 store_iplan2_masked(p, bpp, d.words, first); in c2p_iplan2() 116 /* Multiple destination words */ in c2p_iplan2() 124 c2p_16x8(d.words); in c2p_iplan2() 125 store_iplan2_masked(p, bpp, d.words, first); in c2p_iplan2() 133 c2p_16x8(d.words); in c2p_iplan2() 134 store_iplan2(p, bpp, d.words); in c2p_iplan2() 143 c2p_16x8(d.words); in c2p_iplan2() [all …]
|
| D | c2p_planar.c | 21 * Perform a full C2P step on 32 8-bit pixels, stored in 8 32-bit words 92 u32 words[8]; in c2p_planar() member 112 c2p_32x8(d.words); in c2p_planar() 113 store_planar_masked(p, dst_nextplane, bpp, d.words, in c2p_planar() 117 /* Multiple destination words */ in c2p_planar() 125 c2p_32x8(d.words); in c2p_planar() 127 d.words, first); in c2p_planar() 135 c2p_32x8(d.words); in c2p_planar() 136 store_planar(p, dst_nextplane, bpp, d.words); in c2p_planar() 145 c2p_32x8(d.words); in c2p_planar() [all …]
|
| /kernel/linux/linux-5.10/drivers/video/fbdev/ |
| D | c2p_planar.c | 21 * Perform a full C2P step on 32 8-bit pixels, stored in 8 32-bit words 92 u32 words[8]; in c2p_planar() member 112 c2p_32x8(d.words); in c2p_planar() 113 store_planar_masked(p, dst_nextplane, bpp, d.words, in c2p_planar() 117 /* Multiple destination words */ in c2p_planar() 125 c2p_32x8(d.words); in c2p_planar() 127 d.words, first); in c2p_planar() 135 c2p_32x8(d.words); in c2p_planar() 136 store_planar(p, dst_nextplane, bpp, d.words); in c2p_planar() 145 c2p_32x8(d.words); in c2p_planar() [all …]
|
| D | c2p_iplan2.c | 21 * Perform a full C2P step on 16 8-bit pixels, stored in 4 32-bit words 90 u32 words[4]; in c2p_iplan2() member 112 c2p_16x8(d.words); in c2p_iplan2() 113 store_iplan2_masked(p, bpp, d.words, first); in c2p_iplan2() 116 /* Multiple destination words */ in c2p_iplan2() 124 c2p_16x8(d.words); in c2p_iplan2() 125 store_iplan2_masked(p, bpp, d.words, first); in c2p_iplan2() 133 c2p_16x8(d.words); in c2p_iplan2() 134 store_iplan2(p, bpp, d.words); in c2p_iplan2() 143 c2p_16x8(d.words); in c2p_iplan2() [all …]
|
| /kernel/linux/linux-5.10/drivers/spi/ |
| D | spi-sh-msiof.c | 388 u32 bits, u32 words) in sh_msiof_spi_set_mode_regs() argument 390 u32 dr2 = SIMDR2_BITLEN1(bits) | SIMDR2_WDLEN1(words); in sh_msiof_spi_set_mode_regs() 408 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_8() argument 413 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_8() 418 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16() argument 423 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_16() 428 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16u() argument 433 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_16u() 438 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_32() argument 443 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_32() [all …]
|
| /kernel/linux/linux-5.10/drivers/ide/ |
| D | ide-io-std.c | 171 unsigned int words = (len + 1) >> 1; in ide_input_data() local 183 words >>= 1; in ide_input_data() 185 __ide_mm_insl((void __iomem *)data_addr, buf, words); in ide_input_data() 187 insl(data_addr, buf, words); in ide_input_data() 196 words = 1; in ide_input_data() 200 __ide_mm_insw((void __iomem *)data_addr, buf, words); in ide_input_data() 202 insw(data_addr, buf, words); in ide_input_data() 215 unsigned int words = (len + 1) >> 1; in ide_output_data() local 227 words >>= 1; in ide_output_data() 229 __ide_mm_outsl((void __iomem *)data_addr, buf, words); in ide_output_data() [all …]
|
| /kernel/linux/linux-4.19/drivers/ide/ |
| D | ide-io-std.c | 170 unsigned int words = (len + 1) >> 1; in ide_input_data() local 182 words >>= 1; in ide_input_data() 184 __ide_mm_insl((void __iomem *)data_addr, buf, words); in ide_input_data() 186 insl(data_addr, buf, words); in ide_input_data() 195 words = 1; in ide_input_data() 199 __ide_mm_insw((void __iomem *)data_addr, buf, words); in ide_input_data() 201 insw(data_addr, buf, words); in ide_input_data() 214 unsigned int words = (len + 1) >> 1; in ide_output_data() local 226 words >>= 1; in ide_output_data() 228 __ide_mm_outsl((void __iomem *)data_addr, buf, words); in ide_output_data() [all …]
|
| /kernel/linux/linux-4.19/drivers/spi/ |
| D | spi-sh-msiof.c | 385 u32 bits, u32 words) in sh_msiof_spi_set_mode_regs() argument 387 u32 dr2 = MDR2_BITLEN1(bits) | MDR2_WDLEN1(words); in sh_msiof_spi_set_mode_regs() 405 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_8() argument 410 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_8() 415 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16() argument 420 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_16() 425 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16u() argument 430 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_16u() 435 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_32() argument 440 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_32() [all …]
|
| /kernel/linux/linux-4.19/Documentation/devicetree/bindings/net/can/ |
| D | m_can.txt | 35 11-bit Filter 0-128 elements / 0-128 words 36 29-bit Filter 0-64 elements / 0-128 words 37 Rx FIFO 0 0-64 elements / 0-1152 words 38 Rx FIFO 1 0-64 elements / 0-1152 words 39 Rx Buffers 0-64 elements / 0-1152 words 40 Tx Event FIFO 0-32 elements / 0-64 words 41 Tx Buffers 0-32 elements / 0-576 words
|
| /kernel/linux/linux-4.19/drivers/atm/ |
| D | eni.c | 141 * xxPMOK operating on a circular buffer of "c" words 190 eni_dev->tx[i].send,eni_dev->tx[i].words*4); in dump() 196 ENI_VCC(eni_dev->rx_map[i])->words*4); in dump() 326 printk(KERN_ALERT " VCI %d, rxing %d, words %ld\n",vcc->vci, in rx_ident_err() 327 eni_vcc->rxing,eni_vcc->words); in rx_ident_err() 372 here = (eni_vcc->descr+skip) & (eni_vcc->words-1); in do_rx_dma() 377 here = (eni_vcc->descr+size+skip) & (eni_vcc->words-1); in do_rx_dma() 380 unsigned long words; in do_rx_dma() local 387 words = eff; in do_rx_dma() 392 if (init > words) init = words; in do_rx_dma() [all …]
|