HomeSort by relevance Sort by last modified time
    Searched refs:Variable (Results 401 - 425 of 601) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/CodeGen/
MachineInstr.cpp     [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVOpCodeEnum.h 53 _SPIRV_OP(Variable, 59)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 44 (* Simple variable ref. *)
45 | [< >] -> Ast.Variable id
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 44 (* Simple variable ref. *)
45 | [< >] -> Ast.Variable id
  /external/v8/src/compiler/
code-assembler.h 183 // and enhanced Label functionality to merge variable values along paths where
204 typedef CodeAssemblerVariable Variable;
387 Variable* exception_var = nullptr);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 218 "first MDNode argument of a DBG_VALUE not a variable");
405 const MDNode *Variable, const MDNode *Expr);
414 const MDNode *Variable, const MDNode *Expr);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 218 "first MDNode argument of a DBG_VALUE not a variable");
405 const MDNode *Variable, const MDNode *Expr);
414 const MDNode *Variable, const MDNode *Expr);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 218 "first MDNode argument of a DBG_VALUE not a variable");
405 const MDNode *Variable, const MDNode *Expr);
414 const MDNode *Variable, const MDNode *Expr);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 218 "first MDNode argument of a DBG_VALUE not a variable");
405 const MDNode *Variable, const MDNode *Expr);
414 const MDNode *Variable, const MDNode *Expr);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 218 "first MDNode argument of a DBG_VALUE not a variable");
405 const MDNode *Variable, const MDNode *Expr);
414 const MDNode *Variable, const MDNode *Expr);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 218 "first MDNode argument of a DBG_VALUE not a variable");
405 const MDNode *Variable, const MDNode *Expr);
414 const MDNode *Variable, const MDNode *Expr);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 218 "first MDNode argument of a DBG_VALUE not a variable");
405 const MDNode *Variable, const MDNode *Expr);
414 const MDNode *Variable, const MDNode *Expr);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 218 "first MDNode argument of a DBG_VALUE not a variable");
405 const MDNode *Variable, const MDNode *Expr);
414 const MDNode *Variable, const MDNode *Expr);
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/
HiKey.dsc 222 # DEBUG_VARIABLE 0x00000100 // Variable
400 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
407 OpenPlatformPkg/Drivers/Variable/BlockVariableDxe/BlockVariableDxe.inf
  /device/linaro/bootloader/edk2/Nt32Pkg/
Nt32Pkg.fdf 89 # This can speed up the Variable Dispatch a bit.
187 INF MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
218 INF MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/
QuarkMin.fdf 42 # 0x006E0000 | Variable + FTW Working + |
182 # Quark NVRAM Area contains: Variable + FTW Working + FTW Spare
217 # This can speed up the Variable Dispatch a bit.
330 INF RuleOverride = NORELOC MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
391 INF MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf
  /external/clang/lib/Analysis/
ThreadSafetyCommon.cpp 61 // Return true if E is a variable that points to an incomplete Phi node.
295 assert(SelfVar && "We have no variable for 'this'!");
300 if (auto *V = dyn_cast<til::Variable>(E))
594 // Add local variables with trivial type to the variable map
608 // update the statement map so that S refers to E. Returns a new variable
616 E = new (Arena) til::Variable(E, VD);
633 // if E is a til::Variable, update its clangDecl.
637 if (til::Variable *V = dyn_cast<til::Variable>(E)) {
643 // Adds a new variable declaration
    [all...]
  /external/v8/src/parsing/
preparser.cc 335 for (auto variable : *(declaration->pattern.variables_)) {
336 declaration_descriptor->scope->RemoveUnresolved(variable);
337 Variable* var = scope()->DeclareVariableName(
338 variable->raw_name(), declaration_descriptor->mode);
346 names->Add(variable->raw_name(), zone());
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 155 /// VariableExprAST - Expression class for referencing a variable, like "a".
346 if (CurTok != '(') // Simple variable ref.
457 // At least one variable name is required.
728 // Look this variable up in the function.
731 return LogErrorV("Unknown variable name");
758 return LogErrorV("destination of '=' must be a variable");
765 Value *Variable = NamedValues[LHSE->getName()];
766 if (!Variable)
767 return LogErrorV("Unknown variable name");
769 Builder.CreateStore(Val, Variable);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 155 /// VariableExprAST - Expression class for referencing a variable, like "a".
346 if (CurTok != '(') // Simple variable ref.
457 // At least one variable name is required.
728 // Look this variable up in the function.
731 return LogErrorV("Unknown variable name");
758 return LogErrorV("destination of '=' must be a variable");
765 Value *Variable = NamedValues[LHSE->getName()];
766 if (!Variable)
767 return LogErrorV("Unknown variable name");
769 Builder.CreateStore(Val, Variable);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 155 /// VariableExprAST - Expression class for referencing a variable, like "a".
346 if (CurTok != '(') // Simple variable ref.
457 // At least one variable name is required.
728 // Look this variable up in the function.
731 return LogErrorV("Unknown variable name");
758 return LogErrorV("destination of '=' must be a variable");
765 Value *Variable = NamedValues[LHSE->getName()];
766 if (!Variable)
767 return LogErrorV("Unknown variable name");
769 Builder.CreateStore(Val, Variable);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 156 /// VariableExprAST - Expression class for referencing a variable, like "a".
334 if (CurTok != '(') // Simple variable ref.
445 // At least one variable name is required.
717 // Look this variable up in the function.
720 return LogErrorV("Unknown variable name");
747 return LogErrorV("destination of '=' must be a variable");
754 Value *Variable = NamedValues[LHSE->getName()];
755 if (!Variable)
756 return LogErrorV("Unknown variable name");
758 Builder.CreateStore(Val, Variable);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 171 /// VariableExprAST - Expression class for referencing a variable, like "a".
349 if (CurTok != '(') // Simple variable ref.
460 // At least one variable name is required.
739 // Look this variable up in the function.
742 return LogErrorV("Unknown variable name");
769 return LogErrorV("destination of '=' must be a variable");
776 Value *Variable = NamedValues[LHSE->getName()];
777 if (!Variable)
778 return LogErrorV("Unknown variable name");
780 Builder.CreateStore(Val, Variable);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 155 /// VariableExprAST - Expression class for referencing a variable, like "a".
346 if (CurTok != '(') // Simple variable ref.
457 // At least one variable name is required.
729 // Look this variable up in the function.
732 return LogErrorV("Unknown variable name");
759 return LogErrorV("destination of '=' must be a variable");
766 Value *Variable = NamedValues[LHSE->getName()];
767 if (!Variable)
768 return LogErrorV("Unknown variable name");
770 Builder.CreateStore(Val, Variable);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 152 /// VariableExprAST - Expression class for referencing a variable, like "a".
343 if (CurTok != '(') // Simple variable ref.
454 // At least one variable name is required.
724 // Look this variable up in the function.
727 return LogErrorV("Unknown variable name");
754 return LogErrorV("destination of '=' must be a variable");
761 Value *Variable = NamedValues[LHSE->getName()];
762 if (!Variable)
763 return LogErrorV("Unknown variable name");
765 Builder.CreateStore(Val, Variable);
    [all...]

Completed in 5118 milliseconds

<<11121314151617181920>>