Home
last modified time | relevance | path

Searched refs:Variable (Results 1 – 25 of 560) sorted by relevance

12345678910>>...23

/netbsd-src/usr.bin/make/unit-tests/
H A Dcond-undef-lint.exp1 make: "cond-undef-lint.mk" line 24: Variable "UNDEF" is undefined
2 make: "cond-undef-lint.mk" line 35: Variable "VAR." is undefined
3 make: "cond-undef-lint.mk" line 45: Variable "VAR.defined" is undefined
H A Dvar-recursive.exp1 make: "var-recursive.mk" line 11: Variable DIRECT is recursive.
5 make: "var-recursive.mk" line 19: Variable INDIRECT1 is recursive.
11 make: "var-recursive.mk" line 34: Variable MODIFIERS is recursive.
15 make: "var-recursive.mk" line 43: Variable V is recursive.
23 make: Variable VAR is recursive.
H A Dopt-debug-lint.exp1 make: "opt-debug-lint.mk" line 20: Variable "X" is undefined
2 make: "opt-debug-lint.mk" line 43: Variable "UNDEF" is undefined
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
H A DCodeExpansions.h32 std::string lookup(StringRef Variable) const { in lookup() argument
33 return Expansions.lookup(Variable); in lookup()
38 const_iterator find(StringRef Variable) const { in find() argument
39 return Expansions.find(Variable); in find()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h200 R_SExpr reduceFunction(Function &Orig, Variable *Nvd, R_SExpr E0) { in reduceFunction()
204 R_SExpr reduceSFunction(SFunction &Orig, Variable *Nvd, R_SExpr E0) { in reduceSFunction()
279 R_SExpr reduceLet(Let &Orig, Variable *Nvd, R_SExpr B) { in reduceLet()
283 Variable *enterScope(Variable &Orig, R_SExpr E0) { return &Orig; } in enterScope()
284 void exitScope(const Variable &Orig) {} in exitScope()
290 Variable *reduceVariableRef(Variable *Ovd) { return Ovd; } in reduceVariableRef()
348 void enterScope(const Variable *V1, const Variable *V2) {} in enterScope()
351 bool compareVariableRefs(const Variable *V1, const Variable *V2) { in compareVariableRefs()
386 void enterScope(const Variable* V1, const Variable* V2) {} in enterScope()
389 bool compareVariableRefs(const Variable* V1, const Variable* V2) { in compareVariableRefs()
[all …]
H A DThreadSafetyTIL.h355 class Variable : public SExpr {
368 Variable(StringRef s, SExpr *D = nullptr)
373 Variable(SExpr *D, const ValueDecl *Cvd = nullptr)
379 Variable(const Variable &Vd, SExpr *D) // rewrite constructor in Variable() function
413 typename C::CType compare(const Variable* E, C& Cmp) const { in compare()
666 Function(Variable *Vd, SExpr *Bd) in Function()
668 Vd->setKind(Variable::VK_Fun); in Function()
671 Function(const Function &F, Variable *Vd, SExpr *Bd) // rewrite constructor in Function()
673 Vd->setKind(Variable::VK_Fun); in Function()
678 Variable *variableDecl() { return VarDecl; } in variableDecl()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DMCInstrDescView.h37 struct Variable { struct
122 const Operand &getPrimaryOperand(const Variable &Var) const;
160 const SmallVector<Variable, 4> Variables;
168 SmallVector<Variable, 4> Variables, const BitVector *ImplDefRegs,
H A DMCInstrDescView.cpp20 unsigned Variable::getIndex() const { return *Index; } in getIndex()
22 unsigned Variable::getPrimaryOperandIndex() const { in getPrimaryOperandIndex()
27 bool Variable::hasTiedOperands() const { in hasTiedOperands()
95 SmallVector<Variable, 4> Variables, in Instruction() argument
112 SmallVector<Variable, 4> Variables; in create()
194 const Operand &Instruction::getPrimaryOperand(const Variable &Var) const { in getPrimaryOperand()
237 [](const Variable &Var) { return Var.hasTiedOperands(); }); in hasTiedRegisters()
H A DCodeTemplate.cpp35 MCOperand &InstructionTemplate::getValueFor(const Variable &Var) { in getValueFor()
39 const MCOperand &InstructionTemplate::getValueFor(const Variable &Var) const { in getValueFor()
52 return any_of(Instr->Variables, [this](const Variable &Var) { in hasImmediateVariables()
H A DParallelSnippetGenerator.cpp82 static SmallVector<const Variable *, 8>
84 SmallVector<const Variable *, 8> Result; in getVariablesWithTiedOperands()
119 const ArrayRef<const Variable *> TiedVariables, in generateSnippetUsingStaticRenaming()
125 for (const Variable *Var : TiedVariables) { in generateSnippetUsingStaticRenaming()
H A DCodeTemplate.h34 MCOperand &getValueFor(const Variable &Var);
35 const MCOperand &getValueFor(const Variable &Var) const;
/netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-bcanalyzer.rst99 Ths size, in bytes, of the Global Variable Definitions and their initializers.
209 The total number of 32-bit integers encoded using the Variable Bit Rate
214 The total number of 64-bit integers encoded using the Variable Bit Rate encoding
220 the Variable Bit Rate encoding scheme.
225 integers had they not been compressed with the Variable Bit Rage encoding
230 The total number of bytes saved by using the Variable Bit Rate encoding scheme.
290 integers that use the Variable Bit Rate encoding scheme.
295 the 32-bit and 64-bit integers had they not been compressed with the Variable
300 The total number of bytes saved in this function by using the Variable Bit
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DCloneDetection.h393 const VarDecl *Variable; member
400 SuspiciousCloneInfo(const VarDecl *Variable, const Stmt *Mention, in SuspiciousCloneInfo()
402 : Variable(Variable), Mention(Mention), Suggestion(Suggestion) {} in SuspiciousCloneInfo()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp84 if (const auto *V = dyn_cast<Variable>(E)) { in getCanonicalVal()
85 if (V->kind() == Variable::VK_Let) { in getCanonicalVal()
106 if (auto *V = dyn_cast<Variable>(E)) { in simplifyToCanonicalVal()
107 if (V->kind() != Variable::VK_Let) in simplifyToCanonicalVal()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DMachineIRBuilder.cpp52 MachineIRBuilder::buildDirectDbgValue(Register Reg, const MDNode *Variable, in buildDirectDbgValue() argument
54 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildDirectDbgValue()
57 cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(getDL()) && in buildDirectDbgValue()
61 /*IsIndirect*/ false, Reg, Variable, Expr)); in buildDirectDbgValue()
65 MachineIRBuilder::buildIndirectDbgValue(Register Reg, const MDNode *Variable, in buildIndirectDbgValue() argument
67 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildIndirectDbgValue()
70 cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(getDL()) && in buildIndirectDbgValue()
74 /*IsIndirect*/ true, Reg, Variable, Expr)); in buildIndirectDbgValue()
78 const MDNode *Variable, in buildFIDbgValue() argument
80 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildFIDbgValue()
[all …]
/netbsd-src/external/gpl3/gdb/dist/readline/readline/doc/
H A Drlman.texi63 * Function and Variable Index:: Index of externally visible functions
80 @node Function and Variable Index
81 @unnumbered Function and Variable Index
H A Dhistory.texi62 * Function and Variable Index:: Index of externally visible functions
81 @node Function and Variable Index
82 @appendix Function and Variable Index
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineInstr.cpp2108 Register Reg, const MDNode *Variable, in BuildMI() argument
2110 assert(isa<DILocalVariable>(Variable) && "not a variable"); in BuildMI()
2112 assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) && in BuildMI()
2119 return MIB.addMetadata(Variable).addMetadata(Expr); in BuildMI()
2125 const MDNode *Variable, const MDNode *Expr) { in BuildMI() argument
2126 assert(isa<DILocalVariable>(Variable) && "not a variable"); in BuildMI()
2128 assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) && in BuildMI()
2131 return BuildMI(MF, DL, MCID, IsIndirect, MO.getReg(), Variable, Expr); in BuildMI()
2138 return MIB.addMetadata(Variable).addMetadata(Expr); in BuildMI()
2144 const MDNode *Variable, const MDNode *Expr) { in BuildMI() argument
[all …]
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/rfc/
H A Ddraft-dukes-ike-mode-cfg-02.txt371 INTERNAL_IP4_ADDRESS 1 Variable 0 or 4 octets
372 INTERNAL_IP4_NETMASK 2 Variable 0 or 4 octets
373 INTERNAL_IP4_DNS 3 Variable 0 or 4 octets
374 INTERNAL_IP4_NBNS 4 Variable 0 or 4 octets
375 INTERNAL_ADDRESS_EXPIRY 5 Variable 0 or 4 octets
376 INTERNAL_IP4_DHCP 6 Variable 0 or 4 octets
377 APPLICATION_VERSION 7 Variable 0 or more
378 INTERNAL_IP6_ADDRESS 8 Variable 0 or 16 octets
379 INTERNAL_IP6_NETMASK 9 Variable 0 or 16 octets
380 INTERNAL_IP6_DNS 10 Variable 0 or 16 octets
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DNeonEmitter.cpp290 class Variable { class
295 Variable() : T(Type::getVoid()), N("") {} in Variable() function in __anon9e9e0a7a0111::Variable
296 Variable(Type T, std::string N) : T(std::move(T)), N(std::move(N)) {} in Variable() function in __anon9e9e0a7a0111::Variable
338 std::map<std::string, Variable> Variables;
350 Variable RetVar;
507 void emitReverseVariable(Variable &Dest, Variable &Src);
1134 Variables[Name] = Variable(Types[I], Name + VariablePostfix); in initVariables()
1136 RetVar = Variable(Types[0], "ret" + VariablePostfix); in initVariables()
1155 Variable &V = Variables[Name]; in emitPrototype()
1187 void Intrinsic::emitReverseVariable(Variable &Dest, Variable &Src) { in emitReverseVariable()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h446 Register Reg, const MDNode *Variable,
453 const MachineOperand &MO, const MDNode *Variable,
461 const MDNode *Variable, const MDNode *Expr);
469 Register Reg, const MDNode *Variable,
477 MachineOperand &MO, const MDNode *Variable,
486 const MDNode *Variable, const MDNode *Expr);
/netbsd-src/external/gpl3/gcc/dist/gcc/config/bfin/
H A Dbfin.opt25 Variable
31 Variable
35 Variable
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/bfin/
H A Dbfin.opt25 Variable
31 Variable
35 Variable
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DInitialization.h183 VD Variable; member
216 : Kind(EK), Type(Var->getType()), Variable{Var, false, false} {} in Kind()
233 Variable{Member, Implicit, DefaultMemberInit} {} in InitializedEntity()
295 Entity.Variable = {Param, false, false}; in InitializeTemplateParameter()
491 return getKind() == EK_Member && Variable.IsImplicitFieldInit; in isImplicitMemberInitializer()
497 return getKind() == EK_Member && Variable.IsDefaultMemberInit; in isDefaultMemberInitializer()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheckImpl.h331 NumericVariable *Variable;
334 NumericVariableUse(StringRef Name, NumericVariable *Variable) in NumericVariableUse() argument
335 : ExpressionAST(Name), Variable(Variable) {} in NumericVariableUse()
342 return Variable->getImplicitFormat(); in getImplicitFormat()

12345678910>>...23