Home
last modified time | relevance | path

Searched refs:x86_mov_imm (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/translate/
Dtranslate_sse.c658 x86_mov_imm(p->func, dst, imms[swizzle[0] - UTIL_FORMAT_SWIZZLE_0]); in translate_attr_convert()
668x86_mov_imm(p->func, x86_make_disp(dst, 4), imms[swizzle[1] - UTIL_FORMAT_SWIZZLE_0]); in translate_attr_convert()
686x86_mov_imm(p->func, x86_make_disp(dst, 8), imms[swizzle[2] - UTIL_FORMAT_SWIZZLE_0]); in translate_attr_convert()
696x86_mov_imm(p->func, x86_make_disp(dst, 12), imms[swizzle[3] - UTIL_FORMAT_SWIZZLE_0]); in translate_attr_convert()
803x86_mov_imm(p->func, dst, (imms[swizzle[1] - UTIL_FORMAT_SWIZZLE_0] << 16) | imms[swizzle[0] - UTI… in translate_attr_convert()
839x86_mov_imm(p->func, x86_make_disp(dst, 4), (imms[swizzle[3] - UTIL_FORMAT_SWIZZLE_0] << 16) | imm… in translate_attr_convert()
955 x86_mov_imm(p->func, x86_make_disp(dst, i * 4), v); in translate_attr_convert()
988 x86_mov_imm(p->func, x86_make_disp(dst, i * 8), l); in translate_attr_convert()
989 x86_mov_imm(p->func, x86_make_disp(dst, i * 8 + 4), h); in translate_attr_convert()
/external/mesa3d/src/gallium/auxiliary/rtasm/
Drtasm_x86sse.h323 void x86_mov_imm(struct x86_function *p, struct x86_reg dst, int imm );
Drtasm_x86sse.c463 void x86_mov_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_imm() function