Lines Matching defs:LoadConst32
2321 TEST_F(AssemblerMIPS64Test, LoadConst32) { in TEST_F() argument
2323 __ LoadConst32(mips64::V0, 0); in TEST_F() local
2324 __ LoadConst32(mips64::V0, 65535); in TEST_F() local
2326 __ LoadConst32(mips64::V0, -1); in TEST_F() local
2327 __ LoadConst32(mips64::V0, -32768); in TEST_F() local
2329 __ LoadConst32(mips64::V0, 65536); in TEST_F() local
2330 __ LoadConst32(mips64::V0, 65537); in TEST_F() local
2331 __ LoadConst32(mips64::V0, 2147483647); in TEST_F() local
2332 __ LoadConst32(mips64::V0, -32769); in TEST_F() local
2333 __ LoadConst32(mips64::V0, -65536); in TEST_F() local
2334 __ LoadConst32(mips64::V0, -65537); in TEST_F() local
2335 __ LoadConst32(mips64::V0, -2147483647); in TEST_F() local
2336 __ LoadConst32(mips64::V0, -2147483648); in TEST_F() local
2449 void LoadConst32(mips64::GpuRegister rd, int32_t c) { in LoadConst32() function