Home
last modified time | relevance | path

Searched refs:high_word (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/drivers/net/ethernet/samsung/sxgbe/
Dsxgbe_core.c94 u32 high_word, low_word; in sxgbe_core_set_umac_addr() local
96 high_word = (addr[5] << 8) | (addr[4]); in sxgbe_core_set_umac_addr()
99 writel(high_word, ioaddr + SXGBE_CORE_ADD_HIGHOFFSET(reg_n)); in sxgbe_core_set_umac_addr()
106 u32 high_word, low_word; in sxgbe_core_get_umac_addr() local
108 high_word = readl(ioaddr + SXGBE_CORE_ADD_HIGHOFFSET(reg_n)); in sxgbe_core_get_umac_addr()
112 addr[5] = (high_word & 0x0000FF00) >> 8; in sxgbe_core_get_umac_addr()
113 addr[4] = (high_word & 0x000000FF); in sxgbe_core_get_umac_addr()
/linux-4.1.27/arch/alpha/lib/
Dmemcpy.c76 unsigned long low_word, high_word; in __memcpy_unaligned_up() local
80 __asm__("ldq_u %0,%1":"=r" (high_word):"m" (*(unsigned long *)(s+8))); in __memcpy_unaligned_up()
87 :"r" (high_word), "r" (s)); in __memcpy_unaligned_up()
91 low_word = high_word; in __memcpy_unaligned_up()
/linux-4.1.27/drivers/crypto/ux500/hash/
Dhash_alg.h146 u32 high_word; member
Dhash_core.c681 ctx->state.length.high_word++; in hash_incrementlength()
1100 HASH_HIGH_WORD_MAX_VAL == req_ctx->state.length.high_word) { in hash_hw_update()