HomeSort by relevance Sort by last modified time
    Searched refs:new_input (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
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,
radeon_compiler.c 136 * register will source new_input instead.
138 void rc_move_input(struct radeon_compiler * c, unsigned input, struct rc_src_register new_input)
150 inst->U.I.SrcReg[i].File = new_input.File;
151 inst->U.I.SrcReg[i].Index = new_input.Index;
152 inst->U.I.SrcReg[i].Swizzle = combine_swizzles(new_input.Swizzle, inst->U.I.SrcReg[i].Swizzle);
154 inst->U.I.SrcReg[i].Negate ^= new_input.Negate;
155 inst->U.I.SrcReg[i].Abs = new_input.Abs;
158 c->Program.InputsRead |= 1 << new_input.Index;
235 void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input,
245 c->Program.InputsRead |= 1 << new_input;
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
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,
radeon_compiler.c 136 * register will source new_input instead.
138 void rc_move_input(struct radeon_compiler * c, unsigned input, struct rc_src_register new_input)
150 inst->U.I.SrcReg[i].File = new_input.File;
151 inst->U.I.SrcReg[i].Index = new_input.Index;
152 inst->U.I.SrcReg[i].Swizzle = combine_swizzles(new_input.Swizzle, inst->U.I.SrcReg[i].Swizzle);
154 inst->U.I.SrcReg[i].Negate ^= new_input.Negate;
155 inst->U.I.SrcReg[i].Abs = new_input.Abs;
158 c->Program.InputsRead |= 1 << new_input.Index;
235 void rc_transform_fragment_wpos(struct radeon_compiler * c, unsigned wpos, unsigned new_input,
245 c->Program.InputsRead |= 1 << new_input;
    [all...]
  /external/chromium_org/v8/src/compiler/
generic-node-inl.h 158 Input new_input; local
159 new_input.to = to_append;
160 new_input.use = new_use;
161 inputs_.appendable_->push_back(new_input);
generic-node.h 41 inline void ReplaceInput(int index, GenericNode* new_input);
42 inline void AppendInput(Zone* zone, GenericNode* new_input);
43 inline void InsertInput(Zone* zone, int index, GenericNode* new_input);
  /external/chromium_org/v8/test/cctest/compiler/
test-js-typed-lowering.cc 261 static void CheckToI32(Node* old_input, Node* new_input, bool is_signed) {
265 CHECK_EQ(old_input, new_input);
266 } else if (new_input->opcode() == IrOpcode::kNumberConstant) {
267 CHECK(NodeProperties::GetBounds(new_input).upper->Is(expected_type));
268 double v = OpParameter<double>(new_input);
272 CHECK_EQ(NumberToI32(is_signed), new_input->opcode());
    [all...]

Completed in 129 milliseconds