Home
last modified time | relevance | path

Searched refs:words (Results 1 – 25 of 358) sorted by relevance

12345678910>>...15

/Linux-v4.19/arch/arc/kernel/
Ddisasm.c59 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 …]
/Linux-v4.19/scripts/
Ddecode_stacktrace.sh97 local words
100 read -a words <<<"$1"
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
123 module=${words[$last]}
126 symbol=${words[$last-1]}
[all …]
/Linux-v4.19/crypto/
Dmorus640.c31 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 …]
Dmorus1280.c31 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 …]
/Linux-v4.19/fs/ocfs2/cluster/
Dmasklog.h127 unsigned long words[MLOG_MAX_BITS / BITS_PER_LONG]; member
135 ( (u32)(mask & 0xffffffff) & bits.words[0] || \
136 ((u64)(mask) >> 32) & bits.words[1] )
138 bits.words[0] |= (u32)(mask & 0xffffffff); \
139 bits.words[1] |= (u64)(mask) >> 32; \
142 bits.words[0] &= ~((u32)(mask & 0xffffffff)); \
143 bits.words[1] &= ~((u64)(mask) >> 32); \
154 #define __mlog_test_u64(mask, bits) ((mask) & bits.words[0])
156 bits.words[0] |= (mask); \
159 bits.words[0] &= ~(mask); \
/Linux-v4.19/tools/bpf/bpftool/bash-completion/
Dbpftool37 # 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 …]
/Linux-v4.19/drivers/video/fbdev/
Dc2p_iplan2.c90 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()
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()
144 store_iplan2_masked(p, bpp, d.words, last); in c2p_iplan2()
Dc2p_planar.c92 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()
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()
147 d.words, last); in c2p_planar()
/Linux-v4.19/drivers/ide/
Dide-io-std.c170 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 …]
/Linux-v4.19/drivers/spi/
Dspi-sh-msiof.c385 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 …]
/Linux-v4.19/tools/perf/
Dperf-completion.sh77 words)
78 words=("${words_[@]}")
132 if [[ ${words[i]} == $1 ]]; then
136 if [[ ${words[i]} == $cmd_ ]]; then
137 prev_skip_opts=${words[i]}
149 cmd=${words[0]}
263 cur=${words[CURRENT]}
264 prev=${words[CURRENT-1]}
288 local cur words cword prev
290 _get_comp_words_by_ref -n =:, cur words cword prev
[all …]
/Linux-v4.19/drivers/atm/
Deni.c190 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()
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()
397 words -= init; in do_rx_dma()
400 if (words & ~15) { in do_rx_dma()
[all …]
/Linux-v4.19/drivers/net/ethernet/intel/ice/
Dice_nvm.c51 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()
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()
89 ice_read_sr_aq(struct ice_hw *hw, u32 offset, u16 words, u16 *data, in ice_read_sr_aq() argument
94 status = ice_check_sr_access_params(hw, offset, words); in ice_read_sr_aq()
101 status = ice_aq_read_nvm(hw, 0, 2 * offset, 2 * words, data, in ice_read_sr_aq()
/Linux-v4.19/drivers/ata/
Dpata_falcon.c50 unsigned int words = buflen >> 1; in pata_falcon_data_xfer() local
61 raw_insw_swapw((u16 *)data_addr, (u16 *)buf, words); in pata_falcon_data_xfer()
63 raw_insw((u16 *)data_addr, (u16 *)buf, words); in pata_falcon_data_xfer()
66 raw_outsw_swapw((u16 *)data_addr, (u16 *)buf, words); in pata_falcon_data_xfer()
68 raw_outsw((u16 *)data_addr, (u16 *)buf, words); in pata_falcon_data_xfer()
91 words++; in pata_falcon_data_xfer()
94 return words << 1; in pata_falcon_data_xfer()
/Linux-v4.19/include/trace/events/
Dhost1x.h85 u32 words, u32 offset, void *cmdbuf),
87 TP_ARGS(name, bo, words, offset, cmdbuf),
92 __field(u32, words)
95 __dynamic_array(u32, cmdbuf, words)
101 words * sizeof(u32));
106 __entry->words = words;
112 __entry->words, __entry->offset,
114 __entry->cmdbuf ? __entry->words * 4 : 0))
/Linux-v4.19/drivers/gpu/host1x/
Djob.c99 unsigned int words, unsigned int offset) in host1x_job_add_gather() argument
103 gather->words = words; in host1x_job_add_gather()
274 u32 words; member
320 if (fw->words == 0) in check_mask()
328 fw->words--; in check_mask()
345 if (fw->words == 0) in check_incr()
353 fw->words--; in check_incr()
367 if (fw->words == 0) in check_nonincr()
374 fw->words--; in check_nonincr()
389 fw->words = g->words; in validate()
[all …]
/Linux-v4.19/drivers/net/ethernet/intel/i40e/
Di40e_nvm.c221 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()
243 words, I40E_SR_SECTOR_SIZE_IN_WORDS); in i40e_read_nvm_aq()
244 else if (((offset + (words - 1)) / I40E_SR_SECTOR_SIZE_IN_WORDS) in i40e_read_nvm_aq()
249 offset, words); in i40e_read_nvm_aq()
253 2 * words, /*bytes*/ in i40e_read_nvm_aq()
336 u16 *words, u16 *data) in i40e_read_nvm_buffer_srctl() argument
342 for (word = 0; word < *words; word++) { in i40e_read_nvm_buffer_srctl()
[all …]
/Linux-v4.19/lib/
Ddynamic_debug.c220 static int ddebug_tokenize(char *buf, char *words[], int maxwords) in ddebug_tokenize() argument
256 words[nwords++] = buf; in ddebug_tokenize()
264 pr_cont(" \"%s\"", words[i]); in ddebug_tokenize()
318 static int ddebug_parse_query(char *words[], int nwords, in ddebug_parse_query() argument
336 if (!strcmp(words[i], "func")) { in ddebug_parse_query()
337 rc = check_set(&query->function, words[i+1], "func"); in ddebug_parse_query()
338 } else if (!strcmp(words[i], "file")) { in ddebug_parse_query()
339 rc = check_set(&query->filename, words[i+1], "file"); in ddebug_parse_query()
340 } else if (!strcmp(words[i], "module")) { in ddebug_parse_query()
341 rc = check_set(&query->module, words[i+1], "module"); in ddebug_parse_query()
[all …]
/Linux-v4.19/Documentation/devicetree/bindings/net/can/
Dm_can.txt35 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
/Linux-v4.19/drivers/nvmem/
Dqfprom.c30 int i = 0, words = bytes; in qfprom_reg_read() local
32 while (words--) in qfprom_reg_read()
43 int i = 0, words = bytes; in qfprom_reg_write() local
45 while (words--) in qfprom_reg_write()
Dmtk-efuse.c31 int i = 0, words = bytes / 4; in mtk_reg_read() local
33 while (words--) in mtk_reg_read()
44 int i = 0, words = bytes / 4; in mtk_reg_write() local
46 while (words--) in mtk_reg_write()
/Linux-v4.19/drivers/bcma/
Dsprom.c76 size_t words) in bcma_sprom_read() argument
79 for (i = 0; i < words; i++) in bcma_sprom_read()
127 static u8 bcma_sprom_crc(const u16 *sprom, size_t words) in bcma_sprom_crc() argument
132 for (word = 0; word < words - 1; word++) { in bcma_sprom_crc()
136 crc = bcma_crc8(crc, sprom[words - 1] & 0x00FF); in bcma_sprom_crc()
142 static int bcma_sprom_check_crc(const u16 *sprom, size_t words) in bcma_sprom_check_crc() argument
148 crc = bcma_sprom_crc(sprom, words); in bcma_sprom_check_crc()
149 tmp = sprom[words - 1] & SSB_SPROM_REVISION_CRC; in bcma_sprom_check_crc()
158 size_t words) in bcma_sprom_valid() argument
163 err = bcma_sprom_check_crc(sprom, words); in bcma_sprom_valid()
[all …]
/Linux-v4.19/drivers/net/ethernet/intel/igb/
De1000_nvm.c305 s32 igb_read_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data) in igb_read_nvm_spi() argument
316 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || in igb_read_nvm_spi()
317 (words == 0)) { in igb_read_nvm_spi()
344 for (i = 0; i < words; i++) { in igb_read_nvm_spi()
365 s32 igb_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data) in igb_read_nvm_eerd() argument
374 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || in igb_read_nvm_eerd()
375 (words == 0)) { in igb_read_nvm_eerd()
381 for (i = 0; i < words; i++) { in igb_read_nvm_eerd()
410 s32 igb_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data) in igb_write_nvm_spi() argument
419 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || in igb_write_nvm_spi()
[all …]
De1000_i210.c187 static s32 igb_read_nvm_srrd_i210(struct e1000_hw *hw, u16 offset, u16 words, in igb_read_nvm_srrd_i210() argument
197 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) { in igb_read_nvm_srrd_i210()
198 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ? in igb_read_nvm_srrd_i210()
199 E1000_EERD_EEWR_MAX_COUNT : (words - i); in igb_read_nvm_srrd_i210()
227 static s32 igb_write_nvm_srwr(struct e1000_hw *hw, u16 offset, u16 words, in igb_write_nvm_srwr() argument
238 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || in igb_write_nvm_srwr()
239 (words == 0)) { in igb_write_nvm_srwr()
245 for (i = 0; i < words; i++) { in igb_write_nvm_srwr()
287 static s32 igb_write_nvm_srwr_i210(struct e1000_hw *hw, u16 offset, u16 words, in igb_write_nvm_srwr_i210() argument
297 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) { in igb_write_nvm_srwr_i210()
[all …]
/Linux-v4.19/drivers/soundwire/
Dmipi_disco.c138 dp0->words = devm_kcalloc(&slave->dev, in sdw_slave_read_dp0()
139 dp0->num_words, sizeof(*dp0->words), in sdw_slave_read_dp0()
141 if (!dp0->words) in sdw_slave_read_dp0()
146 dp0->words, dp0->num_words); in sdw_slave_read_dp0()
196 dpn[i].words = devm_kcalloc(&slave->dev, in sdw_slave_read_dpn()
198 sizeof(*dpn[i].words), GFP_KERNEL); in sdw_slave_read_dpn()
199 if (!dpn[i].words) in sdw_slave_read_dpn()
204 dpn[i].words, dpn[i].num_words); in sdw_slave_read_dpn()

12345678910>>...15