Home
last modified time | relevance | path

Searched full:words (Results 1 – 25 of 1146) sorted by relevance

12345678910>>...46

/linux/arch/arc/kernel/
H A Ddisasm.c56 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 …]
/linux/drivers/net/ethernet/marvell/prestera/
H A Dprestera_dsa.c38 u32 words[4]; in prestera_dsa_parse() local
41 words[0] = ntohl(dsa_words[0]); in prestera_dsa_parse()
42 words[1] = ntohl(dsa_words[1]); in prestera_dsa_parse()
43 words[2] = ntohl(dsa_words[2]); in prestera_dsa_parse()
44 words[3] = ntohl(dsa_words[3]); in prestera_dsa_parse()
47 cmd = (enum prestera_dsa_cmd)FIELD_GET(PRESTERA_DSA_W0_CMD, words[0]); in prestera_dsa_parse()
53 if (FIELD_GET(PRESTERA_DSA_W0_EXT_BIT, words[0]) == 0) in prestera_dsa_parse()
55 if (FIELD_GET(PRESTERA_DSA_W1_EXT_BIT, words[1]) == 0) in prestera_dsa_parse()
57 if (FIELD_GET(PRESTERA_DSA_W2_EXT_BIT, words[2]) == 0) in prestera_dsa_parse()
60 field = FIELD_GET(PRESTERA_DSA_W3_VID, words[3]); in prestera_dsa_parse()
[all …]
/linux/drivers/net/ethernet/intel/i40e/
H A Di40e_nvm.c31 /* Switching to words (sr_size contains power of 2KB) */ in i40e_init_nvm()
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, in i40e_read_nvm_aq() argument
236 if ((offset + words) > hw->nvm.sr_size) in i40e_read_nvm_aq()
239 (offset + words), hw->nvm.sr_size); in i40e_read_nvm_aq()
240 else if (words > I40E_SR_SECTOR_SIZE_IN_WORDS) in i40e_read_nvm_aq()
[all …]
/linux/drivers/net/ethernet/oki-semi/pch_gbe/
H A Dpch_gbe.h141 #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 …]
/linux/scripts/
H A Ddecode_stacktrace.sh278 local words spaces
280 # Tokenize: words and spaces to preserve the alignment
281 read -ra words <<<"$1"
289 local last=$(( ${#words[@]} - 1 ))
291 for i in "${!words[@]}"; do
293 if [[ ${words[$i]} =~ \[\<([^]]+)\>\] ]]; then
294 unset words[$i] spaces[$i]
304 if [[ ${words[$last]} =~ \([A-Z]*\) ]]; then
305 info_str=${words[$last]}
306 unset words[
[all...]
/linux/include/linux/
H A Dswab.h24 static inline void swab16_array(u16 *buf, unsigned int words) in swab16_array() argument
26 while (words--) { in swab16_array()
32 static inline void swab32_array(u32 *buf, unsigned int words) in swab32_array() argument
34 while (words--) { in swab32_array()
40 static inline void swab64_array(u64 *buf, unsigned int words) in swab64_array() argument
42 while (words--) { in swab64_array()
H A Dcb710.h161 * @count: number of 32-bit words to transfer
164 * Reads @count 32-bit words from register @port and stores it in
183 * @count: number of 32-bit words to transfer
186 * Writes @count 32-bit words to register @port from buffer iterated
187 * through @miter. If buffer ends before @count words are written
/linux/include/linux/byteorder/
H A Dgeneric.h160 static inline void le32_to_cpu_array(u32 *buf, unsigned int words) in le32_to_cpu_array() argument
162 while (words--) { in le32_to_cpu_array()
168 static inline void cpu_to_le32_array(u32 *buf, unsigned int words) in cpu_to_le32_array() argument
170 while (words--) { in cpu_to_le32_array()
176 static inline void le64_to_cpu_array(u64 *buf, unsigned int words) in le64_to_cpu_array() argument
178 while (words--) { in le64_to_cpu_array()
184 static inline void cpu_to_le64_array(u64 *buf, unsigned int words) in cpu_to_le64_array() argument
186 while (words--) { in cpu_to_le64_array()
192 static inline void memcpy_from_le32(u32 *dst, const __le32 *src, size_t words) in memcpy_from_le32() argument
196 for (i = 0; i < words; i++) in memcpy_from_le32()
[all …]
/linux/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/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 * 4 : 0))
/linux/drivers/gpu/host1x/
H A Djob.c114 unsigned int words, unsigned int offset) in host1x_job_add_gather() argument
118 gather->words = words; in host1x_job_add_gather()
348 u32 words; member
394 if (fw->words == 0) in check_mask()
402 fw->words--; in check_mask()
419 if (fw->words == 0) in check_incr()
427 fw->words--; in check_incr()
441 if (fw->words == 0) in check_nonincr()
448 fw->words--; in check_nonincr()
463 fw->words = g->words; in validate()
[all …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/steering/sws/
H A Ddr_ste_v3.c12 /* The hardware expects here size in words (2 byte) */ in dr_ste_v3_set_encap()
25 /* The hardware expects here offset to vlan header in words (2 byte) */ in dr_ste_v3_set_push_vlan()
39 /* The hardware expects here size in words (2 byte) */ in dr_ste_v3_set_pop_vlan()
61 /* The hardware expects here size in words (2 byte) */ in dr_ste_v3_set_encap_l3()
91 /* The hardware expects here size and offset in words (2 byte) */ in dr_ste_v3_set_insert_hdr()
113 /* The hardware expects here size and offset in words (2 byte) */ in dr_ste_v3_set_remove_hdr()
165 /* The hardware expects here offset to words (2 bytes) */ in dr_ste_v3_set_action_decap_l3_list()
180 /* The hardware expects here size in words (2 bytes) */ in dr_ste_v3_set_action_decap_l3_list()
/linux/Documentation/devicetree/bindings/misc/
H A Dxlnx,sd-fec.yaml83 xlnx,sdfec-din-words:
99 xlnx,sdfec-dout-words:
115 - xlnx,sdfec-din-words
117 - xlnx,sdfec-dout-words
136 xlnx,sdfec-din-words = <0>;
138 xlnx,sdfec-dout-words = <0>;
/linux/drivers/net/ethernet/sfc/
H A Defx_devlink.c243 const __le16 *words; in efx_devlink_info_running_v2() member
315 ver.words = (__le16 *)MCDI_PTR(outbuf, GET_VERSION_V2_OUT_VERSION); in efx_devlink_info_running_v2()
317 le16_to_cpu(ver.words[0]), le16_to_cpu(ver.words[1]), in efx_devlink_info_running_v2()
318 le16_to_cpu(ver.words[2]), le16_to_cpu(ver.words[3])); in efx_devlink_info_running_v2()
360 const __le16 *words; in efx_devlink_info_running_v3() member
398 const __le16 *words; in efx_devlink_info_running_v4() member
481 const __le16 *words; in efx_devlink_info_running_v5() member
522 const __le16 *words; in efx_devlink_info_running_versions() member
539 ver.words = (__le16 *)MCDI_PTR(outbuf, in efx_devlink_info_running_versions()
542 le16_to_cpu(ver.words[0]), in efx_devlink_info_running_versions()
[all …]
/linux/Documentation/usb/
H A Dusbmon.rst121 of whitespace separated words. The number or position of words may depend
122 on the event type, but there is a set of words, common for all types.
124 Here is the list of words, from left to right:
170 - Setup packet, if present, consists of 5 words: one of each for bmRequestType,
172 These words are safe to decode if Setup Tag was 's'. Otherwise, the setup
186 The data words are present only if this tag is '='.
188 - Data words follow, in big endian hexadecimal format. Notice that they are
189 not machine words, but really just a byte stream split into words to make
195 Length counts only the bytes that were received whereas the Data words
358 fetch.offvec = vec; // Has N 32-bit words
/linux/drivers/iio/chemical/
H A Dsgp30.c198 * sgp_verify_buffer() - verify the checksums of the data buffer words
202 * @word_count: Num data words stored in the buffer, excluding CRC bytes
232 * @word_count: Num words to read, excluding CRC bytes
342 struct sgp_crc_word *words; in sgp_read_raw() local
352 words = data->iaq_buffer.raw_words; in sgp_read_raw()
357 *val2 = be16_to_cpu(words[1].value); in sgp_read_raw()
362 *val2 = be16_to_cpu(words[0].value); in sgp_read_raw()
378 words = data->iaq_buffer.raw_words; in sgp_read_raw()
383 words = data->buffer.raw_words; in sgp_read_raw()
392 *val = be16_to_cpu(words[1].value); in sgp_read_raw()
[all …]
/linux/drivers/bcma/
H A 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/drivers/net/ethernet/chelsio/cxgb4/
H A Dt4_hw.h63 CIMLA_SIZE = 2048, /* # of 32-bit words in CIM LA */
64 CIM_PIFLA_SIZE = 64, /* # of 192-bit words in CIM PIF LA */
65 CIM_MALA_SIZE = 64, /* # of 160-bit words in CIM MA LA */
66 CIM_IBQ_SIZE = 128, /* # of 128-bit words in a CIM IBQ */
67 CIM_OBQ_SIZE = 128, /* # of 128-bit words in a CIM OBQ */
68 TPLA_SIZE = 128, /* # of 64-bit words in TP LA */
69 ULPRX_LA_SIZE = 512, /* # of 256-bit words in ULP_RX LA */
/linux/tools/perf/pmu-events/arch/x86/ivytown/
H A Duncore-power.json151 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
160 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
169 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
178 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
187 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
196 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
205 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
214 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
223 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
232 …ut the delayed C state algorithm rejected the deep sleep state. In other words, a wake event occu…
[all …]
/linux/drivers/gpu/drm/v3d/
H A Dv3d_perfmon.c91 {"PTB", "PTB-memory-words-writes", "[PTB] Total memory words written"},
92 {"TLB", "TLB-memory-words-writes", "[TLB] Total memory words written"},
93 {"PSE", "PSE-memory-words-reads", "[PSE] Total memory words read"},
94 {"TLB", "TLB-memory-words-reads", "[TLB] Total memory words read"},
171 {"PTB", "PTB-memory-words-writes", "[PTB] Total memory words written"},
172 {"TLB", "TLB-memory-words-writes", "[TLB] Total memory words written"},
173 {"PSE", "PSE-memory-words-reads", "[PSE] Total memory words read"},
174 {"TLB", "TLB-memory-words-reads", "[TLB] Total memory words read"},
/linux/drivers/misc/eeprom/
H A Deeprom_93cx6.c208 * eeprom_93cx6_multiread - Read multiple words from eeprom
212 * @words: Number of words that should be read.
214 * This function will read all requested words from the eeprom,
218 * endian words.
221 __le16 *data, const u16 words) in eeprom_93cx6_multiread() argument
226 for (i = 0; i < words; i++) { in eeprom_93cx6_multiread()
/linux/tools/testing/selftests/bpf/progs/
H A Dverifier_bits_iter.c136 __description("fewer words")
150 __description("zero words")
164 __description("huge words")
178 __description("max words")
199 __description("bad words")
/linux/arch/mips/include/asm/octeon/
H A Dcvmx-cmd-queue.h117 * fail if the number of queued command words reaches the maximum
132 /* Maximum outstanding command words */
139 /* FPA buffer size in 64bit words minus 1 */
186 * Return the number of command words pending in the queue. This
312 * Write an arbitrary number of command words to a command queue.
321 * @cmd_count: Number of command words to write
382 * Figure out how many command words will fit in this in cvmx_cmd_queue_write()
411 * Simple function to write two command words to a command
465 * Figure out how many command words will fit in this in cvmx_cmd_queue_write2()
510 * Simple function to write three command words to a command
[all …]
/linux/drivers/media/usb/pvrusb2/
H A Dpvrusb2-encoder.c37 Format: First byte must be 0x01. Remaining 32 bit words are in pvr2_encoder_write_words()
41 endian). Repeat request for additional words, with offset in pvr2_encoder_write_words()
83 back block of 32 bit words). Next 6 bytes must be zero, in pvr2_encoder_read_words()
85 be read. Returned data is packed set of 32 bits words that in pvr2_encoder_read_words()
146 The encoder seems to speak entirely using blocks 32 bit words. in pvr2_encoder_cmd()
154 case when it is zero). All successive words are the argument in pvr2_encoder_cmd()
155 words for the command. in pvr2_encoder_cmd()
157 First, write out the entire set of words, with the first word in pvr2_encoder_cmd()
164 Next, read back the return count words. Check the first word, in pvr2_encoder_cmd()
/linux/drivers/crypto/caam/
H A Ddesc_constr.h31 * deco buffer which is 64 words long (each 32-bit).
36 * Shdesc ptr (1 or 2 words)
38 * Out ptr (1 or 2 words)
41 * In ptr (1 or 2 words)
47 * Apart from shdesc contents, the total number of words that
48 * get loaded in deco buffer are '8' or '11'. The remaining words
580 int words; in append_proto_dkp() local
588 words = (ALIGN(adata->keylen_pad, CAAM_CMD_SZ) - in append_proto_dkp()
596 words = (ALIGN(adata->keylen_pad, CAAM_CMD_SZ) - in append_proto_dkp()
602 if (words) in append_proto_dkp()
[all …]

12345678910>>...46