| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | UninitializedValues.cpp | 280 void classify(const Expr *E, Class C); 322 void ClassifyRefs::classify(const Expr *E, Class C) { in classify() function in ClassifyRefs 326 classify(CO->getTrueExpr(), C); in classify() 327 classify(CO->getFalseExpr(), C); in classify() 332 classify(BCO->getFalseExpr(), C); in classify() 337 classify(OVE->getSourceExpr(), C); in classify() 344 classify(ME->getBase(), C); in classify() 353 classify(BO->getLHS(), C); in classify() 356 classify(BO->getRHS(), C); in classify() 384 classify(BO->getLHS(), Use); in VisitBinaryOperator() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/AST/Interp/ |
| H A D | ByteCodeExprGen.cpp | 110 std::optional<PrimType> FromT = classify(SubExpr->getType()); in VisitCastExpr() 111 std::optional<PrimType> ToT = classify(CE->getType()); in VisitCastExpr() 162 std::optional<PrimType> LT = classify(LHS->getType()); in VisitBinaryOperator() 163 std::optional<PrimType> RT = classify(RHS->getType()); in VisitBinaryOperator() 164 std::optional<PrimType> T = classify(BO->getType()); in VisitBinaryOperator() 242 std::optional<PrimType> LT = classify(LHS); in VisitPointerArithBinOp() 243 std::optional<PrimType> RT = classify(RHS); in VisitPointerArithBinOp() 282 if (std::optional<PrimType> T = classify(E)) in VisitImplicitValueInitExpr() 501 std::optional<PrimType> LT = classify(E->getLHS()->getType()); in VisitCompoundAssignOperator() 502 std::optional<PrimType> RT = classify(E->getRHS()->getType()); in VisitCompoundAssignOperator() [all …]
|
| H A D | ByteCodeExprGen.h | 107 std::optional<PrimType> classify(const Expr *E) const { in classify() function 108 return E->isGLValue() ? PT_Ptr : classify(E->getType()); in classify() 110 std::optional<PrimType> classify(QualType Ty) const { in classify() function 111 return Ctx.classify(Ty); in classify() 116 if (auto T = classify(Ty)) { in classifyPrim()
|
| H A D | Program.cpp | 189 if (auto T = Ctx.classify(Ty)) { in createGlobal() 292 if (std::optional<PrimType> T = Ctx.classify(FT)) { in getOrCreateRecord() 328 if (std::optional<PrimType> T = Ctx.classify(ElemTy)) { in createDescriptor() 355 if (std::optional<PrimType> T = Ctx.classify(ElemTy)) { in createDescriptor() 378 PrimType ElemTy = *Ctx.classify(CT->getElementType()); in createDescriptor()
|
| H A D | Context.cpp | 75 std::optional<PrimType> Context::classify(QualType T) const { in classify() function in Context 117 return classify(AT->getValueType()); in classify()
|
| H A D | EvalEmitter.cpp | 137 if (std::optional<PrimType> T = Ctx.classify(FieldTy)) { in emitRetValue() 159 if (std::optional<PrimType> T = Ctx.classify(FieldTy)) { in emitRetValue() 191 if (std::optional<PrimType> T = Ctx.classify(ElemTy)) { in emitRetValue()
|
| H A D | ByteCodeEmitter.cpp | 42 if (!Ty->isVoidType() && !Ctx.classify(Ty)) { in compileFunc() 62 PrimType Ty = Ctx.classify(PD->getType()).value_or(PT_Ptr); in compileFunc()
|
| H A D | Context.h | 62 std::optional<PrimType> classify(QualType T) const;
|
| H A D | ByteCodeStmtGen.cpp | 95 ReturnType = this->classify(F->getReturnType()); in visitFunc() 109 if (std::optional<PrimType> T = this->classify(InitExpr)) { in visitFunc()
|
| H A D | InterpFrame.cpp | 159 PrimType PrimTy = S.Ctx.classify(Ty).value_or(PT_Ptr); in describe()
|
| /openbsd-src/gnu/usr.bin/cvs/src/ |
| H A D | build_src.com | 8 $ CC classify.c 56 classify.obj,client.obj,commit.obj,create_adm.obj,cvsrc.obj,-
|
| H A D | Makefile.in | 120 classify.c \ 216 classify.$(OBJEXT) client.$(OBJEXT) commit.$(OBJEXT) \ 253 @AMDEP_TRUE@ $(DEPDIR)/classify.Po $(DEPDIR)/client.Po \ 415 @_am_include@ @_am_quote@$(DEPDIR)/classify.Po@_am_quote@
|
| H A D | Makefile.am | 36 classify.c \
|
| /openbsd-src/bin/ksh/ |
| H A D | vi.c | 88 #define is_bad(c) (classify[(c)&0x7f]&B_) 89 #define is_cmd(c) (classify[(c)&0x7f]&(M_|E_|C_|U_)) 90 #define is_move(c) (classify[(c)&0x7f]&M_) 91 #define is_extend(c) (classify[(c)&0x7f]&E_) 92 #define is_long(c) (classify[(c)&0x7f]&X_) 93 #define is_undoable(c) (!(classify[(c)&0x7f]&U_)) 94 #define is_srch(c) (classify[(c)&0x7f]&S_) 95 #define is_zerocount(c) (classify[(c)&0x7f]&Z_) 97 const unsigned char classify[128] = { variable
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 207 assert(Record::classify(*It) == Record::Func); in ParseCompileUnitAtIndex() 210 while (It != End && Record::classify(*It) == Record::Inline) in ParseCompileUnitAtIndex() 245 assert(Record::classify(*It) == Record::Func); in GetOrCreateFunction() 311 while (It != End && Record::classify(*It) == Record::Inline) { in ParseBlocksRecursive() 865 assert(Record::classify(*It) == Record::Func); in ParseLineTableAndSupportFiles() 868 if (Record::classify(*It) == Record::Inline) in ParseLineTableAndSupportFiles()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/ |
| H A D | 21_yamlpm_compat.t | 55 qr/CPAN::Meta::YAML failed to classify line '$str'/,
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/ |
| H A D | RISCVSchedule.td | 80 def WriteFClass16 : SchedWrite; // 16-bit floating point classify 81 def WriteFClass32 : SchedWrite; // 32-bit floating point classify 82 def WriteFClass64 : SchedWrite; // 64-bit floating point classify
|
| /openbsd-src/gnu/usr.bin/cvs/emx/ |
| H A D | Makefile.in | 84 ${cvs_srcdir}/classify.c \ 179 ${cvs_srcdir}/classify.o \
|
| H A D | Makefile | 84 ${cvs_srcdir}/classify.c \ 179 ${cvs_srcdir}/classify.o \
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | BugLifeCycle.rst | 55 should be added along with any other labels that help to classify the report, 77 * When able to do so, please add the appropriate labels to classify the bug,
|
| H A D | BugpointRedesign.md | 89 various strategies to classify the bug, which in turn run multiple optimizer
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | ObjectFileBreakpad.cpp | 152 std::optional<Record::Kind> next_section = Record::classify(line); in CreateSections()
|
| /openbsd-src/gnu/usr.bin/cvs/os2/ |
| H A D | Makefile.in | 101 ${cvs_srcdir}${SL}classify.c \ 185 ${cvs_srcdir}${SL}classify.obj \
|
| H A D | Makefile | 101 ${cvs_srcdir}${SL}classify.c \ 185 ${cvs_srcdir}${SL}classify.obj \
|
| H A D | watcom.mak | 63 $(cvs_srcdir)\classify.obj &
|