Lines Matching defs:LoadConst32
2500 TEST_F(AssemblerMIPS64Test, LoadConst32) { in TEST_F() argument
2502 __ LoadConst32(mips64::V0, 0); in TEST_F() local
2503 __ LoadConst32(mips64::V0, 65535); in TEST_F() local
2505 __ LoadConst32(mips64::V0, -1); in TEST_F() local
2506 __ LoadConst32(mips64::V0, -32768); in TEST_F() local
2508 __ LoadConst32(mips64::V0, 65536); in TEST_F() local
2509 __ LoadConst32(mips64::V0, 65537); in TEST_F() local
2510 __ LoadConst32(mips64::V0, 2147483647); in TEST_F() local
2511 __ LoadConst32(mips64::V0, -32769); in TEST_F() local
2512 __ LoadConst32(mips64::V0, -65536); in TEST_F() local
2513 __ LoadConst32(mips64::V0, -65537); in TEST_F() local
2514 __ LoadConst32(mips64::V0, -2147483647); in TEST_F() local
2515 __ LoadConst32(mips64::V0, -2147483648); in TEST_F() local
2628 void LoadConst32(mips64::GpuRegister rd, int32_t c) { in LoadConst32() function