Home
last modified time | relevance | path

Searched refs:word (Results 376 – 400 of 1248) sorted by relevance

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

/openbmc/u-boot/drivers/misc/
H A Dcros_ec_sandbox.c208 u32 word; in keyscan_read_fdt_matrix() local
210 word = fdt32_to_cpu(*cell++); in keyscan_read_fdt_matrix()
211 matrix->row = word >> 24; in keyscan_read_fdt_matrix()
212 matrix->col = (word >> 16) & 0xff; in keyscan_read_fdt_matrix()
213 matrix->keycode = word & 0xffff; in keyscan_read_fdt_matrix()
/openbmc/linux/drivers/net/ethernet/cadence/
H A Dmacb_ptp.c127 u32 word; in gem_ptp_adjfine() local
140 word = ((u64)incr_spec.ns << GEM_SUBNSINCR_SIZE) + incr_spec.sub_ns; in gem_ptp_adjfine()
141 adj = (u64)scaled_ppm * word; in gem_ptp_adjfine()
148 adj = neg_adj ? (word - adj) : (word + adj); in gem_ptp_adjfine()
/openbmc/phosphor-webui/app/server-health/styles/
H A Dsyslog.scss105 word-wrap: break-word;
204 word-break: break-word;
/openbmc/linux/drivers/i2c/busses/
H A Di2c-powermac.c67 local[0] = data->word & 0xff; in i2c_powermac_smbus_xfer()
68 local[1] = (data->word >> 8) & 0xff; in i2c_powermac_smbus_xfer()
120 data->word = ((u16)local[1]) << 8; in i2c_powermac_smbus_xfer()
121 data->word |= local[0]; in i2c_powermac_smbus_xfer()
H A Di2c-sis96x.c182 sis96x_write(SMB_BYTE, data->word & 0xff); in sis96x_access()
183 sis96x_write(SMB_BYTE + 1, (data->word & 0xff00) >> 8); in sis96x_access()
210 data->word = sis96x_read(SMB_BYTE) + in sis96x_access()
/openbmc/openbmc-test-automation/lib/
H A Dvar_funcs.py369 if any(delim in word for word in sub_list):
386 if any(delim in word for word in sub_list):
/openbmc/u-boot/board/freescale/mpc8536ds/
H A DREADME54 The memory device should contain a specific data structure with control word
55 and config word at the fixed address. The config word direct the process how
56 to config the memory device, and the control word direct the processor where
/openbmc/u-boot/drivers/mtd/
H A Dpic32_flash.c182 static int write_word(flash_info_t *info, ulong dest, ulong word) in write_word() argument
188 if ((readl((void __iomem *)dest) & word) != word) { in write_word()
198 writel(word, &nvm_regs_p->data.raw); in write_word()
/openbmc/linux/arch/riscv/include/asm/
H A Dasm.h27 #define REG_ASM __REG_SEL(.dword, .word)
43 #define RISCV_PTR .word
56 #define RISCV_INT __ASM_STR(.word)
/openbmc/linux/arch/arm/mach-davinci/
H A Dsleep.S209 .word v6_flush_kern_cache_all
211 .word arm926_flush_kern_cache_all
215 .word . - davinci_cpu_suspend
/openbmc/linux/arch/arm/mach-omap2/
H A Dsleep24xx.S88 .word A_SDRC0_V
91 .word . - omap24xx_cpu_suspend
/openbmc/linux/arch/sparc/lib/
H A Dffs.S74 .word ffs
81 .word __ffs
/openbmc/openbmc/poky/meta/recipes-support/aspell/
H A Daspell_0.60.8.1.bb6 replacements for a misspelled word than just about any other spell \
28 FILES:aspell-utils = "${bindir}/word-list-compress ${bindir}/aspell-import ${bindir}/run-with-aspel…
/openbmc/u-boot/drivers/pci/
H A Dpci_indirect.c51 INDIRECT_PCI_OP(read, word, u16 *, in_le16, 2)
54 INDIRECT_PCI_OP(write, word, u16, out_le16, 2)
/openbmc/linux/drivers/iio/pressure/
H A Dms5611_i2c.c29 u16 *word) in ms5611_i2c_read_prom_word() argument
38 *word = ret; in ms5611_i2c_read_prom_word()
H A Dms5611_spi.c26 u16 *word) in ms5611_spi_read_prom_word() argument
34 *word = ret; in ms5611_spi_read_prom_word()
/openbmc/linux/drivers/hwmon/pmbus/
H A Dmpq7932.c54 u16 word) in mpq7932_write_word_data() argument
62 return pmbus_write_byte_data(client, page, reg, word & 0xFF); in mpq7932_write_word_data()
/openbmc/linux/arch/sparc/include/asm/
H A Dhead_64.h9 .word 0xa1902000 | val
13 .word 0x81540000 | (N << 25)
/openbmc/linux/drivers/mtd/maps/
H A Dphysmap-core.c148 u16 word; in physmap_addr_gpios_read() local
154 word = readw(map->virt + (ofs & win_mask(info->win_order))); in physmap_addr_gpios_read()
155 mw.x[0] = word; in physmap_addr_gpios_read()
186 u16 word; in physmap_addr_gpios_write() local
192 word = mw.x[0]; in physmap_addr_gpios_write()
193 writew(word, map->virt + (ofs & win_mask(info->win_order))); in physmap_addr_gpios_write()
/openbmc/linux/arch/xtensa/lib/
H A Dstrncpy_user.S62 .Lsrcaligned: # return here when src is word-aligned
76 bbci.l a3, 1, .Lsrcaligned # if src is now word-aligned
111 EX(11f) l32i a9, a3, 0 # get word from src
116 EX(10f) s32i a9, a11, 0 # store word to dst
/openbmc/linux/drivers/media/platform/qcom/venus/
H A Dhfi_parser.c285 u32 *word = buf, *data, codecs = 0, domain = 0; in hfi_parser() local
303 data = word + 1; in hfi_parser()
305 switch (*word) { in hfi_parser()
332 word++; in hfi_parser()
/openbmc/linux/arch/m68k/fpsp040/
H A Dx_store.S137 swap %d0 |d0 now in upper word
156 orl %d1,%d0 |put these bits in ms word of double
236 bsrl get_fline |returns fline word in d0
244 tstb LOCAL_SGN(%a1) |put back sign into exponent word
/openbmc/linux/drivers/i2c/
H A Di2c-stub.c198 *wordp = data->word; in stub_xfer()
201 addr, data->word, command); in stub_xfer()
203 data->word = *wordp; in stub_xfer()
206 addr, data->word, command); in stub_xfer()
/openbmc/u-boot/lib/libavb/
H A Davb_util.c37 uint32_t word; in avb_htobe32() member
44 return ret.word; in avb_htobe32()
50 uint64_t word; in avb_htobe64() member
61 return ret.word; in avb_htobe64()
/openbmc/linux/arch/xtensa/include/asm/
H A Dbitops.h81 static inline unsigned long __fls(unsigned long word) in __fls() argument
83 return 31 - __cntlz(word); in __fls()

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