Home
last modified time | relevance | path

Searched refs:word (Results 151 – 175 of 1260) sorted by relevance

12345678910>>...51

/openbmc/linux/fs/jfs/
H A Djfs_dmap.c535 word += 1; in dbUpdatePMap()
554 word += nwords; in dbUpdatePMap()
1146 word += 1; in dbAllocNext()
1175 word += nw; in dbAllocNext()
1236 for (; word < lword; word++) { in dbAllocNear()
2199 word += 1; in dbAllocBits()
2241 word += nw; in dbAllocBits()
2348 word += 1; in dbFreeBits()
2384 word += nw; in dbFreeBits()
3029 word = ~word; in dbFindBits()
[all …]
/openbmc/linux/arch/arm/boot/compressed/
H A Dhead.S995 .word 0xff00f000
1004 .word 0xfff8fe00
1013 .word 0xffffff00
1020 .word 0xff00ff00
1026 .word 0xff00ff00
1032 .word 0xff0ffff0
1038 .word 0x0000f000
1049 .word 0xffffffe0
1055 .word 0xfffffff0
1060 .word 0x56056900
[all …]
/openbmc/linux/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00queue.h638 static inline __le32 _rt2x00_desc_read(__le32 *desc, const u8 word) in _rt2x00_desc_read() argument
640 return desc[word]; in _rt2x00_desc_read()
649 static inline u32 rt2x00_desc_read(__le32 *desc, const u8 word) in rt2x00_desc_read() argument
651 return le32_to_cpu(_rt2x00_desc_read(desc, word)); in rt2x00_desc_read()
661 static inline void _rt2x00_desc_write(__le32 *desc, const u8 word, __le32 value) in _rt2x00_desc_write() argument
663 desc[word] = value; in _rt2x00_desc_write()
672 static inline void rt2x00_desc_write(__le32 *desc, const u8 word, u32 value) in rt2x00_desc_write() argument
674 _rt2x00_desc_write(desc, word, cpu_to_le32(value)); in rt2x00_desc_write()
/openbmc/linux/include/asm-generic/bitops/
H A Dbuiltin-__fls.h11 static __always_inline unsigned long __fls(unsigned long word) in __fls() argument
13 return (sizeof(word) * 8) - 1 - __builtin_clzl(word); in __fls()
/openbmc/linux/drivers/media/tuners/
H A Dqm1d1b0004.c108 u16 word; in qm1d1b0004_set_params() local
118 word = DIV_ROUND_CLOSEST(frequency, pll); in qm1d1b0004_set_params()
121 word = (word << 1 & ~0x1f) | (word & 0x0f); in qm1d1b0004_set_params()
124 buf[0] = 0x40 | word >> 8; in qm1d1b0004_set_params()
125 buf[1] = word; in qm1d1b0004_set_params()
/openbmc/linux/lib/
H A Dsbitmap.c167 nr = find_next_zero_bit(word, depth, hint); in __sbitmap_get_word()
181 if (!test_and_set_bit_lock(nr, word)) in __sbitmap_get_word()
200 nr = __sbitmap_get_word(&map->word, depth, in sbitmap_find_bit_in_word()
312 if (sb->map[i].word & ~sb->map[i].cleared) in sbitmap_any_bit_set()
324 const struct sbitmap_word *word = &sb->map[i]; in __sbitmap_weight() local
328 weight += bitmap_weight(&word->word, word_depth); in __sbitmap_weight()
376 unsigned long word = READ_ONCE(sb->map[i].word); in sbitmap_bitmap_show() local
380 word &= ~cleared; in sbitmap_bitmap_show()
385 byte |= (word & (BIT(bits) - 1)) << byte_bits; in sbitmap_bitmap_show()
393 word >>= bits; in sbitmap_bitmap_show()
[all …]
/openbmc/linux/tools/bootconfig/samples/
H A Dgood-override.bconf2 key.word = 1,2,4
3 key.word := 2,3
6 key.new.word := "new"
/openbmc/u-boot/arch/arm/mach-aspeed/ast2500/
H A Dplatform.S176 .word 0x53503C37 @ 0x010
177 .word 0xF858D47F @ 0x014
178 .word 0x00010000 @ 0x018
191 .word 0x7F5E3A27 @ tRFC
192 .word 0x00005B80 @ PLL
209 .word 0x9971452F @ tRFC
210 .word 0x000071C1 @ PLL
228 .word 0x7F5E3A3A @ tRFC
229 .word 0x00005B80 @ PLL
250 .word 0x99714545 @ tRFC
[all …]
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/
H A Dboot0.h15 .word 0x1337c0d3; /* SoCFPGA preloader validation word */
16 .word 0xc01df00d; /* Version, flags, length */
17 .word 0xcafec0d3; /* Checksum, zero-pad */
/openbmc/u-boot/doc/
H A DREADME.fuse13 A fuse word is the smallest group of fuses that can be read at once from the
27 int fuse_read(u32 bank, u32 word, u32 *val);
28 fuse read <bank> <word> [<cnt>]
31 int fuse_sense(u32 bank, u32 word, u32 *val);
32 fuse sense <bank> <word> [<cnt>]
39 int fuse_prog(u32 bank, u32 word, u32 val);
40 fuse prog [-y] <bank> <word> <hexval> [<hexval>...]
51 int fuse_override(u32 bank, u32 word, u32 val);
52 fuse override <bank> <word> <hexval> [<hexval>...]
/openbmc/openbmc/poky/meta/recipes-devtools/apt/apt/
H A Dtriehash410 my ($self, $word) = @_;
412 $word =~ s/_/__/g;
413 $word =~ s/-/_/g;
415 return $self->mangle_label($word);
590 my $word = shift;
592 foreach my $char (split //, $word) {
611 my ($label, $word, $value) = $line =~ m{
618 if (defined $word) {
623 $lengths{length($word)} = 1;
657 my ($self, $word) = @_;
[all …]
/openbmc/qemu/tests/tcg/xtensa/
H A Dtest_load_store.S174 load_ok_test l32i, .word, 0x12345678, 0x12345678
176 load_ok_test l32ai, .word, 0x12345678, 0x12345678
192 load_unaligned_test WILL_TRAP, l32i, .word, 0x12345678, 0x12345678
194 load_unaligned_test 1, l32ai, .word, 0x12345678, 0x12345678
200 store_ok_test s32i, .word, 0x12345678
202 store_ok_test s32ri, .word, 0x12345678
215 store_unaligned_test WILL_TRAP, s32i, l32i, .word, 0x12345678
217 store_unaligned_test 1, s32ri, l32i, .word, 0x12345678
/openbmc/linux/arch/mips/kernel/
H A Dkprobes.c212 if (p->ainsn.insn->word == 0) in evaluate_branch_instruction()
243 if (p->opcode.word == breakpoint_insn.word || in prepare_singlestep()
244 p->opcode.word == breakpoint2_insn.word) in prepare_singlestep()
300 p->ainsn.insn->word == breakpoint_insn.word) { in kprobe_handler()
323 } else if (addr->word != breakpoint_insn.word) { in kprobe_handler()
336 if (addr->word != breakpoint_insn.word) { in kprobe_handler()
/openbmc/qemu/hw/intc/
H A Driscv_aplic.c194 irq = word * 32 + i; in riscv_aplic_read_input_word()
209 irq = word * 32 + i; in riscv_aplic_read_pending_word()
274 irq = word * 32 + i; in riscv_aplic_set_pending_word()
291 irq = word * 32 + i; in riscv_aplic_read_enabled_word()
341 irq = word * 32 + i; in riscv_aplic_set_enabled_word()
590 uint32_t irq, word, idc; in riscv_aplic_read() local
628 word = (addr - APLIC_SETIP_BASE) >> 2; in riscv_aplic_read()
634 word = (addr - APLIC_CLRIP_BASE) >> 2; in riscv_aplic_read()
640 word = (addr - APLIC_SETIE_BASE) >> 2; in riscv_aplic_read()
689 uint32_t irq, word, idc = UINT32_MAX; in riscv_aplic_write() local
[all …]
/openbmc/linux/arch/arc/include/asm/
H A Dbitops.h102 static inline __attribute__ ((const)) unsigned long __ffs(unsigned long word) in __ffs() argument
104 if (!word) in __ffs()
105 return word; in __ffs()
107 return ffs(word) - 1; in __ffs()
/openbmc/u-boot/board/renesas/sh7785lcr/
H A Dlowlevel_init.S168 PXCR_D: .word 0x0000
170 PHCR_D: .word 0x00c0
171 PJCR_D: .word 0xc3fc
172 PKCR_D: .word 0x03ff
173 PMCR_D: .word 0xffff
174 PNCR_D: .word 0xf0c3
183 PPUPR1_D: .word 0xffbf
184 PPUPR2_D: .word 0xff00
185 P1MSELR_D: .word 0x3780
186 P2MSELR_D: .word 0x0000
/openbmc/qemu/include/hw/ppc/
H A Dxive_regs.h185 static inline uint64_t xive_get_field64(uint64_t mask, uint64_t word) in xive_get_field64() argument
187 return (be64_to_cpu(word) & mask) >> ctz64(mask); in xive_get_field64()
190 static inline uint64_t xive_set_field64(uint64_t mask, uint64_t word, in xive_set_field64() argument
194 (be64_to_cpu(word) & ~mask) | ((value << ctz64(mask)) & mask); in xive_set_field64()
198 static inline uint32_t xive_get_field32(uint32_t mask, uint32_t word) in xive_get_field32() argument
200 return (be32_to_cpu(word) & mask) >> ctz32(mask); in xive_get_field32()
203 static inline uint32_t xive_set_field32(uint32_t mask, uint32_t word, in xive_set_field32() argument
207 (be32_to_cpu(word) & ~mask) | ((value << ctz32(mask)) & mask); in xive_set_field32()
/openbmc/linux/drivers/net/wireless/ath/ath9k/
H A Drng.c72 u32 fail_stats = 0, word; in ath9k_rng_read() local
78 if ((max & 3UL) && ath9k_rng_data_read(sc, &word, 1)) { in ath9k_rng_read()
79 memcpy(buf + bytes_read, &word, max & 3UL); in ath9k_rng_read()
81 memzero_explicit(&word, sizeof(word)); in ath9k_rng_read()
/openbmc/linux/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_hw.c442 u64 word; in qlcnic_82xx_sre_macaddr_change() local
599 u64 word; in qlcnic_82xx_nic_set_promisc() local
820 u64 word; in qlcnic_82xx_config_hw_lro() local
833 word = 0; in qlcnic_82xx_config_hw_lro()
835 word = QLCNIC_ENABLE_IPV4_LRO; in qlcnic_82xx_config_hw_lro()
854 u64 word; in qlcnic_config_bridged_mode() local
889 u64 word; in qlcnic_82xx_config_rss() local
940 u64 word; in qlcnic_82xx_config_ipaddr() local
963 u64 word; in qlcnic_82xx_linkevent_request() local
982 u64 word; in qlcnic_send_lro_cleanup() local
[all …]
/openbmc/linux/arch/sparc/lib/
H A Dhweight.S14 .word __arch_hweight8
27 .word __arch_hweight16
40 .word __arch_hweight32
53 .word __arch_hweight64
/openbmc/linux/drivers/spi/
H A Dspi-st-ssc4.c72 uint32_t word = 0; in ssc_write_tx_fifo() local
82 word = *spi_st->tx_ptr++; in ssc_write_tx_fifo()
84 word = *spi_st->tx_ptr++; in ssc_write_tx_fifo()
85 word = *spi_st->tx_ptr++ | (word << 8); in ssc_write_tx_fifo()
88 writel_relaxed(word, spi_st->base + SSC_TBUF); in ssc_write_tx_fifo()
96 uint32_t word = 0; in ssc_read_rx_fifo() local
104 word = readl_relaxed(spi_st->base + SSC_RBUF); in ssc_read_rx_fifo()
108 *spi_st->rx_ptr++ = (uint8_t)word; in ssc_read_rx_fifo()
110 *spi_st->rx_ptr++ = (word >> 8); in ssc_read_rx_fifo()
111 *spi_st->rx_ptr++ = word & 0xff; in ssc_read_rx_fifo()
/openbmc/u-boot/arch/arm/cpu/sa1100/
H A Dstart.S68 IC_BASE: .word 0x90050000
73 RST_BASE: .word 0x90030000
79 PWR_BASE: .word 0x90020000
82 cpuspeed: .word CONFIG_SYS_CPUSPEED
/openbmc/linux/arch/arm/include/debug/
H A Domap2plus.S22 omap_uart_phys: .word 0
23 omap_uart_virt: .word 0
24 omap_uart_lsr: .word 0
53 99: .word .
54 .word omap_uart_phys
/openbmc/linux/arch/arm/lib/
H A Dbitops.h10 strbne r1, [ip] @ assert word-aligned
14 add r1, r1, r0, lsl #2 @ Get word offset
35 strbne r1, [ip] @ assert word-aligned
39 add r1, r1, r0, lsl #2 @ Get word offset
73 strbne r1, [ip] @ assert word-aligned
100 strbne r1, [ip] @ assert word-aligned
/openbmc/linux/drivers/nvmem/
H A Dsunxi_sid.c43 u32 word; in sunxi_sid_read() local
56 word = readl_relaxed(sid->base + sid->value_offset + offset); in sunxi_sid_read()
57 memcpy(val, &word, bytes); in sunxi_sid_read()
97 u32 word; in sun8i_sid_read_by_reg() local
115 ret = sun8i_sid_register_readout(sid, offset, &word); in sun8i_sid_read_by_reg()
119 memcpy(val, &word, bytes); in sun8i_sid_read_by_reg()

12345678910>>...51