Home
last modified time | relevance | path

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

123456

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_sha1.c161 uint32_t words[80]; in ngx_sha1_body() local
183 words[i] = GET(i); in ngx_sha1_body()
187 words[i] = ROTATE(1, words[i - 3] ^ words[i - 8] ^ words[i - 14] in ngx_sha1_body()
188 ^ words[i - 16]); in ngx_sha1_body()
193 STEP(F1, a, b, c, d, e, words[0], 0x5a827999); in ngx_sha1_body()
194 STEP(F1, a, b, c, d, e, words[1], 0x5a827999); in ngx_sha1_body()
195 STEP(F1, a, b, c, d, e, words[2], 0x5a827999); in ngx_sha1_body()
196 STEP(F1, a, b, c, d, e, words[3], 0x5a827999); in ngx_sha1_body()
197 STEP(F1, a, b, c, d, e, words[4], 0x5a827999); in ngx_sha1_body()
198 STEP(F1, a, b, c, d, e, words[5], 0x5a827999); in ngx_sha1_body()
[all …]
/f-stack/dpdk/drivers/net/bnxt/tf_core/
H A Dbitalloc.c94 while (words[lev] > 1) { in ba_init()
96 words[lev] = (words[lev - 1] + 31) / 32; in ba_init()
100 offset += words[lev]; in ba_init()
114 int words, in ba_alloc_helper() argument
131 storage[words], in ba_alloc_helper()
187 int words, in ba_alloc_reverse_helper() argument
204 storage[words], in ba_alloc_reverse_helper()
245 storage[words], in ba_alloc_index_helper()
300 storage[words], in ba_inuse_helper()
338 storage[words], in ba_free_helper()
[all …]
/f-stack/app/redis-5.0.5/src/
H A Dmemtest.c94 unsigned long words = bytes/sizeof(unsigned long); in memtest_addressing() local
99 for (j = 0; j < words; j++) { in memtest_addressing()
103 memtest_progress_step(j,words*2,'A'); in memtest_addressing()
107 for (j = 0; j < words; j++) { in memtest_addressing()
118 memtest_progress_step(j+words,words*2,'A'); in memtest_addressing()
140 unsigned long words = bytes/sizeof(unsigned long)/2; in memtest_fill_random() local
149 l2 = l1+words; in memtest_fill_random()
174 l2 = l1+words; in memtest_fill_value()
200 l2 = l1+words; in memtest_compare()
201 for (w = 0; w < words; w++) { in memtest_compare()
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/net/can/
H A Dbosch,m_can.yaml69 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
92 - description: Rx FIFO 0 0-64 elements / 0-1152 words
95 - description: Rx FIFO 1 0-64 elements / 0-1152 words
98 - description: Rx Buffers 0-64 elements / 0-1152 words
[all …]
/f-stack/freebsd/libkern/
H A Dinet_ntop.c106 u_int words[NS_IN6ADDRSZ / NS_INT16SZ]; in inet_ntop6() local
114 memset(words, '\0', sizeof words); in inet_ntop6()
116 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3)); in inet_ntop6()
122 if (words[i] == 0) { in inet_ntop6()
159 (best.len == 7 && words[7] != 0x0001) || in inet_ntop6()
160 (best.len == 5 && words[5] == 0xffff))) { in inet_ntop6()
166 tp += sprintf(tp, "%x", words[i]); in inet_ntop6()
/f-stack/dpdk/drivers/net/ionic/
H A Dionic_main.c264 uint32_t drv_size = sizeof(ident->drv.words) / in ionic_identify()
265 sizeof(ident->drv.words[0]); in ionic_identify()
268 uint32_t dev_size = sizeof(ident->dev.words) / in ionic_identify()
269 sizeof(ident->dev.words[0]); in ionic_identify()
285 iowrite32(ident->drv.words[i], &idev->dev_cmd->data[i]); in ionic_identify()
292 ident->dev.words[i] = ioread32(&idev->dev_cmd->data[i]); in ionic_identify()
325 unsigned int port_words = sizeof(ident->port.words) / in ionic_port_identify()
326 sizeof(ident->port.words[0]); in ionic_port_identify()
338 ident->port.words[i] = in ionic_port_identify()
374 unsigned int config_words = sizeof(ident->port.config.words) / in ionic_port_init()
[all …]
H A Dionic_dev.c92 uint32_t comp_size = sizeof(comp->words) / in ionic_dev_cmd_comp()
93 sizeof(comp->words[0]); in ionic_dev_cmd_comp()
96 comp->words[i] = ioread32(&idev->dev_cmd->comp.words[i]); in ionic_dev_cmd_comp()
103 uint32_t cmd_size = sizeof(cmd->words) / in ionic_dev_cmd_go()
104 sizeof(cmd->words[0]); in ionic_dev_cmd_go()
107 iowrite32(cmd->words[i], &idev->dev_cmd->cmd.words[i]); in ionic_dev_cmd_go()
/f-stack/freebsd/contrib/ck/include/
H A Dck_bitmap.h317 unsigned int i, words, slop; in ck_bitmap_empty() local
322 words = limit / CK_BITMAP_BLOCK; in ck_bitmap_empty()
324 for (i = 0; i < words; i++) { in ck_bitmap_empty()
348 unsigned int i, slop, words; in ck_bitmap_full() local
354 words = limit / CK_BITMAP_BLOCK; in ck_bitmap_full()
356 for (i = 0; i < words; i++) { in ck_bitmap_full()
379 unsigned int count, i, slop, words; in ck_bitmap_count() local
384 words = limit / CK_BITMAP_BLOCK; in ck_bitmap_count()
386 for (i = 0, count = 0; i < words; i++) in ck_bitmap_count()
407 unsigned int count, i, slop, words; in ck_bitmap_count_intersect() local
[all …]
/f-stack/dpdk/drivers/net/i40e/base/
H A Di40e_nvm.c264 offset, words); in i40e_read_nvm_aq()
268 2 * words, /*bytes*/ in i40e_read_nvm_aq()
425 u16 *words, u16 *data) in i40e_read_nvm_buffer_srctl() argument
441 *words = word; in i40e_read_nvm_buffer_srctl()
461 u16 read_size = *words; in i40e_read_nvm_buffer_aq()
474 read_size = min(*words, in i40e_read_nvm_buffer_aq()
495 } while (words_read < *words); in i40e_read_nvm_buffer_aq()
497 for (i = 0; i < *words; i++) in i40e_read_nvm_buffer_aq()
501 *words = words_read; in i40e_read_nvm_buffer_aq()
537 u16 *words, u16 *data) in i40e_read_nvm_buffer() argument
[all …]
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-dma-engine.c524 int words = 0; in cvmx_dma_engine_transfer() local
530 words += header.s.nfst; in cvmx_dma_engine_transfer()
531 … header.s.nlst = __cvmx_dma_engine_build_internal_pointers(buffers + words, last_address, size); in cvmx_dma_engine_transfer()
532 words += header.s.nlst; in cvmx_dma_engine_transfer()
537 words += header.s.nfst; in cvmx_dma_engine_transfer()
538 … header.s.nlst = __cvmx_dma_engine_build_external_pointers(buffers + words, last_address, size); in cvmx_dma_engine_transfer()
539 words += header.s.nlst + ((header.s.nlst-1) >> 2) + 1; in cvmx_dma_engine_transfer()
543 words += header.s.nfst + ((header.s.nfst-1) >> 2) + 1; in cvmx_dma_engine_transfer()
544 … header.s.nlst = __cvmx_dma_engine_build_external_pointers(buffers + words, last_address, size); in cvmx_dma_engine_transfer()
545 words += header.s.nlst + ((header.s.nlst-1) >> 2) + 1; in cvmx_dma_engine_transfer()
[all …]
H A Dcvmx-raid.c138 int cvmx_raid_submit(int num_words, cvmx_raid_word_t words[]) in cvmx_raid_submit() argument
140 …queue_result_t result = cvmx_cmd_queue_write(CVMX_CMD_QUEUE_RAID, 1, num_words, (uint64_t *)words); in cvmx_raid_submit()
/f-stack/dpdk/drivers/net/e1000/base/
H A De1000_nvm.h50 s32 e1000_read_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
52 u16 words, u16 *data);
53 s32 e1000_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words,
58 u16 words, u16 *data);
59 s32 e1000_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words,
H A De1000_nvm.c435 (words == 0)) { in e1000_read_nvm_spi()
461 for (i = 0; i < words; i++) { in e1000_read_nvm_spi()
495 (words == 0)) { in e1000_read_nvm_microwire()
508 for (i = 0; i < words; i++) { in e1000_read_nvm_microwire()
548 (words == 0)) { in e1000_read_nvm_eerd()
553 for (i = 0; i < words; i++) { in e1000_read_nvm_eerd()
596 (words == 0)) { in e1000_write_nvm_spi()
601 while (widx < words) { in e1000_write_nvm_spi()
634 while (widx < words) { in e1000_write_nvm_spi()
679 (words == 0)) { in e1000_write_nvm_microwire()
[all …]
H A De1000_i210.c11 STATIC s32 e1000_write_nvm_srwr(struct e1000_hw *hw, u16 offset, u16 words,
216 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) { in e1000_read_nvm_srrd_i210()
217 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ? in e1000_read_nvm_srrd_i210()
218 E1000_EERD_EEWR_MAX_COUNT : (words - i); in e1000_read_nvm_srrd_i210()
261 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) { in e1000_write_nvm_srwr_i210()
262 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ? in e1000_write_nvm_srwr_i210()
263 E1000_EERD_EEWR_MAX_COUNT : (words - i); in e1000_write_nvm_srwr_i210()
306 (words == 0)) { in e1000_write_nvm_srwr()
312 for (i = 0; i < words; i++) { in e1000_write_nvm_srwr()
389 u16 E1000_UNUSEDARG words, u16 *data) in e1000_read_invm_i210() argument
[all …]
/f-stack/dpdk/drivers/net/igc/base/
H A Digc_nvm.h50 s32 igc_read_nvm_spi(struct igc_hw *hw, u16 offset, u16 words, u16 *data);
52 u16 words, u16 *data);
53 s32 igc_read_nvm_eerd(struct igc_hw *hw, u16 offset, u16 words,
58 u16 words, u16 *data);
59 s32 igc_write_nvm_spi(struct igc_hw *hw, u16 offset, u16 words,
H A Digc_nvm.c433 words == 0) { in igc_read_nvm_spi()
459 for (i = 0; i < words; i++) { in igc_read_nvm_spi()
493 words == 0) { in igc_read_nvm_microwire()
506 for (i = 0; i < words; i++) { in igc_read_nvm_microwire()
546 words == 0) { in igc_read_nvm_eerd()
551 for (i = 0; i < words; i++) { in igc_read_nvm_eerd()
594 words == 0) { in igc_write_nvm_spi()
599 while (widx < words) { in igc_write_nvm_spi()
632 while (widx < words) { in igc_write_nvm_spi()
677 words == 0) { in igc_write_nvm_microwire()
[all …]
H A Digc_i225.c14 static s32 __igc_write_nvm_srwr(struct igc_hw *hw, u16 offset, u16 words,
461 s32 igc_read_nvm_srrd_i225(struct igc_hw *hw, u16 offset, u16 words, in igc_read_nvm_srrd_i225() argument
473 for (i = 0; i < words; i += IGC_EERD_EEWR_MAX_COUNT) { in igc_read_nvm_srrd_i225()
474 count = (words - i) / IGC_EERD_EEWR_MAX_COUNT > 0 ? in igc_read_nvm_srrd_i225()
475 IGC_EERD_EEWR_MAX_COUNT : (words - i); in igc_read_nvm_srrd_i225()
506 s32 igc_write_nvm_srwr_i225(struct igc_hw *hw, u16 offset, u16 words, in igc_write_nvm_srwr_i225() argument
518 for (i = 0; i < words; i += IGC_EERD_EEWR_MAX_COUNT) { in igc_write_nvm_srwr_i225()
519 count = (words - i) / IGC_EERD_EEWR_MAX_COUNT > 0 ? in igc_write_nvm_srwr_i225()
520 IGC_EERD_EEWR_MAX_COUNT : (words - i); in igc_write_nvm_srwr_i225()
561 words == 0) { in __igc_write_nvm_srwr()
[all …]
/f-stack/tools/libxo/
H A DREADME.md17 xo_emit(" {:lines/%7ju/%ju} {:words/%7ju/%ju} "
33 <words>165</words>
44 "words": 165,
55 <div class="data" data-tag="words"> 165</div>
/f-stack/dpdk/examples/ethtool/lib/
H A Drte_ethtool.c145 void *words) in rte_ethtool_get_eeprom() argument
150 if (eeprom == NULL || words == NULL) in rte_ethtool_get_eeprom()
155 eeprom_info.data = words; in rte_ethtool_get_eeprom()
168 void *words) in rte_ethtool_set_eeprom() argument
173 if (eeprom == NULL || words == NULL || eeprom->offset >= eeprom->len) in rte_ethtool_set_eeprom()
178 eeprom_info.data = words; in rte_ethtool_set_eeprom()
200 void *words) in rte_ethtool_get_module_eeprom() argument
205 if (eeprom == NULL || words == NULL) in rte_ethtool_get_module_eeprom()
210 eeprom_info.data = words; in rte_ethtool_get_module_eeprom()
H A Drte_ethtool.h134 void *words);
154 void *words);
188 struct ethtool_eeprom *eeprom, void *words);
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dspace_map.c234 uint64_t entry = words[i]; in space_map_reversed_last_block_entries()
247 entry = words[i]; in space_map_reversed_last_block_entries()
330 int words = 1; in space_map_incremental_destroy() local
340 words = 2; in space_map_incremental_destroy()
553 ASSERT3U(words, !=, 0); in space_map_write_seg()
554 ASSERT3U(words, <=, 2); in space_map_write_seg()
618 ASSERT3U(words, ==, 2); in space_map_write_seg()
630 switch (words) { in space_map_write_seg()
652 words); in space_map_write_seg()
708 uint8_t words = 1; in space_map_write_impl() local
[all …]
/f-stack/tools/libxo/doc/
H A Dintro.rst13 xo_emit(" {:lines/%7ju} {:words/%7ju} "
30 <words>165</words>
41 "words": 165,
53 <div class="data" data-tag="words"> 165</div>
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/removal/
H A Dremove_mirror_sanity.ksh50 log_must diff $WORDS_FILE1 $TESTDIR/words
52 log_must diff $WORDS_FILE2 $TESTDIR/words
/f-stack/dpdk/drivers/common/sfc_efx/
H A Dsfc_efx_mcdi.c198 uint32_t *words = data; in sfc_efx_mcdi_do_log() local
200 const size_t word_str_space = 1 + 2 * sizeof(*words); in sfc_efx_mcdi_do_log()
203 for (i = 0; i < data_size; i += sizeof(*words)) { in sfc_efx_mcdi_do_log()
216 " %08x", *words); in sfc_efx_mcdi_do_log()
217 words++; in sfc_efx_mcdi_do_log()
/f-stack/freebsd/contrib/device-tree/Bindings/misc/
H A Dxlnx,sd-fec.txt27 - xlnx,sdfec-din-words : A value 0 indicates that the DIN_WORDS interface is
34 - xlnx,sdfec-dout-words : A value 0 indicates that the DOUT_WORDS interface is
54 xlnx,sdfec-din-words = <0>;
56 xlnx,sdfec-dout-words = <0>;

123456