HomeSort by relevance Sort by last modified time
    Searched refs:NewVar (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/swiftshader/third_party/subzero/src/
IceVariableSplitting.cpp 105 Variable *NewVar = Func->makeVariable(Var->getType());
106 NewVar->setRegClass(Var->getRegClass());
107 NewVar->setLinkedTo(get(Var));
109 Map[VarNum].MappedVar = NewVar;
111 return NewVar;
IceTargetLowering.cpp 644 Variable *NewVar = Func->makeVariable(Var->getType());
646 NewVar->setLiveRange(LR);
648 VarInfo[NewVar] = Info;
650 ExtraVars.insert(NewVar);
    [all...]
IceCfg.cpp 877 auto *NewVar = makeVariable(Pair.first->getType());
878 // NewVar->setLinkedTo(Pair.first);
880 auto *Assign = InstAssign::create(Node->getCfg(), NewVar, Pair.first);
882 ConstCache[Pair.first] = NewVar;
885 auto *NewVar = makeVariable(Pair.first->getType());
886 NewVar->setLinkedTo(ConstCache[Pair.first]);
888 InstAssign::create(Node->getCfg(), NewVar, ConstCache[Pair.first]);
895 InstUse->replaceSource(i, NewVar);
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp     [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
unused.go 35 types.NewTuple(types.NewVar(token.NoPos, nil, "", types.Typ[types.String])),
asmdecl.go 467 types.NewVar(token.NoPos, nil, "fake0", elem),
468 types.NewVar(token.NoPos, nil, "fake1", elem),
  /prebuilts/go/linux-x86/src/cmd/vet/
unused.go 35 types.NewTuple(types.NewVar(token.NoPos, nil, "", types.Typ[types.String])),
asmdecl.go 467 types.NewVar(token.NoPos, nil, "fake0", elem),
468 types.NewVar(token.NoPos, nil, "fake1", elem),
  /prebuilts/go/darwin-x86/src/go/types/
universe.go 74 res := NewVar(token.NoPos, nil, "", Typ[String])
78 sig.recv = NewVar(token.NoPos, nil, "", typ)
assignments.go 305 obj = NewVar(ident.Pos(), check.pkg, name, nil)
315 obj = NewVar(lhs.Pos(), check.pkg, "_", nil) // dummy variable
check.go 320 NewVar(pos, check.pkg, "", a[0]),
321 NewVar(pos, check.pkg, "", a[1]),
builtins.go 634 list[i] = NewVar(token.NoPos, nil, "", Default(param))
640 result = NewTuple(NewVar(token.NoPos, nil, "", res))
object.go 204 // NewVar returns a new variable.
206 func NewVar(pos token.Pos, pkg *Package, name string, typ Type) *Var {
type.go 273 m.typ.(*Signature).recv = NewVar(m.pos, m.pkg, "", typ)
336 newmtyp.recv = NewVar(newm.pos, newm.pkg, "", t)
stmt.go 641 obj := NewVar(lhs.Pos(), check.pkg, lhs.Name, T)
814 obj = NewVar(ident.Pos(), check.pkg, name, nil)
822 obj = NewVar(lhs.Pos(), check.pkg, "_", nil) // dummy variable
call.go 404 params: NewTuple(append([]*Var{NewVar(token.NoPos, check.pkg, "", x.typ)}, params...)...),
decl.go 400 lhs0[i] = NewVar(name.Pos(), pkg, name.Name, nil)
  /prebuilts/go/linux-x86/src/go/types/
universe.go 74 res := NewVar(token.NoPos, nil, "", Typ[String])
78 sig.recv = NewVar(token.NoPos, nil, "", typ)
assignments.go 305 obj = NewVar(ident.Pos(), check.pkg, name, nil)
315 obj = NewVar(lhs.Pos(), check.pkg, "_", nil) // dummy variable
check.go 320 NewVar(pos, check.pkg, "", a[0]),
321 NewVar(pos, check.pkg, "", a[1]),
builtins.go 634 list[i] = NewVar(token.NoPos, nil, "", Default(param))
640 result = NewTuple(NewVar(token.NoPos, nil, "", res))
object.go 204 // NewVar returns a new variable.
206 func NewVar(pos token.Pos, pkg *Package, name string, typ Type) *Var {
type.go 273 m.typ.(*Signature).recv = NewVar(m.pos, m.pkg, "", typ)
336 newmtyp.recv = NewVar(newm.pos, newm.pkg, "", t)
stmt.go 641 obj := NewVar(lhs.Pos(), check.pkg, lhs.Name, T)
814 obj = NewVar(ident.Pos(), check.pkg, name, nil)
822 obj = NewVar(lhs.Pos(), check.pkg, "_", nil) // dummy variable
call.go 404 params: NewTuple(append([]*Var{NewVar(token.NoPos, check.pkg, "", x.typ)}, params...)...),

Completed in 550 milliseconds

1 2 3