Searched refs:words (Results 1 - 25 of 230) sorted by relevance

12345678910

/linux-master/drivers/net/ethernet/marvell/prestera/
H A Dprestera_dsa.c38 u32 words[4]; local
41 words[0] = ntohl(dsa_words[0]);
42 words[1] = ntohl(dsa_words[1]);
43 words[2] = ntohl(dsa_words[2]);
44 words[3] = ntohl(dsa_words[3]);
47 cmd = (enum prestera_dsa_cmd)FIELD_GET(PRESTERA_DSA_W0_CMD, words[0]);
53 if (FIELD_GET(PRESTERA_DSA_W0_EXT_BIT, words[0]) == 0)
55 if (FIELD_GET(PRESTERA_DSA_W1_EXT_BIT, words[1]) == 0)
57 if (FIELD_GET(PRESTERA_DSA_W2_EXT_BIT, words[2]) == 0)
60 field = FIELD_GET(PRESTERA_DSA_W3_VID, words[
87 u32 words[4] = { 0 }; local
[all...]
/linux-master/include/linux/
H A Dswab.h24 static inline void swab16_array(u16 *buf, unsigned int words) argument
26 while (words--) {
32 static inline void swab32_array(u32 *buf, unsigned int words) argument
34 while (words--) {
40 static inline void swab64_array(u64 *buf, unsigned int words) argument
42 while (words--) {
/linux-master/arch/arc/kernel/
H A Ddisasm.c56 state->words[0] = (word1 << 16) | word0;
59 state->words[0] = word1;
65 state->words[1] = (word1 << 16) | word0;
72 fieldA = (IS_BIT(state->words[0], 16)) ?
73 FIELD_s25(state->words[0]) :
74 FIELD_s21(state->words[0]);
76 state->delay_slot = IS_BIT(state->words[0], 5);
82 if (IS_BIT(state->words[0], 16)) {
85 fieldA = (IS_BIT(state->words[0], 17)) ?
86 (FIELD_s25(state->words[
[all...]
/linux-master/tools/testing/selftests/net/tcp_ao/lib/
H A Dutils.c8 size_t words = buflen / sizeof(int); local
14 while (words--)
/linux-master/fs/ocfs2/cluster/
H A Dmasklog.h111 unsigned long words[MLOG_MAX_BITS / BITS_PER_LONG]; member in struct:mlog_bits
119 ( (u32)(mask & 0xffffffff) & bits.words[0] || \
120 ((u64)(mask) >> 32) & bits.words[1] )
122 bits.words[0] |= (u32)(mask & 0xffffffff); \
123 bits.words[1] |= (u64)(mask) >> 32; \
126 bits.words[0] &= ~((u32)(mask & 0xffffffff)); \
127 bits.words[1] &= ~((u64)(mask) >> 32); \
138 #define __mlog_test_u64(mask, bits) ((mask) & bits.words[0])
140 bits.words[0] |= (mask); \
143 bits.words[
[all...]
/linux-master/drivers/video/fbdev/
H A Dc2p_iplan2.c21 * Perform a full C2P step on 16 8-bit pixels, stored in 4 32-bit words
90 u32 words[4]; member in union:__anon11115
112 c2p_16x8(d.words);
113 store_iplan2_masked(p, bpp, d.words, first);
116 /* Multiple destination words */
124 c2p_16x8(d.words);
125 store_iplan2_masked(p, bpp, d.words, first);
133 c2p_16x8(d.words);
134 store_iplan2(p, bpp, d.words);
143 c2p_16x8(d.words);
[all...]
H A Dc2p_planar.c21 * Perform a full C2P step on 32 8-bit pixels, stored in 8 32-bit words
92 u32 words[8]; member in union:__anon11116
112 c2p_32x8(d.words);
113 store_planar_masked(p, dst_nextplane, bpp, d.words,
117 /* Multiple destination words */
125 c2p_32x8(d.words);
127 d.words, first);
135 c2p_32x8(d.words);
136 store_planar(p, dst_nextplane, bpp, d.words);
145 c2p_32x8(d.words);
[all...]
/linux-master/scripts/
H A Ddecode_stacktrace.sh252 local words
255 read -a words <<<"$1"
262 local last=$(( ${#words[@]} - 1 ))
264 for i in "${!words[@]}"; do
266 if [[ ${words[$i]} =~ \[\<([^]]+)\>\] ]]; then
267 unset words[$i]
271 if [[ ${words[$i]} == \[ && ${words[$i+1]} == *\] ]]; then
272 unset words[$i]
273 words[
[all...]
/linux-master/drivers/net/ethernet/intel/igc/
H A Digc_nvm.h10 s32 igc_read_nvm_eerd(struct igc_hw *hw, u16 offset, u16 words, u16 *data);
H A Digc_i225.c181 * @words: number of words to read
187 static s32 igc_read_nvm_srrd_i225(struct igc_hw *hw, u16 offset, u16 words, argument
197 for (i = 0; i < words; i += IGC_EERD_EEWR_MAX_COUNT) {
198 count = (words - i) / IGC_EERD_EEWR_MAX_COUNT > 0 ?
199 IGC_EERD_EEWR_MAX_COUNT : (words - i);
218 * @words: number of words to write
226 static s32 igc_write_nvm_srwr(struct igc_hw *hw, u16 offset, u16 words, argument
234 /* A check for invalid values: offset too large, too many words,
285 igc_write_nvm_srwr_i225(struct igc_hw *hw, u16 offset, u16 words, u16 *data) argument
[all...]
/linux-master/drivers/gpu/drm/tegra/
H A Dsubmit.h18 u32 words, struct tegra_drm_submit_data *submit,
/linux-master/drivers/net/ethernet/intel/e1000e/
H A Dnvm.h13 s32 e1000e_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
16 s32 e1000e_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
/linux-master/drivers/gpu/host1x/
H A Djob.h14 unsigned int words; member in struct:host1x_job_gather
H A Djob.c114 unsigned int words, unsigned int offset)
118 gather->words = words;
348 u32 words; member in struct:host1x_firewall
394 if (fw->words == 0)
402 fw->words--;
419 if (fw->words == 0)
427 fw->words--;
441 if (fw->words == 0)
448 fw->words
113 host1x_job_add_gather(struct host1x_job *job, struct host1x_bo *bo, unsigned int words, unsigned int offset) argument
[all...]
/linux-master/fs/xfs/scrub/
H A Drtsummary.h25 union xfs_suminfo_raw words[]; member in struct:xchk_rtsummary
/linux-master/drivers/net/ethernet/intel/igb/
H A De1000_nvm.h13 s32 igb_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
14 s32 igb_read_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
15 s32 igb_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
/linux-master/tools/perf/
H A Dperf-completion.sh16 # re-assemble words to complete.
77 words)
78 words=("${words_[@]}")
134 if [[ ${words[i]} == "$1" ]]; then
138 if [[ ${words[i]} == "$cmd_" ]]; then
139 prev_skip_opts=${words[i]}
151 cmd=${words[0]}
283 cur=${words[CURRENT]}
284 prev=${words[CURRENT-1]}
310 local cur words cwor
[all...]
/linux-master/drivers/spi/
H A Dspi-sh-msiof.c394 u32 bits, u32 words)
396 u32 dr2 = SIMDR2_BITLEN1(bits) | SIMDR2_WDLEN1(words);
414 const void *tx_buf, int words, int fs)
419 for (k = 0; k < words; k++)
424 const void *tx_buf, int words, int fs)
429 for (k = 0; k < words; k++)
434 const void *tx_buf, int words, int fs)
439 for (k = 0; k < words; k++)
444 const void *tx_buf, int words, int fs)
449 for (k = 0; k < words;
392 sh_msiof_spi_set_mode_regs(struct sh_msiof_spi_priv *p, const void *tx_buf, void *rx_buf, u32 bits, u32 words) argument
413 sh_msiof_spi_write_fifo_8(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) argument
423 sh_msiof_spi_write_fifo_16(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) argument
433 sh_msiof_spi_write_fifo_16u(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) argument
443 sh_msiof_spi_write_fifo_32(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) argument
453 sh_msiof_spi_write_fifo_32u(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) argument
463 sh_msiof_spi_write_fifo_s32(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) argument
473 sh_msiof_spi_write_fifo_s32u(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) argument
483 sh_msiof_spi_read_fifo_8(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) argument
493 sh_msiof_spi_read_fifo_16(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) argument
503 sh_msiof_spi_read_fifo_16u(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) argument
513 sh_msiof_spi_read_fifo_32(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) argument
523 sh_msiof_spi_read_fifo_32u(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) argument
533 sh_msiof_spi_read_fifo_s32(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) argument
543 sh_msiof_spi_read_fifo_s32u(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) argument
673 sh_msiof_spi_txrx_once(struct sh_msiof_spi_priv *p, void (*tx_fifo)(struct sh_msiof_spi_priv *, const void *, int, int), void (*rx_fifo)(struct sh_msiof_spi_priv *, void *, int, int), const void *tx_buf, void *rx_buf, int words, int bits) argument
866 copy_bswap32(u32 *dst, const u32 *src, unsigned int words) argument
885 copy_wswap32(u32 *dst, const u32 *src, unsigned int words) argument
904 copy_plain32(u32 *dst, const u32 *src, unsigned int words) argument
922 unsigned int words; local
[all...]
/linux-master/tools/lib/
H A Dstring.c196 unsigned int words, prefix; local
218 words = bytes / 8;
220 while (words) {
224 words--;
/linux-master/include/linux/byteorder/
H A Dgeneric.h160 static inline void le32_to_cpu_array(u32 *buf, unsigned int words) argument
162 while (words--) {
168 static inline void cpu_to_le32_array(u32 *buf, unsigned int words) argument
170 while (words--) {
/linux-master/include/trace/events/
H A Dhost1x.h98 u32 words, u32 offset, void *cmdbuf),
100 TP_ARGS(name, bo, words, offset, cmdbuf),
105 __field(u32, words)
108 __dynamic_array(u32, cmdbuf, words)
114 words * sizeof(u32));
119 __entry->words = words;
123 TP_printk("name=%s, bo=%p, words=%u, offset=%d, contents=[%s]",
125 __entry->words, __entry->offset,
127 __entry->cmdbuf ? __entry->words *
[all...]
/linux-master/drivers/atm/
H A Deni.c136 * xxPMOK operating on a circular buffer of "c" words
185 eni_dev->tx[i].send,eni_dev->tx[i].words*4);
191 ENI_VCC(eni_dev->rx_map[i])->words*4);
322 printk(KERN_ALERT " VCI %d, rxing %d, words %ld\n",vcc->vci,
323 eni_vcc->rxing,eni_vcc->words);
368 here = (eni_vcc->descr+skip) & (eni_vcc->words-1);
373 here = (eni_vcc->descr+size+skip) & (eni_vcc->words-1);
376 unsigned long words; local
383 words = eff;
388 if (init > words) ini
931 u32 init,words; local
[all...]
/linux-master/arch/alpha/lib/
H A Dstrncpy.S33 bne $18, $multiword # do we have full words left?
67 0: stq_u $31, 0($16) # zero two words
/linux-master/drivers/ata/
H A Dpata_falcon.c51 unsigned int words = buflen >> 1; local
62 raw_insw_swapw(data_addr, (u16 *)buf, words);
64 raw_insw(data_addr, (u16 *)buf, words);
67 raw_outsw_swapw(data_addr, (u16 *)buf, words);
69 raw_outsw(data_addr, (u16 *)buf, words);
92 words++;
95 return words << 1;
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_nvm.c31 /* Switching to words (sr_size contains power of 2KB) */
212 * @module_pointer: module pointer location in words from the NVM beginning
213 * @offset: offset in words from module start
214 * @words: number of words to read
215 * @data: buffer with words to read to the Shadow RAM
218 * Reads a 16 bit words buffer to the Shadow RAM using the admin command.
222 u16 words, void *data,
236 if ((offset + words) > hw->nvm.sr_size)
239 (offset + words), h
220 i40e_read_nvm_aq(struct i40e_hw *hw, u8 module_pointer, u32 offset, u16 words, void *data, bool last_command) argument
410 i40e_read_nvm_buffer_srctl(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) argument
441 i40e_read_nvm_buffer_aq(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) argument
497 __i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) argument
518 i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) argument
548 i40e_write_nvm_aq(struct i40e_hw *hw, u8 module_pointer, u32 offset, u16 words, void *data, bool last_command) argument
636 u16 words = I40E_SR_SECTOR_SIZE_IN_WORDS; local
[all...]

Completed in 264 milliseconds

12345678910