Home
last modified time | relevance | path

Searched refs:SB (Results 1 – 25 of 625) sorted by relevance

12345678910>>...25

/external/llvm-project/llvm/unittests/DebugInfo/MSF/
DMSFCommonTest.cpp26 SuperBlock SB; in TEST() local
27 SB.FreeBlockMapBlock = 1; in TEST()
28 SB.BlockSize = 4096; in TEST()
31 L.SB = &SB; in TEST()
33 SB.NumBlocks = 12; in TEST()
35 SB.NumBlocks = SB.BlockSize; in TEST()
37 SB.NumBlocks = SB.BlockSize + 1; in TEST()
39 SB.NumBlocks = SB.BlockSize * 8; in TEST()
41 SB.NumBlocks = SB.BlockSize * 8 + 1; in TEST()
44 SB.NumBlocks = 12; in TEST()
[all …]
DMSFBuilderTest.cpp24 void initializeSimpleSuperBlock(msf::SuperBlock &SB) { in initializeSimpleSuperBlock() argument
25 initializeSuperBlock(SB); in initializeSimpleSuperBlock()
26 SB.NumBlocks = 1000; in initializeSimpleSuperBlock()
27 SB.NumDirectoryBytes = 8192; in initializeSimpleSuperBlock()
30 void initializeSuperBlock(msf::SuperBlock &SB) { in initializeSuperBlock() argument
31 ::memset(&SB, 0, sizeof(SB)); in initializeSuperBlock()
33 ::memcpy(SB.MagicBytes, msf::Magic, sizeof(msf::Magic)); in initializeSuperBlock()
34 SB.FreeBlockMapBlock = 1; in initializeSuperBlock()
35 SB.BlockMapAddr = 1; in initializeSuperBlock()
36 SB.BlockSize = 4096; in initializeSuperBlock()
[all …]
/external/llvm/test/Transforms/InstCombine/
D2004-11-27-SetCCForCastLargerAndConstant.ll15 define i1 @lt_signed_to_large_unsigned(i8 %SB) {
17 ; CHECK-NEXT: [[C1:%.*]] = icmp sgt i8 %SB, -1
20 %Y = sext i8 %SB to i32
42 define <2 x i1> @lt_signed_to_large_unsigned_vec(<2 x i8> %SB) {
44 ; CHECK-NEXT: [[Y:%.*]] = sext <2 x i8> %SB to <2 x i32>
48 %Y = sext <2 x i8> %SB to <2 x i32>
53 define i1 @lt_signed_to_large_signed(i8 %SB) {
57 %Y = sext i8 %SB to i32
62 define i1 @lt_signed_to_large_negative(i8 %SB) {
66 %Y = sext i8 %SB to i32
[all …]
/external/tcpdump/tests/
Dtelnet-iac-check-oobr.out2SB TERMINAL TYPE SEND SE, SB 0x7b 0xf5 0 0 0x1 0x1 0x8 0xa 0x7 0x1d 0xa8 0xd4 0x59 0x3c 0x88 0xa8 …
/external/llvm-project/llvm/lib/DebugInfo/MSF/
DMSFCommon.cpp19 Error llvm::msf::validateSuperBlock(const SuperBlock &SB) { in validateSuperBlock() argument
21 if (std::memcmp(SB.MagicBytes, Magic, sizeof(Magic)) != 0) in validateSuperBlock()
25 if (!isValidBlockSize(SB.BlockSize)) in validateSuperBlock()
30 if (SB.NumDirectoryBytes % sizeof(support::ulittle32_t) != 0) in validateSuperBlock()
37 bytesToBlocks(SB.NumDirectoryBytes, SB.BlockSize); in validateSuperBlock()
42 if (NumDirectoryBlocks > SB.BlockSize / sizeof(support::ulittle32_t)) in validateSuperBlock()
46 if (SB.BlockMapAddr == 0) in validateSuperBlock()
50 if (SB.BlockMapAddr >= SB.NumBlocks) in validateSuperBlock()
54 if (SB.FreeBlockMapBlock != 1 && SB.FreeBlockMapBlock != 2) in validateSuperBlock()
77 FL.Length = NumFpmIntervals * Msf.SB->BlockSize; in getFpmStreamLayout()
[all …]
DMSFBuilder.cpp251 SuperBlock *SB = Allocator.Allocate<SuperBlock>(); in generateLayout() local
253 L.SB = SB; in generateLayout()
255 std::memcpy(SB->MagicBytes, Magic, sizeof(Magic)); in generateLayout()
256 SB->BlockMapAddr = BlockMapAddr; in generateLayout()
257 SB->BlockSize = BlockSize; in generateLayout()
258 SB->NumDirectoryBytes = computeDirectoryByteSize(); in generateLayout()
259 SB->FreeBlockMapBlock = FreePageMap; in generateLayout()
260 SB->Unknown1 = Unknown1; in generateLayout()
262 uint32_t NumDirectoryBlocks = bytesToBlocks(SB->NumDirectoryBytes, BlockSize); in generateLayout()
284 SB->NumBlocks = FreeBlocks.size(); in generateLayout()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/MSF/
DMSFCommon.cpp19 Error llvm::msf::validateSuperBlock(const SuperBlock &SB) { in validateSuperBlock() argument
21 if (std::memcmp(SB.MagicBytes, Magic, sizeof(Magic)) != 0) in validateSuperBlock()
25 if (!isValidBlockSize(SB.BlockSize)) in validateSuperBlock()
30 if (SB.NumDirectoryBytes % sizeof(support::ulittle32_t) != 0) in validateSuperBlock()
37 bytesToBlocks(SB.NumDirectoryBytes, SB.BlockSize); in validateSuperBlock()
42 if (NumDirectoryBlocks > SB.BlockSize / sizeof(support::ulittle32_t)) in validateSuperBlock()
46 if (SB.BlockMapAddr == 0) in validateSuperBlock()
50 if (SB.BlockMapAddr >= SB.NumBlocks) in validateSuperBlock()
54 if (SB.FreeBlockMapBlock != 1 && SB.FreeBlockMapBlock != 2) in validateSuperBlock()
77 FL.Length = NumFpmIntervals * Msf.SB->BlockSize; in getFpmStreamLayout()
[all …]
DMSFBuilder.cpp251 SuperBlock *SB = Allocator.Allocate<SuperBlock>(); in generateLayout() local
253 L.SB = SB; in generateLayout()
255 std::memcpy(SB->MagicBytes, Magic, sizeof(Magic)); in generateLayout()
256 SB->BlockMapAddr = BlockMapAddr; in generateLayout()
257 SB->BlockSize = BlockSize; in generateLayout()
258 SB->NumDirectoryBytes = computeDirectoryByteSize(); in generateLayout()
259 SB->FreeBlockMapBlock = FreePageMap; in generateLayout()
260 SB->Unknown1 = Unknown1; in generateLayout()
262 uint32_t NumDirectoryBlocks = bytesToBlocks(SB->NumDirectoryBytes, BlockSize); in generateLayout()
284 SB->NumBlocks = FreeBlocks.size(); in generateLayout()
[all …]
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Collections.pas338 SB: TStringBuilder;
342 SB := TStringBuilder.Create;
346 SB.Append('{');
351 SB.Append(', ');
352 SB.AppendFormat('%d=%s', [E.Key, ListToString(E.Value)]);
355 SB.Append('}');
358 SB.Insert(0, 'null');
359 Result := SB.ToString;
361 SB.Free;
368 SB: TStringBuilder;
[all …]
/external/llvm-project/llvm/test/Transforms/InstCombine/
D2004-11-27-SetCCForCastLargerAndConstant.ll15 define i1 @lt_signed_to_large_unsigned(i8 %SB) {
17 ; CHECK-NEXT: [[C:%.*]] = icmp sgt i8 [[SB:%.*]], -1
20 %Y = sext i8 %SB to i32
42 define <2 x i1> @lt_signed_to_large_unsigned_vec(<2 x i8> %SB) {
44 ; CHECK-NEXT: [[Y:%.*]] = sext <2 x i8> [[SB:%.*]] to <2 x i32>
48 %Y = sext <2 x i8> %SB to <2 x i32>
53 define i1 @lt_signed_to_large_signed(i8 %SB) {
57 %Y = sext i8 %SB to i32
62 define i1 @lt_signed_to_large_negative(i8 %SB) {
66 %Y = sext i8 %SB to i32
[all …]
/external/llvm/lib/DebugInfo/PDB/Raw/
DPDBFile.cpp39 : Buffer(std::move(PdbFileBuffer)), SB(nullptr) {} in PDBFile()
43 uint32_t PDBFile::getBlockSize() const { return SB->BlockSize; } in getBlockSize()
45 uint32_t PDBFile::getUnknown0() const { return SB->Unknown0; } in getUnknown0()
47 uint32_t PDBFile::getBlockCount() const { return SB->NumBlocks; } in getBlockCount()
49 uint32_t PDBFile::getNumDirectoryBytes() const { return SB->NumDirectoryBytes; } in getNumDirectoryBytes()
51 uint32_t PDBFile::getBlockMapIndex() const { return SB->BlockMapAddr; } in getBlockMapIndex()
53 uint32_t PDBFile::getUnknown1() const { return SB->Unknown1; } in getUnknown1()
56 return bytesToBlocks(SB->NumDirectoryBytes, SB->BlockSize); in getNumDirectoryBlocks()
60 return (uint64_t)SB->BlockMapAddr * SB->BlockSize; in getBlockMapOffset()
105 if (auto EC = Reader.readObject(SB)) { in parseFileHeaders()
[all …]
/external/llvm/lib/Transforms/Utils/
DASanStackFrameLayout.cpp68 SmallVector<uint8_t, 64> &SB(Layout->ShadowBytes); in ComputeASanStackFrameLayout() local
69 SB.clear(); in ComputeASanStackFrameLayout()
73 SB.insert(SB.end(), Offset / Granularity, kAsanStackLeftRedzoneMagic); in ComputeASanStackFrameLayout()
89 SB.insert(SB.end(), Size / Granularity, 0); in ComputeASanStackFrameLayout()
91 SB.insert(SB.end(), Size % Granularity); in ComputeASanStackFrameLayout()
92 SB.insert(SB.end(), (SizeWithRedzone - Size) / Granularity, in ComputeASanStackFrameLayout()
100 SB.insert(SB.end(), ExtraRedzone / Granularity, in ComputeASanStackFrameLayout()
/external/llvm-project/llvm/lib/Transforms/Utils/
DASanStackFrameLayout.cpp119 SmallVector<uint8_t, 64> SB; in GetShadowBytes() local
120 SB.clear(); in GetShadowBytes()
122 SB.resize(Vars[0].Offset / Granularity, kAsanStackLeftRedzoneMagic); in GetShadowBytes()
124 SB.resize(Var.Offset / Granularity, kAsanStackMidRedzoneMagic); in GetShadowBytes()
126 SB.resize(SB.size() + Var.Size / Granularity, 0); in GetShadowBytes()
128 SB.push_back(Var.Size % Granularity); in GetShadowBytes()
130 SB.resize(Layout.FrameSize / Granularity, kAsanStackRightRedzoneMagic); in GetShadowBytes()
131 return SB; in GetShadowBytes()
137 SmallVector<uint8_t, 64> SB = GetShadowBytes(Vars, Layout); in GetShadowBytesAfterScope() local
145 std::fill(SB.begin() + Offset, SB.begin() + Offset + LifetimeShadowSize, in GetShadowBytesAfterScope()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DASanStackFrameLayout.cpp119 SmallVector<uint8_t, 64> SB; in GetShadowBytes() local
120 SB.clear(); in GetShadowBytes()
122 SB.resize(Vars[0].Offset / Granularity, kAsanStackLeftRedzoneMagic); in GetShadowBytes()
124 SB.resize(Var.Offset / Granularity, kAsanStackMidRedzoneMagic); in GetShadowBytes()
126 SB.resize(SB.size() + Var.Size / Granularity, 0); in GetShadowBytes()
128 SB.push_back(Var.Size % Granularity); in GetShadowBytes()
130 SB.resize(Layout.FrameSize / Granularity, kAsanStackRightRedzoneMagic); in GetShadowBytes()
131 return SB; in GetShadowBytes()
137 SmallVector<uint8_t, 64> SB = GetShadowBytes(Vars, Layout); in GetShadowBytesAfterScope() local
145 std::fill(SB.begin() + Offset, SB.begin() + Offset + LifetimeShadowSize, in GetShadowBytesAfterScope()
[all …]
/external/llvm-project/llvm/include/llvm/DebugInfo/MSF/
DMSFCommon.h55 assert(SB->FreeBlockMapBlock == 1 || SB->FreeBlockMapBlock == 2); in mainFpmBlock()
56 return SB->FreeBlockMapBlock; in mainFpmBlock()
64 const SuperBlock *SB = nullptr; member
117 return L.SB->BlockSize; in getFpmIntervalLength()
151 return getNumFpmIntervals(L.SB->BlockSize, L.SB->NumBlocks,
156 Error validateSuperBlock(const SuperBlock &SB);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/MSF/
DMSFCommon.h55 assert(SB->FreeBlockMapBlock == 1 || SB->FreeBlockMapBlock == 2); in mainFpmBlock()
56 return SB->FreeBlockMapBlock; in mainFpmBlock()
64 const SuperBlock *SB = nullptr; member
117 return L.SB->BlockSize; in getFpmIntervalLength()
151 return getNumFpmIntervals(L.SB->BlockSize, L.SB->NumBlocks,
156 Error validateSuperBlock(const SuperBlock &SB);
/external/llvm/test/CodeGen/Thumb/
Dldm-stm-base-materialization-thumb2.ll14 ; CHECK: movt [[SB:[rl0-9]+]], :upper16:a
16 ; CHECK: adds [[SB]], #4
18 ; CHECK-NEXT: stm{{(\.w)?}} [[SB]], {[[R1]], [[R2]], [[R3]], [[R4]], [[R5]], [[R6]]}
33 ; CHECK: movt [[SB:[rl0-9]+]], :upper16:a
35 ; CHECK: adds [[SB]], #4
37 ; CHECK-NEXT: stm{{(\.w)?}} [[SB]]!, {[[R1]], [[R2]], [[R3]]}
39 ; CHECK-NEXT: stm{{(\.w)?}} [[SB]], {[[R1]], [[R2]], [[R3]], [[R4]]}
54 ; CHECK: movt [[SB:[rl0-9]+]], :upper16:a
56 ; CHECK: adds [[SB]], #4
58 ; CHECK-NEXT: stm{{(\.w)?}} [[SB]]!, {[[R1]], [[R2]], [[R3]], [[R4]]}
[all …]
/external/llvm-project/llvm/test/CodeGen/Thumb/
Dldm-stm-base-materialization-thumb2.ll14 ; CHECK: movt [[SB:[rl0-9]+]], :upper16:a
16 ; CHECK: adds [[SB]], #4
18 ; CHECK-NEXT: stm{{(\.w)?}} [[SB]], {[[R1]], [[R2]], [[R3]], [[R4]], [[R5]], [[R6]]}
33 ; CHECK: movt [[SB:[rl0-9]+]], :upper16:a
35 ; CHECK: adds [[SB]], #4
37 ; CHECK-NEXT: stm{{(\.w)?}} [[SB]]!, {[[R1]], [[R2]], [[R3]]}
39 ; CHECK-NEXT: stm{{(\.w)?}} [[SB]], {[[R1]], [[R2]], [[R3]], [[R4]]}
54 ; CHECK: movt [[SB:[rl0-9]+]], :upper16:a
56 ; CHECK: adds [[SB]], #4
58 ; CHECK-NEXT: stm{{(\.w)?}} [[SB]]!, {[[R1]], [[R2]], [[R3]], [[R4]]}
[all …]
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DPDBFile.cpp55 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } in getBlockSize()
58 return ContainerLayout.SB->FreeBlockMapBlock; in getFreeBlockMapBlock()
62 return ContainerLayout.SB->NumBlocks; in getBlockCount()
66 return ContainerLayout.SB->NumDirectoryBytes; in getNumDirectoryBytes()
70 return ContainerLayout.SB->BlockMapAddr; in getBlockMapIndex()
73 uint32_t PDBFile::getUnknown1() const { return ContainerLayout.SB->Unknown1; } in getUnknown1()
76 return msf::bytesToBlocks(ContainerLayout.SB->NumDirectoryBytes, in getNumDirectoryBlocks()
77 ContainerLayout.SB->BlockSize); in getNumDirectoryBlocks()
81 return (uint64_t)ContainerLayout.SB->BlockMapAddr * in getBlockMapOffset()
82 ContainerLayout.SB->BlockSize; in getBlockMapOffset()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DPDBFile.cpp54 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } in getBlockSize()
57 return ContainerLayout.SB->FreeBlockMapBlock; in getFreeBlockMapBlock()
61 return ContainerLayout.SB->NumBlocks; in getBlockCount()
65 return ContainerLayout.SB->NumDirectoryBytes; in getNumDirectoryBytes()
69 return ContainerLayout.SB->BlockMapAddr; in getBlockMapIndex()
72 uint32_t PDBFile::getUnknown1() const { return ContainerLayout.SB->Unknown1; } in getUnknown1()
75 return msf::bytesToBlocks(ContainerLayout.SB->NumDirectoryBytes, in getNumDirectoryBlocks()
76 ContainerLayout.SB->BlockSize); in getNumDirectoryBlocks()
80 return (uint64_t)ContainerLayout.SB->BlockMapAddr * in getBlockMapOffset()
81 ContainerLayout.SB->BlockSize; in getBlockMapOffset()
[all …]
/external/llvm-project/lldb/docs/design/
Dsbapi.rst4 The SB APIs constitute the stable C++ API that lldb presents to external
10 The classes in the SB API's are all called SB<SomeName>, where SomeName is in
14 All the SB API classes are non-virtual, single inheritance classes. They should
15 only include SBDefines.h or other SB headers as needed. There should be no
20 or remove ivars without breaking binary compatibility. In some cases, the SB
25 is included in SBDefines.h. So if you need an SB class to wrap an lldb_private
27 opaque declaration in the SB classes .h file.
29 If the SB Class needs some state of its own, as well as the backing object,
30 don't include that as a direct ivar in the SB Class. Instead, make an Impl
31 class in the SB's .cpp file, and then make the SB object hold a shared or
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Darray100.frag48 struct SB {
53 SB bar9()
55 SB s;
59 void bar10(SB s) // okay
65 SB s1, s2;
69 SB initSb = s1; // ERROR
/external/deqp-deps/glslang/Test/
Darray100.frag48 struct SB {
53 SB bar9()
55 SB s;
59 void bar10(SB s) // okay
65 SB s1, s2;
69 SB initSb = s1; // ERROR
/external/arm-trusted-firmware/docs/plat/marvell/armada/misc/
Dmvebu-a8k-addr-map.rst31 …| | | | | +------- SB CFG Space |…
34 …| | | Control | | Windows +------| SB PCIe-0 - PCIe2 |…
37 …| | | | +------+ SB NAND |…
42 …| | Network Engine | | | | +------- SB SPI-0/SPI-1 |…
45 …| | SD/eMMC | | | | Lookup +------- SB Device Bus |…
/external/llvm-project/llvm/test/Instrumentation/MemorySanitizer/
Dbmi.ll27 ; CHECK-DAG: %[[SB:.*]] = load i32, {{.*}}@__msan_param_tls to i64), i64 8)
28 ; CHECK-DAG: %[[SB0:.*]] = icmp ne i32 %[[SB]], 0
43 ; CHECK-DAG: %[[SB:.*]] = load i64, {{.*}}@__msan_param_tls to i64), i64 8)
44 ; CHECK-DAG: %[[SB0:.*]] = icmp ne i64 %[[SB]], 0
60 ; CHECK-DAG: %[[SB:.*]] = load i32, {{.*}}@__msan_param_tls to i64), i64 8)
61 ; CHECK-DAG: %[[SB0:.*]] = icmp ne i32 %[[SB]], 0
76 ; CHECK-DAG: %[[SB:.*]] = load i64, {{.*}}@__msan_param_tls to i64), i64 8)
77 ; CHECK-DAG: %[[SB0:.*]] = icmp ne i64 %[[SB]], 0
93 ; CHECK-DAG: %[[SB:.*]] = load i32, {{.*}}@__msan_param_tls to i64), i64 8)
94 ; CHECK-DAG: %[[SB0:.*]] = icmp ne i32 %[[SB]], 0
[all …]

12345678910>>...25