Home
last modified time | relevance | path

Searched refs:isOrdered (Results 1 – 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDependenceGraphBuilder.cpp340 else if (D->isOrdered() && !D->isLoopIndependent()) { in createMemoryDependencyEdges()
DMemorySSA.cpp1719 static inline bool isOrdered(const Instruction *I) { in isOrdered() function
1758 DefCheck = isModSet(ModRef) || isOrdered(I); in createNewAccess()
1773 Def = isModSet(ModRef) || isOrdered(I); in createNewAccess()
DMemoryDependenceAnalysis.cpp944 auto isOrdered = [](Instruction *Inst) { in getNonLocalPointerDependency() local
952 if (isVolatile(QueryInst) || isOrdered(QueryInst)) { in getNonLocalPointerDependency()
DValueTracking.cpp4998 } else if (CmpInst::isOrdered(Pred)) { in matchSelectPattern()
DInstructionSimplify.cpp3546 assert((FCmpInst::isOrdered(Pred) || FCmpInst::isUnordered(Pred)) && in SimplifyFCmpInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DDependenceAnalysis.h132 bool isOrdered() const { return isOutput() || isFlow() || isAnti(); } in isOrdered() function
/third_party/skia/src/pathops/
DSkPathOpsCurve.h88 bool isOrdered() const { return fOrdered; } in isOrdered() function
DSkOpAngle.cpp338 if (this->fPart.isOrdered()) { in checkParallel()
344 if (rh->fPart.isOrdered()) { in checkParallel()
/third_party/flutter/skia/src/pathops/
DSkPathOpsCurve.h88 bool isOrdered() const { return fOrdered; } in isOrdered() function
DSkOpAngle.cpp338 if (this->fPart.isOrdered()) { in checkParallel()
344 if (rh->fPart.isOrdered()) { in checkParallel()
/third_party/typescript/tests/cases/compiler/
DcomplexRecursiveCollections.ts37 export function isOrdered(maybeOrdered: any): boolean;
361 function isOrdered(maybeOrdered: any): boolean;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopUnrollAndJam.cpp634 assert(D->isOrdered() && "Expected an output, flow or anti dep."); in checkDependencies()
/third_party/typescript/tests/baselines/reference/
DcomplexRecursiveCollections.js37 export function isOrdered(maybeOrdered: any): boolean;
361 function isOrdered(maybeOrdered: any): boolean;
DcomplexRecursiveCollections.errors.txt49 export function isOrdered(maybeOrdered: any): boolean;
373 function isOrdered(maybeOrdered: any): boolean;
DcomplexRecursiveCollections.types130 export function isOrdered(maybeOrdered: any): boolean;
131 >isOrdered : (maybeOrdered: any) => boolean
1490 function isOrdered(maybeOrdered: any): boolean;
1491 >isOrdered : (maybeOrdered: any) => boolean
DcomplexRecursiveCollections.symbols223 export function isOrdered(maybeOrdered: any): boolean;
224 >isOrdered : Symbol(isOrdered, Decl(immutable.ts, 11, 129))
2557 function isOrdered(maybeOrdered: any): boolean;
2558 >isOrdered : Symbol(isOrdered, Decl(immutable.ts, 335, 124))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopInterchange.cpp127 assert(D->isOrdered() && "Expected an output, flow or anti dep."); in populateDependencyMatrix()
DLoopFuse.cpp946 << (DepResult->isOrdered() ? "true" : "false") in dependencesAllowFusion()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstrTypes.h946 static bool isOrdered(Predicate predicate);
/third_party/sqlite/src/
Dsqlite3.c21349 Bool isOrdered:1; /* True if the table is not BTREE_UNORDERED */ member
90759 pCur->isOrdered = 1;
90806 pCx->isOrdered = pOrig->isOrdered;
90918 pCx->isOrdered = (pOp->p5!=BTREE_UNORDERED);
91149 assert( pC->isOrdered );
93017 assert( pC->isOrdered );
145249 i8 isOrdered; /* True if satisfies ORDER BY */
145309 i8 isOrdered; /* No. of ORDER BY terms satisfied. -1 for unknown */
153229 pNew->u.vtab.isOrdered = (i8)(pIdxInfo->orderByConsumed ?
153707 if( pLoop->u.vtab.isOrdered && (wctrlFlags & WHERE_DISTINCTBY)==0 ){
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstructions.cpp3721 bool CmpInst::isOrdered(Predicate predicate) { in isOrdered() function in CmpInst