Searched refs:new_input (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_compiler.c | 138 void rc_move_input(struct radeon_compiler * c, unsigned input, struct rc_src_register new_input) in rc_move_input() argument 150 inst->U.I.SrcReg[i].File = new_input.File; in rc_move_input() 151 inst->U.I.SrcReg[i].Index = new_input.Index; in rc_move_input() 152 inst->U.I.SrcReg[i].Swizzle = combine_swizzles(new_input.Swizzle, inst->U.I.SrcReg[i].Swizzle); in rc_move_input() 154 inst->U.I.SrcReg[i].Negate ^= new_input.Negate; in rc_move_input() 155 inst->U.I.SrcReg[i].Abs = new_input.Abs; in rc_move_input() 158 c->Program.InputsRead |= 1 << new_input.Index; in rc_move_input() 235 void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input, in rc_transform_fragment_wpos() argument 245 c->Program.InputsRead |= 1 << new_input; in rc_transform_fragment_wpos() 256 inst_rcp->U.I.SrcReg[0].Index = new_input; in rc_transform_fragment_wpos() [all …]
|
D | radeon_compiler.h | 105 void rc_move_input(struct radeon_compiler * c, unsigned input, struct rc_src_register new_input); 108 void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input,
|
/external/v8/test/cctest/compiler/ |
D | test-js-typed-lowering.cc | 314 static void CheckToI32(Node* old_input, Node* new_input, bool is_signed) { in CheckToI32() argument 316 Type* new_type = NodeProperties::GetType(new_input); in CheckToI32() 320 CHECK_EQ(old_input, new_input); in CheckToI32() 321 } else if (new_input->opcode() == IrOpcode::kNumberConstant) { in CheckToI32() 322 double v = OpParameter<double>(new_input); in CheckToI32()
|
/external/autotest/server/cros/dynamic_suite/ |
D | suite_unittest.py | 516 new_input = (yield r) 517 if new_input:
|