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

<<11121314151617181920>>

  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 167 /// VariableExprAST - Expression class for referencing a variable, like "a".
318 if (CurTok != '(') // Simple variable ref.
438 // At least one variable name is required.
1089 // Look this variable up in the function.
1091 if (V == 0) return ErrorV("Unknown variable name");
1118 return ErrorV("destination of '=' must be a variable");
    [all...]
  /build/blueprint/
ninja_defs.go 58 // These fields correspond to a Ninja variable of the same name.
76 // Ninja build statement. The Args field contains variable names and values
89 Args map[string]string // The variable/value pairs to set.
253 Args map[Variable]*ninjaString
335 b.Args = make(map[Variable]*ninjaString)
349 return nil, fmt.Errorf("error parsing variable %q: %s", name,
  /build/soong/java/
java.go 279 ctx.Variable(pctx, "javacFlags", strings.Join(javacFlags, " "))
285 ctx.Variable(pctx, "aidlFlags", strings.Join(aidlFlags, " "))
356 // If you instrument class files that have local variable debug information in
357 // them emma does not correctly maintain the local variable table.
361 // option to remove local variable information
  /device/linaro/bootloader/edk2/EmulatorPkg/
EmulatorPkg.dsc 272 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
317 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
  /device/linaro/bootloader/edk2/Nt32Pkg/
Nt32Pkg.dsc 336 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
379 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/
QuarkMin.dsc 513 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
547 MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 23 | Ast.Variable name ->
25 | Not_found -> raise (Error "unknown variable name")
45 | Ast.Variable name -> name
46 | _ -> raise (Error "destination of '=' must be a variable")
53 let variable = try Hashtbl.find named_values name with var
54 | Not_found -> raise (Error "unknown variable name")
56 ignore(build_store val_ variable builder);
170 (* Create an alloca for the variable in the entry block. *)
173 (* Emit the start code first, without 'variable' in scope. *)
190 (* Within the loop, the variable is defined equal to the PHI node. If i
    [all...]
parser.ml 45 (* Simple variable ref. *)
46 | [< >] -> Ast.Variable id
88 (* At least one variable name is required. *)
  /external/python/cpython2/Mac/Modules/file/
filesupport.py 799 self.itself = Variable(t0, "_self->ob_itself", SelfMode)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 23 | Ast.Variable name ->
25 | Not_found -> raise (Error "unknown variable name")
45 | Ast.Variable name -> name
46 | _ -> raise (Error "destination of '=' must be a variable")
53 let variable = try Hashtbl.find named_values name with var
54 | Not_found -> raise (Error "unknown variable name")
56 ignore(build_store val_ variable builder);
170 (* Create an alloca for the variable in the entry block. *)
173 (* Emit the start code first, without 'variable' in scope. *)
190 (* Within the loop, the variable is defined equal to the PHI node. If i
    [all...]
parser.ml 45 (* Simple variable ref. *)
46 | [< >] -> Ast.Variable id
88 (* At least one variable name is required. *)
  /external/v8/src/builtins/
builtins-sharedarraybuffer.cc 100 CodeStubAssembler::Variable var_result(a, MachineRepresentation::kWord32);
  /external/v8/src/full-codegen/
full-codegen.cc 321 void FullCodeGenerator::EffectContext::Plug(Variable* var) const {
326 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const {
332 void FullCodeGenerator::TestContext::Plug(Variable* var) const {
491 Variable* var = proxy->var();
    [all...]
  /external/swiftshader/third_party/subzero/src/
PNaClTranslator.cpp 370 /// Returns the global variable declaration with the given index.
378 /// Returns the global declaration (variable or function) with the given
391 /// Returns the list of parsed global variable declarations. Releases
554 // Converts global variable declarations into constant value IDs.
573 // Reports that there is not global variable declaration for ID. Returns an
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTessellationTests.cpp     [all...]
  /build/blueprint/bpmodify/
bpmodify.go 156 if _, ok := value.(*parser.Variable); ok {
157 return false, []error{fmt.Errorf("parameter %s in module %s is a variable, unsupported",
  /build/blueprint/parser/
printer.go 106 case *Variable:
  /device/linaro/bootloader/edk2/CorebootPayloadPkg/
CorebootPayloadPkg.fdf 98 INF MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf
CorebootPayloadPkgIa32.dsc 286 MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf
CorebootPayloadPkgIa32X64.dsc 288 MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
100 (* Emit the start code first, without 'variable' in scope. *)
117 let variable = build_phi [(start_val, preheader_bb)] var_name builder in var
119 (* Within the loop, the variable is defined equal to the PHI node. If it
120 * shadows an existing variable, we have to restore it, so save it
125 Hashtbl.add named_values var_name variable;
140 let next_var = build_add variable step_val "nextvar" builder in
160 add_incoming (next_var, loop_end_bb) variable;
162 (* Restore the unshadowed variable. *
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
100 (* Emit the start code first, without 'variable' in scope. *)
117 let variable = build_phi [(start_val, preheader_bb)] var_name builder in var
119 (* Within the loop, the variable is defined equal to the PHI node. If it
120 * shadows an existing variable, we have to restore it, so save it
125 Hashtbl.add named_values var_name variable;
140 let next_var = build_add variable step_val "nextvar" builder in
160 add_incoming (next_var, loop_end_bb) variable;
162 (* Restore the unshadowed variable. *
    [all...]
  /prebuilts/go/darwin-x86/test/
index.go 158 // pass variable set in index[012].go
196 // Variable or constant.
  /prebuilts/go/linux-x86/test/
index.go 158 // pass variable set in index[012].go
196 // Variable or constant.
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 1032 milliseconds

<<11121314151617181920>>