Home
last modified time | relevance | path

Searched refs:word (Results 276 – 300 of 1248) sorted by relevance

1...<<11121314151617181920>>...50

/openbmc/linux/arch/alpha/lib/
H A Dclear_user.S36 0: EX( stq_u $31, 0($16) ) # e0 : zero one word
78 EX( ldq_u $5, 0($16) ) # e0 : load dst word to mask back in
79 beq $1, $oneword # .. e1 : sub-word store?
/openbmc/linux/arch/riscv/kvm/
H A Daia_aplic.c336 static u32 aplic_read_input_word(struct aplic *aplic, u32 word) in aplic_read_input_word() argument
341 ret |= aplic_read_input(aplic, word * 32 + i) ? BIT(i) : 0; in aplic_read_input_word()
346 static u32 aplic_read_pending_word(struct aplic *aplic, u32 word) in aplic_read_pending_word() argument
351 ret |= aplic_read_pending(aplic, word * 32 + i) ? BIT(i) : 0; in aplic_read_pending_word()
356 static void aplic_write_pending_word(struct aplic *aplic, u32 word, in aplic_write_pending_word() argument
363 aplic_write_pending(aplic, word * 32 + i, pending); in aplic_write_pending_word()
367 static u32 aplic_read_enabled_word(struct aplic *aplic, u32 word) in aplic_read_enabled_word() argument
372 ret |= aplic_read_enabled(aplic, word * 32 + i) ? BIT(i) : 0; in aplic_read_enabled_word()
377 static void aplic_write_enabled_word(struct aplic *aplic, u32 word, in aplic_write_enabled_word() argument
384 aplic_write_enabled(aplic, word * 32 + i, enabled); in aplic_write_enabled_word()
/openbmc/linux/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00debug.h31 const unsigned int word); \
33 const unsigned int word, __type data); \
/openbmc/u-boot/doc/
H A DREADME.vf6109 1.1 MAC Address: It is stored in fuse bank 4, with the 16 msbs in word 2 and the
10 32 lsbs in word 3.
/openbmc/linux/drivers/spi/
H A Dspi-cs42l43.c50 const u8 *word = min(buf + sizeof(u32), block); in cs42l43_spi_tx() local
51 int pad = (buf + sizeof(u32)) - word; in cs42l43_spi_tx()
53 while (buf < word) { in cs42l43_spi_tx()
93 u8 *word = min(buf + sizeof(u32), block); in cs42l43_spi_rx() local
99 while (buf < word) { in cs42l43_spi_rx()
/openbmc/linux/arch/x86/kernel/
H A Dunwind_frame.c35 unsigned long word, *sp; in unwind_dump() local
55 word = READ_ONCE_NOCHECK(*sp); in unwind_dump()
58 zero = word == 0; in unwind_dump()
68 sp, BITS_PER_LONG/4, word, (void *)word); in unwind_dump()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest/
H A Duserfaultfd.patch152 + int32_t word;
171 + word = seed;
178 + long int hi = word / 127773;
179 + long int lo = word % 127773;
180 + word = 16807 * lo - 2836 * hi;
181 + if (word < 0)
182 + word += 2147483647;
183 + *++dst = word;
271 + location into the zeroth word of the state information. Note that due
/openbmc/linux/arch/sparc/include/asm/
H A Dbitops_64.h26 int fls(unsigned int word);
27 int __fls(unsigned long word);
/openbmc/linux/arch/arm64/kernel/
H A Dkuser32.S59 .word 0
63 .word ((__kuser_helper_end - __kuser_helper_start) >> 5)
/openbmc/linux/arch/sparc/lib/
H A DNG4copy_from_user.S11 .word 98b, y; \
19 .word 98b, y##_fp; \
H A DM7copy_from_user.S12 .word 98b, y; \
20 .word 98b, y##_fp; \
H A DNG4copy_to_user.S11 .word 98b, y; \
19 .word 98b, y##_fp; \
H A DM7copy_to_user.S12 .word 98b, y; \
20 .word 98b, y##_fp; \
H A DU1copy_from_user.S11 .word 98b, y; \
19 .word 98b, y; \
H A DU1copy_to_user.S11 .word 98b, y; \
19 .word 98b, y; \
H A DU3copy_to_user.S11 .word 98b, y; \
19 .word 98b, y##_fp; \
H A DNG2copy_from_user.S11 .word 98b, y; \
19 .word 98b, y##_fp; \
H A DNG2copy_to_user.S11 .word 98b, y; \
19 .word 98b, y##_fp; \
/openbmc/u-boot/arch/x86/lib/
H A Dbios_asm.S143 .word 1023 /* 16 bit limit */
145 .word 0
193 .word 0x0000, 0x0000
299 .word 0
/openbmc/linux/Documentation/devicetree/bindings/watchdog/
H A Daspeed-wdt.txt53 single word defined using the AST2500_WDT_RESET_* macros;
54 on AST2600 this should be a two-word array with the first
55 word defined using the AST2600_WDT_RESET1_* macros and the
56 second word defined using the AST2600_WDT_RESET2_* macros.
/openbmc/linux/arch/arm/mach-imx/
H A Dssi-fiq.S135 .word 0x0
138 .word 0x0
141 .word 0x0
/openbmc/u-boot/drivers/gpio/
H A Dpcf8575_gpio.c54 static int pcf8575_i2c_write_le16(struct udevice *dev, unsigned int word) in pcf8575_i2c_write_le16() argument
57 u8 buf[2] = { word & 0xff, word >> 8, }; in pcf8575_i2c_write_le16()
/openbmc/linux/drivers/media/platform/samsung/s5p-jpeg/
H A Djpeg-core.c762 static int get_word_be(struct s5p_jpeg_buffer *buf, unsigned int *word);
770 unsigned int word; in exynos4_jpeg_parse_decode_h_tbl() local
778 if (get_word_be(&jpeg_buffer, &word)) in exynos4_jpeg_parse_decode_h_tbl()
781 if (word < 2) in exynos4_jpeg_parse_decode_h_tbl()
784 jpeg_buffer.size = (long)word - 2; in exynos4_jpeg_parse_decode_h_tbl()
810 unsigned int word; in exynos4_jpeg_parse_huff_tbl() local
819 word = 0; in exynos4_jpeg_parse_huff_tbl()
833 word |= c << ((i % 4) * 8); in exynos4_jpeg_parse_huff_tbl()
835 writel(word, jpeg->regs + in exynos4_jpeg_parse_huff_tbl()
838 word = 0; in exynos4_jpeg_parse_huff_tbl()
[all …]
/openbmc/linux/drivers/i2c/busses/
H A Di2c-pasemi-core.c224 TXFIFO_WR(smbus, data->word & MTXFIFO_DATA_M); in pasemi_smb_xfer()
225 TXFIFO_WR(smbus, MTXFIFO_STOP | (data->word >> 8)); in pasemi_smb_xfer()
251 TXFIFO_WR(smbus, data->word & MTXFIFO_DATA_M); in pasemi_smb_xfer()
252 TXFIFO_WR(smbus, (data->word >> 8) & MTXFIFO_DATA_M); in pasemi_smb_xfer()
301 data->word = rd & MRXFIFO_DATA_M; in pasemi_smb_xfer()
307 data->word |= (rd & MRXFIFO_DATA_M) << 8; in pasemi_smb_xfer()
/openbmc/linux/arch/sparc/kernel/
H A Durtt_fill.S28 .word 661b
49 .word 661b
55 .word 661b

1...<<11121314151617181920>>...50