Home
last modified time | relevance | path

Searched refs:IsVariable (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/torque/
Dscope.cc30 if (current.second->IsVariable()) { in AddLiveVariables()
Ddeclarable.h50 bool IsVariable() const { return kind() == kVariable; } in IsVariable() function
56 return IsVariable() || IsExternConstant() || IsParameter() || in IsValue()
Dtypes.cc307 if (value->IsVariable() && !Variable::cast(value)->IsDefined()) { in RValue()
Ddeclaration-visitor.cc595 if (value->IsVariable()) { in MarkLocationModified()
Dimplementation-visitor.cc1471 if (value.declarable() && (*value.declarable())->IsVariable()) { in GenerateAssignToVariable()
/external/tensorflow/tensorflow/core/graph/
Dgraph.h157 bool IsVariable() const { return class_ == NC_VARIABLE; } in IsVariable() function
752 inline bool IsVariable(const Node* node) { return node->IsVariable(); } in IsVariable() function
Dcostmodel.cc448 if (IsConstant(n) || IsVariable(n)) { in TimeEstimateForNode()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DAutoUpgrade.cpp2541 bool IsVariable = Name[16] == 'v'; in UpgradeIntrinsicCall() local
2548 if (IsVariable && Name[17] != '.') { in UpgradeIntrinsicCall()
2592 IsVariable ? Intrinsic::x86_avx512_psllv_d_512 : in UpgradeIntrinsicCall()
2596 IsVariable ? Intrinsic::x86_avx512_psllv_q_512 : in UpgradeIntrinsicCall()
2609 bool IsVariable = Name[16] == 'v'; in UpgradeIntrinsicCall() local
2616 if (IsVariable && Name[17] != '.') { in UpgradeIntrinsicCall()
2660 IsVariable ? Intrinsic::x86_avx512_psrlv_d_512 : in UpgradeIntrinsicCall()
2664 IsVariable ? Intrinsic::x86_avx512_psrlv_q_512 : in UpgradeIntrinsicCall()
2677 bool IsVariable = Name[16] == 'v'; in UpgradeIntrinsicCall() local
2684 if (IsVariable && Name[17] != '.') { in UpgradeIntrinsicCall()
[all …]
/external/tensorflow/tensorflow/core/grappler/
Dgrappler_item.cc73 if (IsVariable(*node)) { in MainVariables()
Dop_types.cc557 bool IsVariable(const NodeDef& node) { in IsVariable() function
579 return IsConstant(node) || IsVariable(node) || IsHostConstant(node); in IsPersistent()
Dop_types.h180 bool IsVariable(const NodeDef& node);
/external/tensorflow/tensorflow/core/grappler/optimizers/
Ddependency_optimizer.cc76 if (IsVariable(*input) || IsRecv(*input)) { in SafeToRemoveIdentity()
/external/tensorflow/tensorflow/core/grappler/costs/
Dvirtual_scheduler.cc523 return IsVariable(*node); in IsPersistentNode()