Searched refs:CR (Results 1 - 25 of 86) sorted by relevance

1234

/freebsd-11-stable/gnu/usr.bin/groff/font/devhtml/
H A DMakefile4 FONTS= R I B BI CR CI CB CBI S
/freebsd-11-stable/contrib/groff/font/devX100/
H A DMakefile.sub2 DEVFILES=DESC TR TI TB TBI CR CI CB CBI HR HI HB HBI NR NI NB NBI S
/freebsd-11-stable/contrib/groff/font/devX100-12/
H A DMakefile.sub2 DEVFILES=DESC TR TI TB TBI CR CI CB CBI HR HI HB HBI NR NI NB NBI S
/freebsd-11-stable/contrib/groff/font/devX75/
H A DMakefile.sub2 DEVFILES=DESC TR TI TB TBI CR CI CB CBI HR HI HB HBI NR NI NB NBI S
/freebsd-11-stable/contrib/groff/font/devX75-12/
H A DMakefile.sub2 DEVFILES=DESC TR TI TB TBI CR CI CB CBI HR HI HB HBI NR NI NB NBI S
/freebsd-11-stable/contrib/byacc/test/btyacc/
H A Dok_syntax1.tab.h16 #define CR 270 macro
/freebsd-11-stable/contrib/byacc/test/yacc/
H A Dok_syntax1.tab.h13 #define CR 270 macro
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp78 const ConstantRange &CR) {
79 if (CR.isEmptySet())
80 return CR;
82 uint32_t W = CR.getBitWidth();
87 return CR;
89 if (CR.isSingleElement())
90 return ConstantRange(CR.getUpper(), CR.getLower());
93 APInt UMax(CR.getUnsignedMax());
99 APInt SMax(CR
77 makeAllowedICmpRegion(CmpInst::Predicate Pred, const ConstantRange &CR) argument
127 makeSatisfyingICmpRegion(CmpInst::Predicate Pred, const ConstantRange &CR) argument
447 intersectWith(const ConstantRange &CR, PreferredRangeType Type) const argument
553 unionWith(const ConstantRange &CR, PreferredRangeType Type) const argument
[all...]
/freebsd-11-stable/contrib/ntp/include/
H A Dascii.h54 #define CR 13 macro
/freebsd-11-stable/gnu/usr.bin/groff/font/devlbp/
H A DMakefile6 TB TBI TI TR CR CB CI ER EB EI
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.cpp24 for (auto &CR : Function.CountedRegions) {
25 if (CR.Kind != CounterMappingRegion::CodeRegion)
28 if (CR.ExecutionCount != 0)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h204 bool contains(const ConstantRange &CR) const;
224 /// Compare set size of this range with the range CR.
225 bool isSizeStrictlySmallerThan(const ConstantRange &CR) const;
249 bool operator==(const ConstantRange &CR) const {
250 return Lower == CR.Lower && Upper == CR.Upper;
252 bool operator!=(const ConstantRange &CR) const {
253 return !operator==(CR);
261 ConstantRange difference(const ConstantRange &CR) const;
277 ConstantRange intersectWith(const ConstantRange &CR,
493 operator <<(raw_ostream &OS, const ConstantRange &CR) argument
[all...]
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dppc-opc.c194 #define CR BT + 1
198 #define CRB CR + 1
622 in BO field, the "a" bit is 00010 for branch on CR(BI) and 01000
2318 { "blt-", BBOCB(16,BOT,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2319 { "blt+", BBOCB(16,BOT,CBLT,0,0), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2320 { "blt", BBOCB(16,BOT,CBLT,0,0), BBOATCB_MASK, COM, { CR, BD } },
2321 { "bltl-", BBOCB(16,BOT,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDM } },
2322 { "bltl+", BBOCB(16,BOT,CBLT,0,1), BBOATCB_MASK, PPCCOM, { CR, BDP } },
2323 { "bltl", BBOCB(16,BOT,CBLT,0,1), BBOATCB_MASK, COM, { CR, BD } },
2324 { "blta-", BBOCB(16,BOT,CBLT,1,0), BBOATCB_MASK, PPCCOM, { CR, BDM
192 #define CR macro
[all...]
/freebsd-11-stable/lib/libc/net/
H A Dnslexer.l56 CR \n
65 \\{CR} ; /* allow continuation */
67 {CR} return NL;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DDJB.cpp43 ConversionResult CR = ConvertUTF32toUTF8(&Begin32, &C + 1, &Begin8, local
45 assert(CR == conversionOK && "Case folding produced invalid char?");
46 (void)CR;
H A DConvertUTFWrapper.cpp70 ConversionResult CR = ConvertUTF32toUTF8(&SourceStart, SourceEnd, local
73 if (CR != conversionOK)
120 ConversionResult CR = local
122 assert(CR != targetExhausted);
124 if (CR != conversionOK) {
165 ConversionResult CR = local
167 assert(CR != targetExhausted);
169 if (CR != conversionOK) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp466 for (const auto &CR : enumerate(Regions)) {
467 auto CurStartLoc = CR.value().startLoc();
481 bool GapRegion = CR.value().Kind == CounterMappingRegion::GapRegion;
484 if (CurStartLoc == CR.value().endLoc()) {
487 const bool Skipped = (CR.index() + 1) == Regions.size();
488 startSegment(ActiveRegions.empty() ? CR.value() : *ActiveRegions.back(),
492 if (CR.index() + 1 == Regions.size() ||
493 CurStartLoc != Regions[CR.index() + 1].startLoc()) {
496 startSegment(CR.value(), CurStartLoc, !GapRegion);
500 ActiveRegions.push_back(&CR
[all...]
/freebsd-11-stable/contrib/groff/font/devhtml/
H A DMakefile.sub2 PROTOFONTS=R I B BI CR CI CB CBI
19 -e "/^internalname/s/CR/4/" \
/freebsd-11-stable/contrib/groff/font/devlbp/
H A DMakefile.sub7 CR CB CI \
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DTpiHashing.h21 explicit TagRecordHash(codeview::ClassRecord CR, uint32_t Full, argument
23 : FullRecordHash(Full), ForwardDeclHash(Forward), Class(std::move(CR)) {
/freebsd-11-stable/gnu/usr.bin/groff/font/devlj4/
H A DMakefile8 ALBB ALBR AOB AOI AOR CB CBI CI CR GB GBI GI GR \
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueLattice.h140 static ValueLatticeElement getRange(ConstantRange CR) { argument
142 Res.markConstantRange(std::move(CR));
348 const auto &CR = getConstantRange(); local
350 if (ConstantRange::makeSatisfyingICmpRegion(Pred, OtherCR).contains(CR))
354 .contains(CR))
/freebsd-11-stable/sys/contrib/edk2/Include/Library/
H A DDebugLib.h499 with a description of "CR has a bad signature" and Record is returned.
520 #define CR(Record, TYPE, Field, TestSignature) \ macro
522 (TYPE *) (_ASSERT (CR has Bad Signature), Record) : \
525 #define CR(Record, TYPE, Field, TestSignature) \ macro
/freebsd-11-stable/contrib/groff/font/devlj4/
H A DMakefile.sub8 CB CBI CI CR \
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStackAddrEscapeChecker.cpp77 if (const auto *CR = dyn_cast<CompoundLiteralRegion>(R)) {
78 const CompoundLiteralExpr *CL = CR->getLiteralExpr();

Completed in 195 milliseconds

1234