Lines Matching refs:dest
36 static u8 *load_elf32_byte(u8 *dest, u8 *org, int lsb) in load_elf32_byte() argument
42 *dest = *temp_ptr; in load_elf32_byte()
51 static u8 *load_elf32_half(Elf32_Half *dest, u8 *org, int lsb) in load_elf32_half() argument
57 *dest = (u16)((u16)(*temp_ptr) & 0x00ff); in load_elf32_half()
59 *dest |= ((u16)(*temp_ptr) << 8 ) & 0xff00; in load_elf32_half()
63 *dest = (u16)(((u16)(*temp_ptr) << 8 ) & 0xff00); in load_elf32_half()
65 *dest |= ((u16)(*temp_ptr) & 0x00ff); in load_elf32_half()
74 static u8 *load_elf32_sword(Elf32_Sword *dest, u8 *org, int lsb) in load_elf32_sword() argument
100 *dest = *( (Elf32_Sword *)&temp ); in load_elf32_sword()
105 static u8 *load_elf32_word(Elf32_Word *dest, u8 *org, int lsb) in load_elf32_word() argument
110 *dest = ((u32)(*temp_ptr) & 0x000000ff); in load_elf32_word()
112 *dest |= (((u32)(*temp_ptr) << 8 ) & 0x0000ff00); in load_elf32_word()
114 *dest |= (((u32)(*temp_ptr) << 16 ) & 0x00ff0000); in load_elf32_word()
116 *dest |= (((u32)(*temp_ptr) << 24 ) & 0xff000000); in load_elf32_word()
120 *dest = (((u32)(*temp_ptr) << 24 ) & 0xff000000); in load_elf32_word()
122 *dest |= (((u32)(*temp_ptr) << 16 ) & 0x00ff0000); in load_elf32_word()
124 *dest |= (((u32)(*temp_ptr) << 8 ) & 0x0000ff00); in load_elf32_word()
126 *dest |= ((u32)(*temp_ptr) & 0x000000ff); in load_elf32_word()