HomeSort by relevance Sort by last modified time
    Searched defs:CheckType (Results 1 - 25 of 27) sorted by null

1 2

  /external/deqp-deps/SPIRV-Tools/source/opt/
if_conversion.cpp 53 if (!CheckType(phi->type_id())) return;
199 bool IfConversion::CheckType(uint32_t id) {
upgrade_memory_model.cpp 210 CheckType(inst->type_id(), indices);
265 std::pair<bool, bool> UpgradeMemoryModel::CheckType(
scalar_replacement_pass.cpp 531 return CheckType(typeInst) && CheckAnnotations(varInst) && CheckUses(varInst);
534 bool ScalarReplacementPass::CheckType(const Instruction* typeInst) const {
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
if_conversion.cpp 53 if (!CheckType(phi->type_id())) return;
199 bool IfConversion::CheckType(uint32_t id) {
upgrade_memory_model.cpp 227 CheckType(inst->type_id(), indices);
282 std::pair<bool, bool> UpgradeMemoryModel::CheckType(
scalar_replacement_pass.cpp 531 return CheckType(typeInst) && CheckAnnotations(varInst) && CheckUses(varInst);
534 bool ScalarReplacementPass::CheckType(const Instruction* typeInst) const {
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 141 // If we have a CheckType/CheckChildType/Record node followed by a
149 Matcher *CheckType = MatcherPtr.release();
150 Matcher *CheckOpcode = CheckType->takeNext();
155 CheckOpcode->setNext(CheckType);
156 CheckType->setNext(Tail);
357 Matcher::CheckType));
364 // If the CheckType isn't at the start of the list, see if we can move
394 // If all the options are CheckType's, we can form the SwitchType, woot.
401 Matcher::CheckType));
DAGISelMatcher.h 64 CheckType, // Fail if not correct type.
120 case CheckType:
159 // to them. For example, we'll pass in a CheckType node as an argument to
487 : Matcher(CheckType), Type(type), ResNo(resno) {}
493 return N->getKind() == CheckType;
507 /// every child does a CheckType, but is much faster.
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
DAGISelMatcherOpt.cpp 152 // If we have a CheckType/CheckChildType/Record node followed by a
160 Matcher *CheckType = MatcherPtr.take();
161 Matcher *CheckOpcode = CheckType->takeNext();
166 CheckOpcode->setNext(CheckType);
167 CheckType->setNext(Tail);
422 Matcher::CheckType));
429 // If the CheckType isn't at the start of the list, see if we can move
458 // If all the options are CheckType's, we can form the SwitchType, woot.
465 Matcher::CheckType));
DAGISelMatcher.h 61 CheckType, // Fail if not correct type.
129 case CheckType:
167 // to them. For example, we'll pass in a CheckType node as an argument to
503 : Matcher(CheckType), Type(type), ResNo(resno) {}
509 return N->getKind() == CheckType;
526 /// every child does a CheckType, but is much faster.
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 141 // If we have a CheckType/CheckChildType/Record node followed by a
149 Matcher *CheckType = MatcherPtr.release();
150 Matcher *CheckOpcode = CheckType->takeNext();
155 CheckOpcode->setNext(CheckType);
156 CheckType->setNext(Tail);
367 Matcher::CheckType));
374 // If the CheckType isn't at the start of the list, see if we can move
404 // If all the options are CheckType's, we can form the SwitchType, woot.
411 Matcher::CheckType));
DAGISelMatcher.h 64 CheckType, // Fail if not correct type.
120 case CheckType:
159 // to them. For example, we'll pass in a CheckType node as an argument to
487 : Matcher(CheckType), Type(type), ResNo(resno) {}
493 return N->getKind() == CheckType;
507 /// every child does a CheckType, but is much faster.
    [all...]
  /external/v8/tools/clang/plugins/
CheckIPCVisitor.cpp 97 // See CheckType() for specifics.
120 if (CheckType(arg_type, &details)) {
132 // See CheckType() above for specifics.
210 bool CheckIPCVisitor::CheckType(QualType type, CheckDetails* details) const {
266 CheckType(arg.getAsType(), details);
  /external/protobuf/python/google/protobuf/internal/
descriptor_pool_test.py 373 msg_type.CheckType(test, None, name, file_desc)
381 def CheckType(self, test, msg_desc, name, file_desc):
406 def CheckType(self, test, containing_type_desc, name, file_desc):
420 subtype.CheckType(test, desc, name, file_desc)
  /external/selinux/python/sepolicy/
sepolicy.py 60 class CheckType(argparse.Action):
607 action=CheckType,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/
MIPatternMatch.h 324 struct CheckType {
326 CheckType(const LLT &Ty) : Ty(Ty) {}
333 inline CheckType m_SpecificType(LLT Ty) { return Ty; }
  /external/tensorflow/tensorflow/core/graph/
graph_test.cc 332 static void CheckType(Node* node, bool b) {
344 CheckType(graph_.source_node(), graph_.source_node()->IsSource());
345 CheckType(graph_.sink_node(), graph_.sink_node()->IsSink());
346 CheckType(op, op->IsOp());
  /external/tensorflow/tensorflow/core/framework/
tensor.cc 620 void Tensor::CheckType(DataType expected_dtype) const {
    [all...]
  /art/compiler/optimizing/
code_generator.cc 73 static bool CheckType(DataType::Type type, Location location) {
117 DCHECK(CheckType(instruction->GetType(), locations->InAt(0)))
121 DCHECK(CheckType(instruction->GetType(), locations->Out()))
128 DCHECK(CheckType(inputs[i]->GetType(), locations->InAt(i)))
136 DCHECK(CheckType(type, environment->GetLocationAt(i)))
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 83 enum CheckType {
103 Check::CheckType CheckTy;
128 Pattern(Check::CheckType Ty)
161 Check::CheckType getCheckTy() const { return CheckTy; }
628 // Check::CheckType CheckTy;
700 static size_t CheckTypeSize(Check::CheckType Ty) {
731 static Check::CheckType FindCheckType(StringRef Buffer, StringRef Prefix) {
782 Check::CheckType &CheckTy,
787 Check::CheckType FirstTy = Check::CheckNone;
840 Check::CheckType &CheckTy
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/FileCheck/
FileCheck.cpp 115 enum CheckType {
157 Check::CheckType CheckTy;
163 explicit Pattern(Check::CheckType Ty) : CheckTy(Ty) {}
182 Check::CheckType getCheckTy() const { return CheckTy; }
738 static size_t CheckTypeSize(Check::CheckType Ty) {
773 static std::string CheckTypeName(StringRef Prefix, Check::CheckType Ty) {
796 llvm_unreachable("unknown CheckType");
799 static Check::CheckType FindCheckType(StringRef Buffer, StringRef Prefix) {
869 Check::CheckType &CheckTy) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/
Record.h 955 RecTy *CheckType;
958 IsAOpInit(RecTy *CheckType, Init *Expr)
959 : TypedInit(IK_IsAOpInit, IntRecTy::get()), CheckType(CheckType),
968 static IsAOpInit *get(RecTy *CheckType, Init *Expr);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]

Completed in 1147 milliseconds

1 2