Home
last modified time | relevance | path

Searched refs:Var (Results 1 – 25 of 330) sorted by relevance

12345678910>>...14

/third_party/flutter/engine/flutter/
DDEPS149 Var('fuchsia_git') + '/tonic' + '@' + 'bd27b4549199df72fcaeefd259ebc12a31c2e4ee',
152 Var('fuchsia_git') + '/third_party/benchmark' + '@' + '21f1eb3fe269ea43eba862bf6b699cde46587ade',
155Var('fuchsia_git') + '/third_party/googletest' + '@' + '46d66506083fc3333d84c260e7bd2eb3816a917a',
158 Var('fuchsia_git') + '/third_party/rapidjson' + '@' + '32d07c55db1bb6c2ae17cba4033491a667647753',
161 Var('fuchsia_git') + '/third_party/harfbuzz' + '@' + '2f8d51731d6502765aec2f93143c57bf13234358',
164 Var('fuchsia_git') + '/third_party/libcxx' + '@' + '7524ef50093a376f334a62a7e5cebf5d238d4c99',
167 Var('fuchsia_git') + '/third_party/libcxxabi' + '@' + '74d1e602c76350f0760bf6907910e4f3a4fccffe',
170 Var('fuchsia_git') + '/third_party/glfw' + '@' + '999f3556fdd80983b10051746264489f2cb1ef16',
178 Var('chromium_git') + '/chromium/src/ios.git' + '@' + Var('ios_tools_revision'),
181Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'c56c671998902fcc4fc9ace88c83daa99f980793',
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInstVarIter.h145 #define FOREACH_VAR_IN_INST(Var, Instr) \ argument
146 for (SizeT Sz_I##Var##_ = 0, Sz_##Var##Index_ = 0, \
147 Sz_SrcSize##Var##_ = (Instr).getSrcSize(), Sz_J##Var##_ = 0, \
148 Sz_NumVars##Var##_ = 0, Sz_Foreach_Break = 0; \
149 !Sz_Foreach_Break && Sz_I##Var##_ < Sz_SrcSize##Var##_; ++Sz_I##Var##_) \
150 if (Operand *Sz_Op##Var##_ = nullptr) \
153 for (Variable *Var = \
154 (Sz_J##Var##_ = 0, \
155 Sz_Op##Var##_ = (Instr).getSrc(Sz_I##Var##_), \
156 Sz_NumVars##Var##_ = Sz_Op##Var##_->getNumVars(), nullptr); \
[all …]
DIceRegAlloc.cpp38 bool overlapsDefs(const Cfg *Func, const Variable *Item, const Variable *Var) { in overlapsDefs() argument
41 if (const Inst *FirstDef = VMetadata->getFirstDefinition(Var)) in overlapsDefs()
44 for (const Inst *Def : VMetadata->getLatterDefinitions(Var)) { in overlapsDefs()
51 void dumpDisableOverlap(const Cfg *Func, const Variable *Var, in dumpDisableOverlap() argument
60 Str << "Disabling Overlap due to " << Reason << " " << *Var in dumpDisableOverlap()
61 << " LIVE=" << Var->getLiveRange() << " Defs="; in dumpDisableOverlap()
62 if (const Inst *FirstDef = VMetadata->getFirstDefinition(Var)) in dumpDisableOverlap()
64 const InstDefList &Defs = VMetadata->getLatterDefinitions(Var); in dumpDisableOverlap()
71 void dumpLiveRange(const Variable *Var, const Cfg *Func) { in dumpLiveRange() argument
76 if (Var->hasRegTmp()) { in dumpLiveRange()
[all …]
DIceVariableSplitting.cpp31 bool isAllocable(const Variable *Var) { in isAllocable() argument
32 if (Var == nullptr) in isAllocable()
34 return !Var->hasReg() && Var->mayHaveReg(); in isAllocable()
38 bool isInf(const Variable *Var) { in isInf() argument
39 if (Var == nullptr) in isInf()
41 return Var->hasReg() || Var->mustHaveReg(); in isInf()
93 Variable *get(Variable *Var) const { in get()
94 const SizeT VarNum = getVarNum(Var); in get()
97 return Var; in get()
99 return Var; in get()
[all …]
DIceTargetLowering.cpp543 for (Variable *Var : Func->getVariables()) { in postRegallocSplitting()
544 if (!Var->mustNotHaveReg() && !Var->hasReg()) { in postRegallocSplitting()
545 if (Var->getLiveRange().getNumSegments() > 1) in postRegallocSplitting()
546 SplitCandidates.insert(Var); in postRegallocSplitting()
563 for (auto *Var : SplitCandidates) { in postRegallocSplitting() local
564 for (auto &Segment : Var->getLiveRange().getSegments()) { in postRegallocSplitting()
566 Info.Replacing = Var; in postRegallocSplitting()
567 auto *Node = Var->getLiveRange().getNodeForSegment(Segment.first); in postRegallocSplitting()
575 if (auto *Var = llvm::dyn_cast<Variable>(Instr->getSrc(i))) { in postRegallocSplitting() local
576 if (Var == Info.Replacing) { in postRegallocSplitting()
[all …]
DIceLiveness.cpp50 Variable *Var = *I; in initInternal() local
51 if (VMetadata->isMultiBlock(Var)) { in initInternal()
53 } else if (VMetadata->isSingleBlock(Var)) { in initInternal()
54 SizeT Index = VMetadata->getLocalUseNode(Var)->getIndex(); in initInternal()
82 Variable *Var = *I; in initInternal() local
83 SizeT VarIndex = Var->getIndex(); in initInternal()
85 if (VMetadata->isMultiBlock(Var)) { in initInternal()
87 LiveToVarMap[LiveIndex] = Var; in initInternal()
88 } else if (VMetadata->isSingleBlock(Var)) { in initInternal()
89 SizeT NodeIndex = VMetadata->getLocalUseNode(Var)->getIndex(); in initInternal()
[all …]
DIceOperand.cpp391 for (Variable *Var : Func->getImplicitArgs()) { in init()
395 Metadata[Var->getIndex()].markUse(Kind, NoInst, EntryNode, IsImplicit); in init()
415 if (auto *Var = llvm::dyn_cast<Variable>(I.getSrc(SrcNum))) { in addNode() local
416 SizeT VarNum = Var->getIndex(); in addNode()
434 FOREACH_VAR_IN_INST(Var, I) { in addNode()
435 SizeT VarNum = Var->getIndex(); in addNode()
443 bool VariablesMetadata::isMultiDef(const Variable *Var) const { in isMultiDef()
445 if (Var->getIsArg()) in isMultiDef()
447 if (!isTracked(Var)) in isMultiDef()
449 SizeT VarNum = Var->getIndex(); in isMultiDef()
[all …]
/third_party/vk-gl-cts/external/amber/src/
DDEPS33 'third_party/clspv': Var('google_git') + '/clspv.git@' +
34 Var('clspv_revision'),
36 'third_party/clspv-llvm': Var('llvm_git') + '/llvm-project.git@' +
37 Var('clspv_llvm_revision'),
39 'third_party/cppdap': Var('google_git') + '/cppdap.git@' +
40 Var('cppdap_revision'),
42 'third_party/cpplint': Var('google_git') + '/styleguide.git@' +
43 Var('cpplint_revision'),
45 'third_party/dxc': Var('microsoft_git') + '/DirectXShaderCompiler.git@' +
46 Var('dxc_revision'),
[all …]
/third_party/harfbuzz/src/
Dhb-ot-color-colr-table.hh125 template <template<typename> class Var>
135 Var<F2DOT14> alpha;
137 DEFINE_SIZE_STATIC (2 + Var<F2DOT14>::static_size);
140 template <template<typename> class Var>
149 Var<F2DOT14> stopOffset;
150 ColorIndex<Var> color;
152 DEFINE_SIZE_STATIC (Var<F2DOT14>::static_size + ColorIndex<Var>::static_size);
166 template <template<typename> class Var>
177 Array16Of<ColorStop<Var>> stops;
231 template <template<typename> class Var>
[all …]
/third_party/skia/third_party/externals/tint/
DDEPS22 'third_party/gpuweb-cts': Var('chromium_git') + Var('github') +
23 '/gpuweb/cts.git@' + Var('gpuweb_cts_revision'),
25 'third_party/spirv-headers': Var('chromium_git') + Var('github') +
26 '/KhronosGroup/SPIRV-Headers.git@' + Var('spirv_headers_revision'),
28 'third_party/spirv-tools': Var('chromium_git') + Var('github') +
29 '/KhronosGroup//SPIRV-Tools.git@' + Var('spirv_tools_revision'),
31 'third_party/glslang': Var('chromium_git') + Var('github') +
32 '/KhronosGroup/glslang.git@' + Var('glslang_revision'),
35 'build': Var('chromium_git') + '/chromium/src/build@' +
36 Var('build_revision'),
[all …]
/third_party/libunwind/doc/
Dunw_create_addr_space.tex15 …\_t} \Func{unw\_create\_addr\_space}(\Type{unw\_accessors\_t~*}\Var{ap}, \Type{int} \Var{byteorder…
21 passed via the \Var{ap} pointer and the specified \Var{byteorder}.
23 \Var{byteorder} can be set to 0 to request the default byte-order of
25 \Var{byteorder} can be set to any constant defined by
35 routines are specified via the \Var{ap} argument, which points to a
42 identifier (\Var{as}) and the last argument is an arbitrary,
43 application-specified void-pointer (\Var{arg}). When invoking a
44 call-back routine, \Prog{libunwind} sets the \Var{as} argument to the
45 address-space on whose behalf the invocation is made and the \Var{arg}
54 \Type{int} \Func{find\_proc\_info}(\Type{unw\_addr\_space\_t} \Var{as},\\
[all …]
Dunw_reg_states_iterate.tex15 …_states\_iterate}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{unw\_reg\_states\_callback}\Var{cb}, \Typ…
21 identified by argument \Var{cp}. The \Var{cb} argument is a pointer
26 \Type{int} (~*\Var{unw\_reg\_states\_callback})(\Type{void~*}\Var{token},
27 \Type{void~*}\Var{reg\_states\_data},
28 \Type{size\_t} \Var{reg\_states\_data\_size},
29 \Type{unw\_word\_t} \Var{start\_ip}, \Type{unw\_word\_t} \Var{end\_ip});
33 \item[\Type{void~*} \Var{token}] The token value passed to \Var{unw\_reg\_states\_callback}. \\
34 \item[\Type{void~*} \Var{reg\_states\_data}] A pointer to data about
36 to \Var{unw\_apply\_reg\_state}.\\
37 \item[\Type{int} \Var{reg\_states\_data\_size}] The size of the register update data. \\
[all …]
Dunw_flush_cache.tex15 …w\_flush\_cache}(\Type{unw\_addr\_space\_t} \Var{as}, \Type{unw\_word\_t} \Var{lo}, \Type{unw\_wor…
20 relates to address-range \Var{lo} to \Var{hi} (non-inclusive) in the
21 target address-space \Var{as}. In addition, all info cached for
22 address-space \Var{as} that is not tied to a particular code-range is
26 \Var{lo} and \Var{hi} should be understood as a hint:
31 As a special case, if arguments \Var{lo} and \Var{hi} are both 0, all
32 information cached on behalf of address space \Var{as} is flushed.
/third_party/elfutils/libelf/
Dcommon.h135 #define CONVERT(Var) \ argument
136 (Var) = (sizeof (Var) == 1 \
137 ? (unsigned char) (Var) \
138 : (sizeof (Var) == 2 \
139 ? bswap_16 (Var) \
140 : (sizeof (Var) == 4 \
141 ? bswap_32 (Var) \
142 : bswap_64 (Var))))
144 #define CONVERT_TO(Dst, Var) \ argument
145 (Dst) = (sizeof (Var) == 1 \
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDbgEntityHistoryCalculator.cpp53 bool DbgValueHistoryMap::startDbgValue(InlinedEntity Var, in startDbgValue() argument
59 auto &Entries = VarEntries[Var]; in startDbgValue()
73 EntryIndex DbgValueHistoryMap::startClobber(InlinedEntity Var, in startClobber() argument
75 auto &Entries = VarEntries[Var]; in startClobber()
113 InlinedEntity Var) { in dropRegDescribedVar() argument
117 const auto &VarPos = llvm::find(VarSet, Var); in dropRegDescribedVar()
127 InlinedEntity Var) { in addRegDescribedVar() argument
130 assert(!is_contained(VarSet, Var)); in addRegDescribedVar()
131 VarSet.push_back(Var); in addRegDescribedVar()
136 static void clobberRegEntries(InlinedEntity Var, unsigned RegNo, in clobberRegEntries() argument
[all …]
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
Dgenerator_impl_assign_test.cc27 Decl(Var("lhs", ty.i32())), in TEST_F()
28 Decl(Var("rhs", ty.i32())), in TEST_F()
47 Decl(Var("lhs", ty.vec3<f32>())), in TEST_F()
48 Decl(Var("rhs", ty.f32())), in TEST_F()
69 Decl(Var("lhs", ty.vec3<f32>())), in TEST_F()
70 Decl(Var("rhs", ty.f32())), in TEST_F()
71 Decl(Var("index", ty.u32())), in TEST_F()
95 Decl(Var("lhs", ty.mat4x2<f32>())), in TEST_F()
96 Decl(Var("rhs", ty.vec2<f32>())), in TEST_F()
117 Decl(Var("lhs", ty.mat4x2<f32>())), in TEST_F()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DASanStackFrameLayout.cpp103 for (const auto &Var : Vars) { in ComputeASanStackFrameDescription() local
104 std::string Name = Var.Name; in ComputeASanStackFrameDescription()
105 if (Var.Line) { in ComputeASanStackFrameDescription()
107 Name += to_string(Var.Line); in ComputeASanStackFrameDescription()
109 StackDescription << " " << Var.Offset << " " << Var.Size << " " in ComputeASanStackFrameDescription()
123 for (const auto &Var : Vars) { in GetShadowBytes() local
124 SB.resize(Var.Offset / Granularity, kAsanStackMidRedzoneMagic); in GetShadowBytes()
126 SB.resize(SB.size() + Var.Size / Granularity, 0); in GetShadowBytes()
127 if (Var.Size % Granularity) in GetShadowBytes()
128 SB.push_back(Var.Size % Granularity); in GetShadowBytes()
[all …]
DSSAUpdaterBulk.cpp41 unsigned Var = Rewrites.size(); in AddVariable() local
42 LLVM_DEBUG(dbgs() << "SSAUpdater: Var=" << Var << ": initialized with Ty = " in AddVariable()
46 return Var; in AddVariable()
51 void SSAUpdaterBulk::AddAvailableValue(unsigned Var, BasicBlock *BB, Value *V) { in AddAvailableValue() argument
52 assert(Var < Rewrites.size() && "Variable not found!"); in AddAvailableValue()
53 LLVM_DEBUG(dbgs() << "SSAUpdater: Var=" << Var in AddAvailableValue()
56 Rewrites[Var].Defines[BB] = V; in AddAvailableValue()
61 void SSAUpdaterBulk::AddUse(unsigned Var, Use *U) { in AddUse() argument
62 assert(Var < Rewrites.size() && "Variable not found!"); in AddUse()
63 LLVM_DEBUG(dbgs() << "SSAUpdater: Var=" << Var << ": added a use" << *U->get() in AddUse()
[all …]
/third_party/skia/tests/
DSkSLDSLTest.cpp119 Var a(kInt_Type, "a"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
163 Var x(kInt_Type, "x"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
172 Var x(kHalf_Type, "x"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
173 Var y(kFloat_Type, "y"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
179 Var x(kInt_Type, "x"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
571 Var x(kFloat_Type); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
589 Var f22(kFloat2x2_Type, "f22"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
591 Var f32(kFloat3x2_Type, "f32"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
594 Var f42(kFloat4x2_Type, "f42"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
597 Var f23(kFloat2x3_Type, "f23"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/
DDEPS14 Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
17 Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
20 Var('github') + '/google/re2.git@' + Var('re2_revision'),
23 Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
24 Var('spirv_headers_revision'),
/third_party/skia/third_party/externals/spirv-tools/
DDEPS14 Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
17 Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
20 Var('github') + '/google/re2.git@' + Var('re2_revision'),
23 Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
24 Var('spirv_headers_revision'),
/third_party/spirv-tools/
DDEPS14 Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
17 Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
20 Var('github') + '/google/re2.git@' + Var('re2_revision'),
23 Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
24 Var('spirv_headers_revision'),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSDNodeDbgValue.h48 DIVariable *Var; variable
59 SDDbgValue(DIVariable *Var, DIExpression *Expr, SDNode *N, unsigned R, in SDDbgValue() argument
61 : Var(Var), Expr(Expr), DL(std::move(dl)), Order(O), IsIndirect(indir) { in SDDbgValue()
68 SDDbgValue(DIVariable *Var, DIExpression *Expr, const Value *C, DebugLoc dl, in SDDbgValue() argument
70 : Var(Var), Expr(Expr), DL(std::move(dl)), Order(O), IsIndirect(false) { in SDDbgValue()
76 SDDbgValue(DIVariable *Var, DIExpression *Expr, unsigned VRegOrFrameIdx, in SDDbgValue() argument
79 : Var(Var), Expr(Expr), DL(DL), Order(Order), IsIndirect(IsIndirect) { in SDDbgValue()
93 DIVariable *getVariable() const { return Var; } in getVariable()
/third_party/skia/third_party/externals/tint/src/resolver/
Dcontrol_block_validation_test.cc33 auto* var = Var("a", ty.f32(), Expr(3.14f)); in TEST_F()
51 auto* var = Var("a", ty.i32(), Expr(2)); in TEST_F()
71 auto* var = Var("a", ty.i32(), Expr(2)); in TEST_F()
93 auto* decl_z = Decl(Var("z", ty.i32())); in TEST_F()
112 auto* decl_z = Decl(Var("z", ty.i32())); in TEST_F()
130 auto* decl_z = Decl(Var("z", ty.i32())); in TEST_F()
150 auto* decl_z = Decl(Var("z", ty.i32())); in TEST_F()
171 auto* decl_z = Decl(Var("z", ty.i32())); in TEST_F()
193 auto* decl_z = Decl(Var("z", ty.i32())); in TEST_F()
215 auto* var = Var("a", ty.i32(), Expr(2)); in TEST_F()
[all …]
Dvar_let_validation_test.cc48 WrapInFunction(Var(Source{{12, 34}}, "a", nullptr)); in TEST_F()
69 auto* i = Var("i", ty.i32(), ast::StorageClass::kNone); in TEST_F()
71 Var(Source{{56, 78}}, "a", ty.pointer<i32>(ast::StorageClass::kFunction), in TEST_F()
108 Var(Source{{3, 3}}, "v", ty.i32(), ast::StorageClass::kNone, Expr(2u))); in TEST_F()
129 Var(Source{{3, 3}}, "v", ty.Of(a), ast::StorageClass::kNone, Expr(2u))); in TEST_F()
141 auto* var_a = Var("a", ty.f32(), priv); in TEST_F()
175 WrapInFunction(Var(Source{{12, 34}}, "v", ty.f32(), ast::StorageClass::kNone, in TEST_F()
186 auto* var_outer = Var("v", ty.f32(), ast::StorageClass::kNone); in TEST_F()
188 Var(Source{{12, 34}}, "v", ty.f32(), ast::StorageClass::kNone); in TEST_F()
202 auto* var_a_float = Var("v", ty.f32(), ast::StorageClass::kNone, Expr(3.1f)); in TEST_F()
[all …]

12345678910>>...14