Searched refs:cur_byte (Results 1 – 5 of 5) sorted by relevance
/openbmc/linux/drivers/net/wireless/microchip/wilc1000/ |
H A D | hif.c | 834 static void wilc_hif_pack_sta_param(u8 *cur_byte, const u8 *mac, in wilc_hif_pack_sta_param() argument 837 ether_addr_copy(cur_byte, mac); in wilc_hif_pack_sta_param() 838 cur_byte += ETH_ALEN; in wilc_hif_pack_sta_param() 840 put_unaligned_le16(params->aid, cur_byte); in wilc_hif_pack_sta_param() 841 cur_byte += 2; in wilc_hif_pack_sta_param() 843 *cur_byte++ = params->link_sta_params.supported_rates_len; in wilc_hif_pack_sta_param() 845 memcpy(cur_byte, params->link_sta_params.supported_rates, in wilc_hif_pack_sta_param() 847 cur_byte += params->link_sta_params.supported_rates_len; in wilc_hif_pack_sta_param() 850 *cur_byte++ = true; in wilc_hif_pack_sta_param() 851 memcpy(cur_byte, params->link_sta_params.ht_capa, in wilc_hif_pack_sta_param() [all …]
|
/openbmc/linux/arch/arm64/lib/ |
H A D | memchr.S | 35 #define cur_byte w6 macro 59 ldrb cur_byte, [srcin], #1 61 cmp cur_byte, chrin
|
/openbmc/qemu/target/s390x/tcg/ |
H A D | vec_string_helper.c | 364 const int cur_byte = i * (1 << es); in vstrc() local 368 if (cur_byte == first_zero && !rt) { in vstrc() 393 first_match = MIN(cur_byte, first_match); in vstrc() 397 first_match = cur_byte; in vstrc()
|
H A D | mem_helper.c | 1496 uint8_t cur_byte = 0; in HELPER() local 1499 cur_byte = cpu_ldub_data_ra(env, src, ra); in HELPER() 1507 cur_byte >>= 4; in HELPER() 1514 cur_byte = (cur_byte & 0xf); in HELPER() 1516 cur_byte |= 0xf0; in HELPER() 1518 cpu_stb_data_ra(env, dest, cur_byte, ra); in HELPER()
|
/openbmc/qemu/disas/ |
H A D | m68k.c | 4680 unsigned int cur_byte; in get_field() local 4684 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT; in get_field() 4686 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT) - cur_byte - 1; in get_field() 4689 result = *(data + cur_byte) >> (-cur_bitshift); in get_field() 4692 ++cur_byte; in get_field() 4694 --cur_byte; in get_field() 4703 (unsigned long)(*(data + cur_byte) in get_field() 4707 result |= (unsigned long)*(data + cur_byte) << cur_bitshift; in get_field() 4710 ++cur_byte; in get_field() 4712 --cur_byte; in get_field() [all …]
|