/external/swiftshader/third_party/subzero/src/ |
IceCfg.h | 103 /// String pool for Variable::Name values. 115 /// Create a new Variable with a particular type and an optional name. The 116 /// Node argument is the node where the variable is defined. 119 template <typename T = Variable> T *makeVariable(Type Ty) { 131 void addArg(Variable *Arg); 134 void addImplicitArg(Variable *Arg); 181 /// Returns true if Var is a global variable that is used by the profiling 232 /// CurrentNode is used for validating the Variable::DefNode field during 330 // Separate string pools for CfgNode and Variable names, due to a combination 342 /// Variable::DefNode. Normally, a traversal over CfgNodes maintains this, bu [all...] |
IceLiveness.h | 14 /// The node-specific information tracked for each Variable includes whether it 53 // LiveToVarMap maps a liveness bitvector index to a Variable. This is 56 LivenessVector<Variable *> LiveToVarMap; 61 // of each variable's live range within this block. The index/key of each 72 Variable *getVariable(SizeT LiveIndex, const CfgNode *Node) const; 142 /// VarToLiveMap maps a Variable's Variable::Number to its live index within 147 LivenessVector<Variable *> LiveToVarMap; 148 /// RangeMask[Variable::Number] indicates whether we want to track that 149 /// Variable's live range [all...] |
IceInstX8664.cpp | 67 Variable *Base, 69 Variable *Index, uint16_t Shift, 81 Vars = Func->allocateArrayOf<Variable *>(NumVars); 92 int32_t getRematerializableOffset(Variable *Var, 158 const Variable *B = Base; 178 Variable *I = Index;
|
/external/deqp/framework/randomshaders/ |
rsgExecutionContext.cpp | 61 ExecValueAccess ExecutionContext::getValue (const Variable* variable) 63 ExecValueStorage* storage = m_varValues[variable]; 67 storage = new ExecValueStorage(variable->getType()); 68 m_varValues[variable] = storage; 71 return storage->getValue(variable->getType()); 74 const Sampler2D& ExecutionContext::getSampler2D (const Variable* sampler) const 83 const SamplerCube& ExecutionContext::getSamplerCube (const Variable* sampler) const
|
/external/skia/src/sksl/ |
SkSLSectionAndParameterHelper.h | 102 const std::vector<const Variable*>& getParameters() { 106 static bool IsParameter(const Variable& var) { 144 std::vector<const Variable*> fParameters;
|
/external/vulkan-validation-layers/demos/android/include/ |
cube.frag.h | 36 9(uFragColor): 8(ptr) Variable Output 40 13(tex): 12(ptr) Variable UniformConstant 42 16(texcoord): 15(ptr) Variable Input
|
/system/tools/aidl/ |
ast_java.cpp | 67 Field::Field(int m, Variable* v) : ClassElement(), modifiers(m), variable(v) {} 74 to->Write("%s %s", this->variable->type->JavaType().c_str(), 75 this->variable->name.c_str()); 94 Variable::Variable(const Type* t, const string& n) 97 Variable::Variable(const Type* t, const string& n, int d) 100 void Variable::WriteDeclaration(CodeWriter* to) const { 109 void Variable::Write(CodeWriter* to) const { to->Write("%s", name.c_str()); [all...] |
/system/update_engine/update_manager/ |
variable_unittest.cc | 17 #include "update_engine/update_manager/variable.h" 34 // Variable class that returns a value constructed with the default value. 36 class DefaultVariable : public Variable<T> { 39 : Variable<T>(name, mode) {} 41 : Variable<T>(name, poll_interval) {} 90 void ValueChanged(BaseVariable* variable) { 91 calls_.push_back(variable); 115 // Simulate a value change on the variable's implementation. 141 void ValueChanged(BaseVariable* variable) override { 143 variable->RemoveObserver(observer) [all...] |
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/ |
ArmJunoDxe.c | 94 * Build and Set UEFI Variable Boot####
96 * @param BootVariableName Name of the UEFI Variable
97 * @param Attributes 'Attributes' for the Boot#### variable as per UEFI spec
98 * @param BootDescription Description of the Boot#### variable
118 UINT8 *Variable;
126 // Each Boot#### variable is built as follow:
134 Variable = AllocateZeroPool (VariableSize);
135 if (Variable == NULL) {
140 *(UINT32*)Variable = Attributes;
142 VariablePtr = Variable + sizeof (UINT32); [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
Ip4Config2Impl.c | 182 Read the configuration data from variable storage according to the VarName and
183 gEfiIp4Config2ProtocolGuid. It checks the integrity of variable data. If the
184 data is corrupted, it clears the variable data to ZERO. Othewise, it outputs the
187 @param[in] VarName The pointer to the variable name
190 @retval EFI_NOT_FOUND The variable can not be found or already corrupted.
203 IP4_CONFIG2_VARIABLE *Variable;
210 // Try to read the configuration variable.
223 // Allocate buffer and read the config variable.
225 Variable = AllocatePool (VarSize);
226 if (Variable == NULL) { [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/ |
Variable.h | 3 internal structure and functions used by Variable modules.
23 #include <Protocol/Variable.h>
70 // If both ADDED and IN_DELETED_TRANSITION variable are present,
112 Flush the HOB variable to flash.
114 @param[in] VariableName Name of variable has been updated or deleted.
115 @param[in] VendorGuid Guid of variable has been updated or deleted.
125 Writes a buffer to variable storage space, in the working block.
127 This function writes a buffer to variable storage space into a firmware
131 @param VariableBase Base address of the variable to write.
132 @param VariableBuffer Point to the variable data buffer. [all...] |
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
DwarfDebug.h | 69 const MDNode *Variable; 86 : Begin(0), End(0), Variable(0), Merged(false), 90 : Begin(B), End(E), Loc(L), Variable(V), Merged(false), 93 : Begin(B), End(E), Variable(0), Merged(false), 96 : Begin(B), End(E), Variable(0), Merged(false), 99 : Begin(B), End(E), Variable(0), Merged(false), 122 /// DbgVariable - This class is used to track local variable information. 125 DIVariable Var; // Variable Descriptor. 126 DIE *TheDIE; // Variable DIE. 128 DbgVariable *AbsVar; // Corresponding Abstract variable, if any [all...] |
/external/v8/src/interpreter/ |
interpreter-assembler.h | 213 Variable* var_type_feedback); 341 CodeStubAssembler::Variable bytecode_offset_; 342 CodeStubAssembler::Variable interpreted_frame_pointer_; 343 CodeStubAssembler::Variable bytecode_array_; 344 CodeStubAssembler::Variable dispatch_table_; 345 CodeStubAssembler::Variable accumulator_;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerLib/ |
BootMaintenanceManagerLib.inf | 39 Variable.c
63 gEfiGlobalVariableGuid ## SOMETIMES_PRODUCES ## Variable:L"BootNext" (The number of next boot option)
64 ## SOMETIMES_PRODUCES ## Variable:L"BootXX" (Boot option variable)
65 ## SOMETIMES_PRODUCES ## Variable:L"PlatformLang" (Platform supported languange in Rfc4646 format)
66 ## SOMETIMES_PRODUCES ## Variable:L"Lang" (Platform supported languange in Iso639 format)
67 ## SOMETIMES_PRODUCES ## Variable:L"KeyXX" (Hotkey option variable)
68 ## PRODUCES ## Variable:L"HwErrRecSupport" (The level of platform supported hardware Error Record Persistence)
69 ## SOMETIMES_PRODUCES ## Variable:L"BootOptionSupport" (The feature supported in boot option menu, value could be: EFI_BOOT_OPTION_S (…) [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
ast.ml | 10 (* variant for referencing a variable, like "a". *) 11 | Variable of string
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
ast.ml | 10 (* variant for referencing a variable, like "a". *) 11 | Variable of string
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
ast.ml | 10 (* variant for referencing a variable, like "a". *) 11 | Variable of string
|
/external/skia/src/sksl/ir/ |
SkSLVariableReference.h | 22 * A reference to a variable, through which it can be read or written. In the statement: 26 * there is only one Variable 'x', but two VariableReferences to it. 35 VariableReference(Position position, const Variable& variable, RefKind refKind = kRead_RefKind) 36 : INHERITED(position, kVariableReference_Kind, variable.fType) 37 , fVariable(variable) 132 const Variable& fVariable;
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/ |
ast.ml | 10 (* variant for referencing a variable, like "a". *) 11 | Variable of string
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/ |
ast.ml | 10 (* variant for referencing a variable, like "a". *) 11 | Variable of string
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/ |
ast.ml | 10 (* variant for referencing a variable, like "a". *) 11 | Variable of string
|
/external/vulkan-validation-layers/demos/smoke/android/src/main/jni/ |
Smoke.frag.h | 30 9(fragcolor): 8(ptr) Variable Output 33 12(color): 11(ptr) Variable Input
|
/external/v8/src/builtins/ |
builtins-regexp.cc | 106 Variable var_from_cursor( 109 Variable var_to_cursor(this, MachineType::PointerRepresentation(), 112 Variable* vars[] = {&var_from_cursor, &var_to_cursor}; 186 Variable var_i(this, MachineType::PointerRepresentation()); 189 Variable* vars[] = {&var_i}; 241 Variable var_result(this, MachineRepresentation::kTagged); 245 Variable var_lastindex(this, MachineRepresentation::kTagged); 358 Variable var_result(this, MachineRepresentation::kTagged); 387 Variable var_value_map(this, MachineRepresentation::kTagged); 419 Variable var_result(this, MachineRepresentation::kWord32) [all...] |
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/PlatformInit/ |
PlatformInitDxe.h | 33 #include <Protocol/Variable.h>
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/ |
MemoryPeim.c | 125 // Variable initialization
314 EFI_PEI_READ_ONLY_VARIABLE2_PPI *Variable;
322 (void **)&Variable
325 DEBUG((EFI_D_ERROR, "WARNING: Locating Pei variable failed 0x%x \n", Status));
343 // This variable is saved in BDS stage. Now read it back
345 Status = Variable->GetVariable (
346 Variable,
366 // Build the GUID'd HOB for DXE from variable
368 DEBUG((EFI_D_ERROR, "Build Hob from variable \n"));
|