Searched refs:BS (Results 51 - 75 of 93) sorted by relevance

1234

/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.cpp116 IndexType BS = B.start(), BE = B.end(); local
123 if (AS < BS) {
128 add(AS, BS, A.Fixed, false);
134 add(BS, AE, A.Fixed, false);
H A DHexagonSubtarget.cpp760 auto [BS, ES] = std::make_pair(std::begin(ScalarInts), std::end(ScalarInts));
763 auto FoundScalar = std::lower_bound(BS, ES, Scalar{Opc, 0}, CmpOpcode);
H A DHexagonVectorCombine.cpp361 friend raw_ostream &operator<<(raw_ostream &OS, const ByteSpan &BS);
412 raw_ostream &operator<<(raw_ostream &OS, const AlignVectors::ByteSpan &BS) { argument
413 OS << "ByteSpan[size=" << BS.size() << ", extent=" << BS.extent() << '\n';
414 for (const AlignVectors::ByteSpan::Block &B : BS)
/freebsd-current/contrib/ntp/sntp/libopts/
H A Dputshell.c75 case BS:
128 case BS: add_esc_ch('b'); break;
/freebsd-current/usr.sbin/kbdcontrol/
H A Dlex.l87 BS|bs { number = 8; return TNUM; }
/freebsd-current/usr.bin/col/
H A Dcol.c49 #define BS '\b' /* backspace */ macro
177 case BS: /* can't go back further */
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp266 for (const auto &BS : BodySamples)
267 for (const auto &TS : BS.second.getCallTargets())
/freebsd-current/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DXCOFF.cpp38 SMC_CASE(BS)
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600InstrInfo.h136 /// fits Read Port limitations in BS if available. Otherwise returns false
137 /// and undefined content in BS.
144 std::vector<BankSwizzle> &BS,
/freebsd-current/stand/efi/libefi/
H A Defipart.c157 status = BS->LocateDevicePath(&blkio_guid, &devp, &h);
362 status = BS->LocateHandle(ByProtocol, &blkio_guid, 0, &sz, hin);
367 status = BS->LocateHandle(ByProtocol, &blkio_guid, 0, &sz,
H A Defi_console.c424 status = BS->OpenProtocol(ST->ConsoleInHandle,
1398 status = BS->CheckEvent(coninex->WaitForKeyEx);
1405 status = BS->CheckEvent(conin->WaitForKey);
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp1356 const auto *BS = Layout.getBaseSymbol(S); local
1357 if (!BS)
1360 registerFunctionType(*cast<MCSymbolWasm>(BS));
1730 const auto *BS = Layout.getBaseSymbol(S); local
1731 if (!BS)
1734 const MCSymbolWasm *Base = cast<MCSymbolWasm>(BS);
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp522 JSONNodeDumper::createCXXBaseSpecifier(const CXXBaseSpecifier &BS) { argument
525 Ret["type"] = createQualType(BS.getType());
526 Ret["access"] = createAccessSpecifier(BS.getAccessSpecifier());
528 createAccessSpecifier(BS.getAccessSpecifierAsWritten());
529 if (BS.isVirtual())
531 if (BS.isPackExpansion())
H A DVTableBuilder.cpp3438 for (const CXXBaseSpecifier &BS : RD->bases()) {
3439 const CXXRecordDecl *Base = BS.getType()->getAsCXXRecordDecl();
3440 CharUnits NewOffset = BS.isVirtual()
3485 RD->bases_begin(), RD->bases_end(), [&](const CXXBaseSpecifier &BS) {
3486 return BS.getType()->getAsCXXRecordDecl() == Base;
/freebsd-current/contrib/byacc/test/yacc/
H A Dok_syntax1.tab.c173 #define BS 267 macro
282 "\"\\177\\177\\\\\\n\"","STR2","BELL","BS","NL","LF","CR","TAB","VT","UMINUS",0,
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaCUDA.cpp568 if (!llvm::all_of(ClassDecl->bases(), [&](const CXXBaseSpecifier &BS) {
569 if (CXXRecordDecl *RD = BS.getType()->getAsCXXRecordDecl())
H A DSemaExprMember.cpp651 for (const auto &BS : RD->bases()) {
652 if (const auto *BSTy = BS.getType()->getAs<RecordType>()) {
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp991 for (auto BS : RExp->Bases)
992 Res += getExpansionSize(BS->getType(), Context);
1012 for (auto BS : RExp->Bases)
1013 getExpandedTypes(BS->getType(), TI);
1056 for (const CXXBaseSpecifier *BS : RExp->Bases) {
1059 GetAddressOfBaseClass(This, Ty->getAsCXXRecordDecl(), &BS, &BS + 1,
1061 LValue SubLV = MakeAddrLValue(Base, BS->getType());
1064 ExpandTypeFromArgs(BS->getType(), SubLV, AI);
1113 for (const CXXBaseSpecifier *BS
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h166 llvm::json::Object createCXXBaseSpecifier(const CXXBaseSpecifier &BS);
/freebsd-current/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp712 Parser &P, OMPDeclareSimdDeclAttr::BranchStateTy &BS, ExprResult &SimdLen,
727 if (BS != OMPDeclareSimdDeclAttr::BS_Undefined && BS != Out) {
730 << OMPDeclareSimdDeclAttr::ConvertBranchStateTyToStr(BS) << BSRange;
733 BS = Out;
802 OMPDeclareSimdDeclAttr::BranchStateTy BS = local
812 parseDeclareSimdClauses(*this, BS, Simdlen, Uniforms, Aligneds,
820 Ptr, BS, Simdlen.get(), Uniforms, Aligneds, Alignments, Linears,
711 parseDeclareSimdClauses( Parser &P, OMPDeclareSimdDeclAttr::BranchStateTy &BS, ExprResult &SimdLen, SmallVectorImpl<Expr *> &Uniforms, SmallVectorImpl<Expr *> &Aligneds, SmallVectorImpl<Expr *> &Alignments, SmallVectorImpl<Expr *> &Linears, SmallVectorImpl<unsigned> &LinModifiers, SmallVectorImpl<Expr *> &Steps) argument
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h1051 for (const auto &BS : BodySamples)
1052 for (const auto &TS : BS.second.getCallTargets())
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h4448 bool isValidState() const override { return BS.isValidState(); }
4451 bool isAtFixpoint() const override { return BS.isAtFixpoint(); }
4459 return BS.indicatePessimisticFixpoint();
4464 return BS.indicateOptimisticFixpoint();
4469 BS ^= VS.BS;
4490 BooleanState BS; member in struct:ValueSimplifyStateType
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp642 LiveInterval::iterator BS = IntB.FindSegmentContaining(CopyIdx); local
643 if (BS == IntB.end()) return false;
644 VNInfo *BValNo = BS->valno;
681 if (ValS+1 != BS) return false;
685 SlotIndex FillerStart = ValS->end, FillerEnd = BS->start;
692 // [ValS.end, BS.begin) of either value number, then we merge the
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1062 BlockScheduling *BS = Iter.second.get();
1063 BS->clear();
3538 void scheduleBlock(BlockScheduling *BS);
5873 BlockScheduling &BS = *BSRef;
5876 BS.tryScheduleBundle(UniqueValues, this, S);
5879 BS.verify();
5883 assert((!BS.getScheduleData(VL0) ||
5884 !BS.getScheduleData(VL0)->isPartOfBundle()) &&
12944 void BoUpSLP::scheduleBlock(BlockScheduling *BS) {
12945 if (!BS
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp1855 const StringRef BS = Body;
1856 StringRef BS1 = BS;
1858 if (BS.front() == '\n')

Completed in 392 milliseconds

1234