/openbmc/linux/drivers/media/dvb-frontends/drx39xyj/ |
H A D | drxj.c | 2109 u16 word; in drxj_dap_atomic_read_write_block() local 2137 word = ((u16) data[2 * i]); in drxj_dap_atomic_read_write_block() 2138 word += (((u16) data[(2 * i) + 1]) << 8); in drxj_dap_atomic_read_write_block() 2141 word, 0); in drxj_dap_atomic_read_write_block() 2156 &word, 0); in drxj_dap_atomic_read_write_block() 2161 data[2 * i] = (u8) (word & 0xFF); in drxj_dap_atomic_read_write_block() 2162 data[(2 * i) + 1] = (u8) (word >> 8); in drxj_dap_atomic_read_write_block() 2186 u32 word = 0; in drxj_dap_atomic_read_reg32() local 2197 word = (u32) buf[3]; in drxj_dap_atomic_read_reg32() 2198 word <<= 8; in drxj_dap_atomic_read_reg32() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/ui/ |
H A D | buildinfohelper.py | 832 var_words = [word for word in k.split('_')] 833 root_var = "_".join([word for word in var_words if word.isupper()])
|
/openbmc/linux/Documentation/networking/device_drivers/can/ctu/ |
H A D | ctucanfd-driver.rst | 344 in the first word of RX FIFO. 352 #. Read the word, then allocate. If it fails, discard the rest of the 359 #. Add option to peek into the FIFO instead of consuming the word. 361 #. If the allocation fails, store the read word into driver’s data. On 362 the next try, use the stored word instead of reading it again.
|
/openbmc/linux/Documentation/arch/s390/ |
H A D | cds.rst | 169 get_ciw() - get command information word 318 If the concurrent sense flag in the extended status word (esw) in the irb is 320 sense bytes available in the extended control word irb->scsw.ecw[]. No device 412 Channel programs that intend to set the suspend flag on a channel command word
|
/openbmc/linux/Documentation/crypto/ |
H A D | descore-readme.rst | 220 i assume word pointers can be freely cast to and from char pointers. 223 2) the typedef ``word`` means a 32 bit unsigned integral type. 225 i assume sizeof(word) == 4 EVERYWHERE. 230 the input and output work areas do not need to be word-aligned.
|
/openbmc/linux/arch/parisc/include/asm/ |
H A D | assembly.h | 23 #define ASM_ULONG_INSN .word 580 .word (fault_addr - .), (except_addr - .) ! \
|
/openbmc/linux/drivers/ps3/ |
H A D | ps3-lpm.c | 732 static u64 pm_bus_word_to_ps3_lv1_bus_word(u8 word) in pm_bus_word_to_ps3_lv1_bus_word() argument 735 switch (word) { in pm_bus_word_to_ps3_lv1_bus_word()
|
/openbmc/linux/Documentation/driver-api/i3c/ |
H A D | protocol.rst | 176 * one 16-bits command word in big endian 183 The 16-bits command word is made of:
|
/openbmc/linux/arch/m68k/fpsp040/ |
H A D | fpsp.h | 178 .set CMDWORD,LV-35 | command word in cmd1b 307 .set sx_mask,0x01800000 | set s and x bits in word $48
|
/openbmc/qemu/target/s390x/tcg/ |
H A D | misc_helper.c | 555 s390_io_interrupt(io->id, io->nr, io->parm, io->word); in HELPER() 567 lowcore->io_int_word = cpu_to_be32(io->word); in HELPER()
|
/openbmc/linux/drivers/scsi/mpi3mr/mpi/ |
H A D | mpi30_transport.h | 16 __le32 word; member
|
/openbmc/linux/drivers/net/wireless/atmel/ |
H A D | at76c50x-usb.h | 328 __le16 word; member
|
/openbmc/linux/Documentation/virt/kvm/s390/ |
H A D | s390-diag.rst | 64 General register 2 contains a subchannel-identification word denoting
|
/openbmc/linux/Documentation/driver-api/memory-devices/ |
H A D | ti-gpmc.rst | 48 A word of caution: generic timing routine has been developed based
|
/openbmc/linux/fs/f2fs/ |
H A D | segment.c | 54 static inline unsigned long __reverse_ffs(unsigned long word) in __reverse_ffs() argument 59 if ((word & 0xffffffff00000000UL) == 0) in __reverse_ffs() 62 word >>= 32; in __reverse_ffs() 64 if ((word & 0xffff0000) == 0) in __reverse_ffs() 67 word >>= 16; in __reverse_ffs() 69 if ((word & 0xff00) == 0) in __reverse_ffs() 72 word >>= 8; in __reverse_ffs() 74 if ((word & 0xf0) == 0) in __reverse_ffs() 77 word >>= 4; in __reverse_ffs() 79 if ((word & 0xc) == 0) in __reverse_ffs() [all …]
|
/openbmc/linux/drivers/i2c/busses/ |
H A D | i2c-stm32f7.c | 1011 f7_msg->smbus_buf[1] = data->word & 0xff; in stm32f7_i2c_smbus_xfer_msg() 1012 f7_msg->smbus_buf[2] = data->word >> 8; in stm32f7_i2c_smbus_xfer_msg() 1036 f7_msg->smbus_buf[1] = data->word & 0xff; in stm32f7_i2c_smbus_xfer_msg() 1037 f7_msg->smbus_buf[2] = data->word >> 8; in stm32f7_i2c_smbus_xfer_msg() 1845 data->word = f7_msg->smbus_buf[0] | in stm32f7_i2c_smbus_xfer()
|
/openbmc/linux/arch/mips/include/asm/octeon/ |
H A D | cvmx-pko-defs.h | 1215 uint64_t word:15; member 1225 uint64_t word:15; 1236 uint64_t word:15; member 1246 uint64_t word:15;
|
/openbmc/linux/drivers/net/ethernet/smsc/ |
H A D | smc91x.c | 1623 static int smc_write_eeprom_word(struct net_device *dev, u16 addr, u16 word) in smc_write_eeprom_word() argument 1632 SMC_SET_GP(lp, word); in smc_write_eeprom_word() 1651 static int smc_read_eeprom_word(struct net_device *dev, u16 addr, u16 *word) in smc_read_eeprom_word() argument 1671 *word = SMC_GET_GP(lp); in smc_read_eeprom_word()
|
/openbmc/qemu/target/hexagon/imported/ |
H A D | ldst.idef | 83 STD_LD_AMODES(loadalignh, "Ryy32=memh_fifo", "Load Half-word into shifted vector", 195 …_MEMSIZE_4B,A_LOAD,A_RESTRICT_SLOT0ONLY,A_RESTRICT_PACKET_AXOK,A_NOTE_AXOK), "Load word with lock", 199 …LY,A_RESTRICT_PACKET_AXOK,A_NOTE_AXOK,A_RESTRICT_LATEPRED,A_NOTE_LATEPRED), "Store word with lock", 206 …LY,A_RESTRICT_PACKET_AXOK,A_NOTE_AXOK,A_RESTRICT_LATEPRED,A_NOTE_LATEPRED), "Store word with lock",
|
/openbmc/linux/net/batman-adv/ |
H A D | bat_iv_ogm.c | 746 unsigned long *word; in batadv_iv_ogm_slide_own_bcast_window() local 762 word = orig_ifinfo->bat_iv.bcast_own; in batadv_iv_ogm_slide_own_bcast_window() 763 batadv_bit_get_packet(bat_priv, word, 1, 0); in batadv_iv_ogm_slide_own_bcast_window() 765 *w = bitmap_weight(word, in batadv_iv_ogm_slide_own_bcast_window()
|
/openbmc/linux/Documentation/staging/ |
H A D | crc32.rst | 31 is sent last. And when appending a CRC word to a message, you should 110 word at a time and increase the inner loop count to 32.
|
/openbmc/linux/security/tomoyo/ |
H A D | condition.c | 376 static u8 tomoyo_condition_type(const char *word) in tomoyo_condition_type() argument 381 if (!strcmp(word, tomoyo_condition_keyword[i])) in tomoyo_condition_type()
|
/openbmc/linux/Documentation/i2c/ |
H A D | smbus-protocol.rst | 49 high byte of a 16 bit word. 117 byte. But this time, the data is a complete word (16 bits)::
|
/openbmc/u-boot/arch/mips/ |
H A D | Kconfig | 470 Value which is inserted as boot config word 0. 477 Value which is inserted as boot config word 1.
|
/openbmc/qemu/target/arm/tcg/ |
H A D | a32.decode | 283 # Load/Store word and unsigned byte (register) 344 # Load/Store word and unsigned byte (immediate)
|