Searched refs:SB (Results 1 - 25 of 107) sorted by relevance

12345

/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMSFCommon.cpp19 Error llvm::msf::validateSuperBlock(const SuperBlock &SB) { argument
21 if (std::memcmp(SB.MagicBytes, Magic, sizeof(Magic)) != 0)
25 if (!isValidBlockSize(SB.BlockSize))
30 if (SB.NumDirectoryBytes % sizeof(support::ulittle32_t) != 0)
37 bytesToBlocks(SB.NumDirectoryBytes, SB.BlockSize);
42 if (NumDirectoryBlocks > SB.BlockSize / sizeof(support::ulittle32_t))
46 if (SB.BlockMapAddr == 0)
50 if (SB.BlockMapAddr >= SB
[all...]
H A DMSFBuilder.cpp254 SuperBlock *SB = Allocator.Allocate<SuperBlock>(); local
256 L.SB = SB;
258 std::memcpy(SB->MagicBytes, Magic, sizeof(Magic));
259 SB->BlockMapAddr = BlockMapAddr;
260 SB->BlockSize = BlockSize;
261 SB->NumDirectoryBytes = computeDirectoryByteSize();
262 SB->FreeBlockMapBlock = FreePageMap;
263 SB->Unknown1 = Unknown1;
265 uint32_t NumDirectoryBlocks = bytesToBlocks(SB
[all...]
H A DMappedBlockStream.cpp65 Layout.SB->BlockSize, SL, MsfData, Allocator);
74 SL.Length = Layout.SB->NumDirectoryBytes;
75 return createStream(Layout.SB->BlockSize, SL, MsfData, Allocator);
83 return createStream(Layout.SB->BlockSize, SL, MsfData, Allocator);
332 return createStream(Layout.SB->BlockSize, SL, MsfData, Allocator);
341 SL.Length = Layout.SB->NumDirectoryBytes;
342 return createStream(Layout.SB->BlockSize, SL, MsfData, Allocator);
361 createStream(Layout.SB->BlockSize, FullLayout, MsfData, Allocator);
364 std::vector<uint8_t> InitData(Layout.SB->BlockSize, 0xFF);
368 return createStream(Layout.SB
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectWriter.cpp30 const MCSymbol &SB = B->getSymbol(); local
31 assert(!SA.isUndefined() && !SB.isUndefined());
32 if (!SA.getFragment() || !SB.getFragment())
35 return isSymbolRefDifferenceFullyResolvedImpl(Asm, SA, SB, InSet);
/freebsd-current/contrib/bmake/
H A Dimport.sh60 SB=${SB:-`dirname $here`}
72 mkdir -p $SB/tmp
84 post=$SB/tmp/bmake-post.sh
112 gen_import_F > $SB/tmp/bmake-import.F
113 $GIT diff --staged > $SB/tmp/bmake-import.diff
114 $PAGER $SB/tmp/bmake-import.F $SB/tmp/bmake-import.diff
118 echo "Edit $SB/tmp/bmake-import.F as needed, then:"
119 echo "$GIT commit -F $SB/tm
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DASanStackFrameLayout.cpp118 SmallVector<uint8_t, 64> SB; local
119 SB.clear();
121 SB.resize(Vars[0].Offset / Granularity, kAsanStackLeftRedzoneMagic);
123 SB.resize(Var.Offset / Granularity, kAsanStackMidRedzoneMagic);
125 SB.resize(SB.size() + Var.Size / Granularity, 0);
127 SB.push_back(Var.Size % Granularity);
129 SB.resize(Layout.FrameSize / Granularity, kAsanStackRightRedzoneMagic);
130 return SB;
136 SmallVector<uint8_t, 64> SB local
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMSFCommon.h55 assert(SB->FreeBlockMapBlock == 1 || SB->FreeBlockMapBlock == 2);
56 return SB->FreeBlockMapBlock;
64 const SuperBlock *SB = nullptr; member in struct:llvm::msf::MSFLayout
140 return L.SB->BlockSize;
174 return getNumFpmIntervals(L.SB->BlockSize, L.SB->NumBlocks,
179 Error validateSuperBlock(const SuperBlock &SB);
/freebsd-current/contrib/bmake/mk/
H A Dsrctop.mk19 # if using mk(1) SB will be set.
20 .ifdef SB
21 .if ${.CURDIR:S,${SB},,} != ${.CURDIR}
22 # we are actually within SB
25 .elif exists(${SB}/src)
26 SRCTOP:= ${SB}/src
28 SRCTOP:= ${SB}
H A Dwhats.mk42 SB ?= ${SRCTOP:H} macro
43 SB_LOCATION ?= ${HOST}:${SB}
45 WHAT_LOCATION ?= ${.OBJDIR:S,${SB},${SB_LOCATION},}
H A Dmeta2deps.sh7 # meta2deps.sh SB="SB" "meta" ...
46 # Any "path" which lies outside of the sandbox "SB" is generally
49 # The output, is a set of absolute paths with "SB" like:
52 # $SB/obj-i386/bsd/include
53 # $SB/obj-i386/bsd/lib/csu/i386
54 # $SB/obj-i386/bsd/lib/libc
55 # $SB/src/bsd/include
56 # $SB/src/bsd/sys/i386/include
57 # $SB/sr
[all...]
H A Dsys.clean-env.mk68 SB \
97 _srctop := ${SRCTOP:U${SB_SRC:U${SB}/src}}
98 _objroot := ${OBJROOT:U${SB_OBJROOT:U${SB}/${SB_OBJPREFIX}}}
/freebsd-current/crypto/heimdal/appl/telnet/telnetd/
H A Dtermstat.c58 IAC, SB, TELOPT_LFLOW,
65 IAC, SB, TELOPT_LFLOW,
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp54 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; }
57 return ContainerLayout.SB->FreeBlockMapBlock;
61 return ContainerLayout.SB->NumBlocks;
65 return ContainerLayout.SB->NumDirectoryBytes;
69 return ContainerLayout.SB->BlockMapAddr;
72 uint32_t PDBFile::getUnknown1() const { return ContainerLayout.SB->Unknown1; }
75 return msf::bytesToBlocks(ContainerLayout.SB->NumDirectoryBytes,
76 ContainerLayout.SB->BlockSize);
80 return (uint64_t)ContainerLayout.SB->BlockMapAddr *
81 ContainerLayout.SB
124 const msf::SuperBlock *SB = nullptr; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DObjCARCAliasAnalysis.cpp51 const Value *SB = GetRCIdentityRoot(LocB.Ptr); local
54 MemoryLocation(SB, LocB.Size, LocB.AATags), AAQI, nullptr);
61 const Value *UB = GetUnderlyingObjCPtr(SB);
62 if (UA != SA || UB != SB) {
/freebsd-current/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSimpleConstraintManager.h28 SimpleConstraintManager(ExprEngine *exprengine, SValBuilder &SB) argument
29 : EE(exprengine), SVB(SB) {}
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.cpp1719 void SIRegisterInfo::buildVGPRSpillLoadStore(SGPRSpillBuilder &SB, int Index, argument
1723 MachineFrameInfo &FrameInfo = SB.MF.getFrameInfo();
1727 FrameInfo.isFixedObjectIndex(Index) && hasBasePointer(SB.MF)
1729 : getFrameRegister(SB.MF);
1732 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SB.MF, Index);
1733 MachineMemOperand *MMO = SB.MF.getMachineMemOperand(
1735 SB.EltSize, Alignment);
1740 buildSpillLoadStore(*SB.MBB, SB.MI, SB
[all...]
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPdbYaml.cpp124 void MappingTraits<msf::SuperBlock>::mapping(IO &IO, msf::SuperBlock &SB) { argument
126 ::memcpy(SB.MagicBytes, msf::Magic, sizeof(msf::Magic));
130 IO.mapOptional("BlockSize", SB.BlockSize, u32(4096U));
131 IO.mapOptional("FreeBlockMap", SB.FreeBlockMapBlock, u32(0U));
132 IO.mapOptional("NumBlocks", SB.NumBlocks, u32(0U));
133 IO.mapOptional("NumDirectoryBytes", SB.NumDirectoryBytes, u32(0U));
134 IO.mapOptional("Unknown1", SB.Unknown1, u32(0U));
135 IO.mapOptional("BlockMapAddr", SB.BlockMapAddr, u32(0U));
138 void MappingTraits<StreamBlockList>::mapping(IO &IO, StreamBlockList &SB) { argument
139 IO.mapRequired("Stream", SB
[all...]
H A DExplainOutputStyle.cpp161 uint32_t(File.pdb().getMsfLayout().SB->BlockSize));
165 uint32_t(File.pdb().getMsfLayout().SB->FreeBlockMapBlock));
169 uint32_t(File.pdb().getMsfLayout().SB->NumBlocks));
173 uint32_t(File.pdb().getMsfLayout().SB->NumDirectoryBytes));
177 uint32_t(File.pdb().getMsfLayout().SB->Unknown1));
181 uint32_t(File.pdb().getMsfLayout().SB->BlockMapAddr));
282 StreamOff, uint32_t(Layout.SB->NumDirectoryBytes),
283 uint32_t(StreamOff > Layout.SB->NumDirectoryBytes)
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysis.cpp45 if (const SelectInst *SB = dyn_cast<SelectInst>(B))
46 if (A->getCondition() == SB->getCondition())
47 return related(A->getTrueValue(), SB->getTrueValue()) ||
48 related(A->getFalseValue(), SB->getFalseValue());
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_div_impl.inc341 // Now, a/b - 4*P * 2^-W < q < a/b for q=<quotient_UQ1:dummy> in UQ1.(SB+1+W).
343 // quotient_UQ1 is in [0.5, 2.0) as UQ1.(SB+1),
344 // adjust it to be in [1.0, 2.0) as UQ1.SB.
347 // Highest bit is 0, so just reinterpret quotient_UQ1 as UQ1.SB,
353 // Highest bit is 1 (the UQ1.(SB+1) value is in [1, 2)), convert it
354 // to UQ1.SB by right shifting by 1. Least significant bit is omitted.
362 // Now, q cannot be greater than a/b and can differ by at most 8*P * 2^-W + 2^-SB
363 // Each NextAfter() increments the floating point value by at least 2^-SB
365 // Different cases (<---> is of 2^-SB length, * = a/b that is shown as a midpoint):
371 // To require at most one NextAfter(), an error should be less than 1.5 * 2^-SB
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonEarlyIfConv.cpp233 MachineBasicBlock *SB = *B->succ_begin();
234 MachineLoop *L = MLI->getLoopFor(SB);
235 return L && SB == L->getHeader() && MDT->dominates(B, SB);
574 MachineBasicBlock *SB = *FP.TrueB->succ_begin(); local
575 TotalPh += computePhiCost(SB, FP);
576 PredDefs += countPredicateDefs(SB);
579 MachineBasicBlock *SB = *FP.FalseB->succ_begin(); local
580 TotalPh += computePhiCost(SB, FP);
581 PredDefs += countPredicateDefs(SB);
614 MachineBasicBlock *SB = I->getBlock(); local
966 MachineBasicBlock *SB = I->getBlock(); local
[all...]
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dargon2-encoding.c261 #define SB(buf, len) \ macro
296 SB(ctx->salt, ctx->saltlen);
299 SB(ctx->out, ctx->outlen);
304 #undef SB macro
/freebsd-current/share/mk/
H A Dmeta2deps.sh7 # meta2deps.sh SB="SB" "meta" ...
46 # Any "path" which lies outside of the sandbox "SB" is generally
49 # The output, is a set of absolute paths with "SB" like:
52 # $SB/obj-i386/bsd/include
53 # $SB/obj-i386/bsd/lib/csu/i386
54 # $SB/obj-i386/bsd/lib/libc
55 # $SB/src/bsd/include
56 # $SB/src/bsd/sys/i386/include
57 # $SB/sr
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp176 const MCSymbol *SB = &B->getSymbol(); local
178 if (!SB->getFragment()) {
188 FixedValue -= Writer->getSectionAddress(SB->getFragment()->getParent());
291 const MCSymbol *SB = &B->getSymbol(); local
293 if (!SB->getFragment()) {
303 FixedValue -= Writer->getSectionAddress(SB->getFragment()->getParent());
/freebsd-current/contrib/tcpdump/
H A Dprint-telnet.c72 #define SB 250 /* interpret as subnegotiation */ macro
93 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
416 case SB:
426 if (c != SB)
428 /* IAC SB .... IAC SE */

Completed in 308 milliseconds

12345