OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Storage
(Results
1 - 25
of
44
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
LookupResult.cpp
26
llvm::SmallString<64>
Storage
;
27
llvm::sys::path::append(
Storage
, Locations[Index].Dir,
29
Fullpath.assign(
Storage
.begin(),
Storage
.end());
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Any.h
62
:
Storage
(Other.
Storage
? Other.
Storage
->clone() : nullptr) {}
85
Storage
=
89
Any(Any &&Other) :
Storage
(std::move(Other.
Storage
)) {}
92
std::swap(
Storage
, Other.
Storage
);
97
Storage
= std::move(Other.
Storage
);
[
all
...]
Optional.h
34
///
Storage
for any type.
239
optional_detail::OptionalStorage<T>
Storage
;
247
constexpr Optional(const T &y) :
Storage
(in_place, y) {}
250
constexpr Optional(T &&y) :
Storage
(in_place, std::move(y)) {}
255
:
Storage
(in_place, std::forward<ArgTypes>(Args)...) {}
258
Storage
= std::move(y);
265
Storage
.emplace(std::forward<ArgTypes>(Args)...);
273
Storage
= y;
278
void reset() {
Storage
.reset(); }
280
constexpr const T *getPointer() const { return &
Storage
.getValue();
[
all
...]
PointerSumType.h
53
/// support by comparing the underlying
storage
of the pointer values. It
65
/// address of that internal
storage
. This is especially useful when building an
80
// when we *read* a value, we copy the underlying
storage
out to avoid relying
93
StorageT
Storage
;
104
Storage
.Value = reinterpret_cast<uintptr_t>(V) | N;
152
// Store the initial value of the pointer when read out of our
storage
.
157
Storage
.MinTagPointer = InitialPtr;
159
// out using the same underlying-
storage
read as above.
161
"Switching to typed
storage
changed the pointer returned!");
162
// Now we can correctly return an address to typed
storage
[
all
...]
StringExtras.h
254
SmallString<32>
Storage
;
255
StringRef S = T.toNullTerminatedStringRef(
Storage
);
APFloat.h
707
union
Storage
{
712
explicit
Storage
(IEEEFloat F, const fltSemantics &S);
713
explicit
Storage
(DoubleAPFloat F, const fltSemantics &S)
719
Storage
(const fltSemantics &Semantics, ArgTypes &&... Args) {
731
~
Storage
() {
743
Storage
(const
Storage
&RHS) {
755
Storage
(
Storage
&&RHS) {
767
Storage
&operator=(const Storage &RHS)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCSymbol.cpp
34
// space for the
storage
type and not the name pointer.
42
void *
Storage
= Ctx.allocate(Size, alignof(NameEntryStorageTy));
43
NameEntryStorageTy *Start = static_cast<NameEntryStorageTy*>(
Storage
);
/src/external/apache2/llvm/dist/llvm/lib/Support/
Chrono.cpp
26
struct tm
Storage
;
30
struct tm *LT = ::localtime_r(&OurTime, &
Storage
);
35
int Error = ::localtime_s(&
Storage
, &OurTime);
40
return
Storage
;
ItaniumManglingCanonicalizer.cpp
116
void *
Storage
=
118
NodeHeader *New = new (
Storage
) NodeHeader;
/src/external/apache2/llvm/dist/clang/include/clang/Lex/
ModuleLoader.h
49
llvm::PointerIntPair<Module *, 2, LoadResultKind>
Storage
;
52
ModuleLoadResult(Module *M) :
Storage
(M, Normal) {}
53
ModuleLoadResult(LoadResultKind Kind) :
Storage
(nullptr, Kind) {}
55
operator Module *() const { return
Storage
.getPointer(); }
59
bool isNormal() const { return
Storage
.getInt() == Normal; }
65
bool isMissingExpected() const { return
Storage
.getInt() == MissingExpected; }
69
bool isConfigMismatch() const { return
Storage
.getInt() == ConfigMismatch; }
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
SymbolSerializer.h
28
BumpPtrAllocator &
Storage
;
48
SymbolSerializer(BumpPtrAllocator &
Storage
, CodeViewContainer Container);
51
static CVSymbol writeOneSymbol(SymType &Sym, BumpPtrAllocator &
Storage
,
55
SymbolSerializer Serializer(
Storage
, Container);
DebugChecksumsSubsection.h
95
BumpPtrAllocator
Storage
;
/src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_buffer_queue.cc
63
unsigned char
Storage
[kCacheLineSize];
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ParentMapContext.h
93
llvm::AlignedCharArrayUnion<DynTypedNode, ArrayRef<DynTypedNode>>
Storage
;
98
new (&
Storage
) DynTypedNode(N);
102
new (&
Storage
) ArrayRef<DynTypedNode>(A);
107
return reinterpret_cast<const ArrayRef<DynTypedNode> *>(&
Storage
)
109
return reinterpret_cast<const DynTypedNode *>(&
Storage
);
114
return reinterpret_cast<const ArrayRef<DynTypedNode> *>(&
Storage
)->end();
115
return reinterpret_cast<const DynTypedNode *>(&
Storage
) + 1;
ASTTypeTraits.h
10
// that can be used to store an AST base node at runtime in the same
storage
in
251
/// the
storage
inside DynTypedNode. For those nodes, do not
254
return BaseConverter<T>::get(NodeKind, &
Storage
);
262
return BaseConverter<T>::getUnchecked(NodeKind, &
Storage
);
274
? *reinterpret_cast<void *const *>(&
Storage
)
396
static const T *get(ASTNodeKind NodeKind, const void *
Storage
) {
398
return &getUnchecked(NodeKind,
Storage
);
401
static const T &getUnchecked(ASTNodeKind NodeKind, const void *
Storage
) {
404
*reinterpret_cast<const void *const *>(
Storage
)));
409
new (&Result.
Storage
) const void *(&Node)
[
all
...]
DeclOpenMP.h
34
/// Get the clauses
storage
.
120
auto **
Storage
= reinterpret_cast<Expr **>(Data->getChildren().data());
121
return llvm::makeArrayRef(
Storage
, Data->getNumChildren());
125
auto **
Storage
= reinterpret_cast<Expr **>(Data->getChildren().data());
126
return llvm::makeMutableArrayRef(
Storage
, Data->getNumChildren());
483
auto **
Storage
= reinterpret_cast<Expr **>(Data->getChildren().data());
484
return llvm::makeArrayRef(
Storage
, Data->getNumChildren());
488
auto **
Storage
= reinterpret_cast<Expr **>(Data->getChildren().data());
489
return llvm::makeMutableArrayRef(
Storage
, Data->getNumChildren());
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Minidump.h
110
MemoryInfoIterator(ArrayRef<uint8_t>
Storage
, size_t Stride)
111
:
Storage
(
Storage
), Stride(Stride) {
112
assert(
Storage
.size() % Stride == 0);
116
return
Storage
.size() == R.
Storage
.size();
120
assert(
Storage
.size() >= sizeof(minidump::MemoryInfo));
121
return *reinterpret_cast<const minidump::MemoryInfo *>(
Storage
.data());
125
Storage
=
Storage
.drop_front(Stride)
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-account.h
40
uint32_t
Storage
= 0;
/src/external/apache2/llvm/dist/llvm/utils/yaml-bench/
YAMLBench.cpp
95
SmallString<32>
Storage
;
96
StringRef Val = sn->getValue(
Storage
);
/src/external/apache2/llvm/dist/clang/include/clang/Frontend/
PrecompiledPreamble.h
131
PrecompiledPreamble(PCHStorage
Storage
, std::vector<char> PreambleBytes,
201
llvm::AlignedCharArrayUnion<TempPCHFile, InMemoryPreamble>
Storage
= {};
240
///
Storage
is accessible to clang. This method is an implementation detail of
243
setupPreambleStorage(const PCHStorage &
Storage
,
248
PCHStorage
Storage
;
/src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Tree.cpp
258
std::string
Storage
;
259
llvm::raw_string_ostream OS(
Storage
);
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp
192
// An NodeGroup's
storage
type is actually very much like a TinyPtrVector:
199
// 2. The group is empty, in which case the
storage
value is null.
214
GroupStorage &
Storage
= reinterpret_cast<GroupStorage&>(P);
215
assert(
Storage
.is<ExplodedNode *>());
216
Storage
= node;
217
assert(
Storage
.is<ExplodedNode *>());
223
GroupStorage &
Storage
= reinterpret_cast<GroupStorage&>(P);
224
if (
Storage
.isNull()) {
225
Storage
= N;
226
assert(
Storage
.is<ExplodedNode *>())
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Tooling/
JSONCompilationDatabase.cpp
303
SmallString<1024>
Storage
;
306
Arguments = unescapeCommandLine(Syntax, Nodes[0]->getValue(
Storage
));
309
Arguments.push_back(std::string(Node->getValue(
Storage
)));
/src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MinidumpYAML.cpp
171
FixedSizeHex(uint8_t (&
Storage
)[N]) :
Storage
(
Storage
) {}
173
uint8_t (&
Storage
)[N];
181
OS << toHex(makeArrayRef(Fixed.
Storage
));
191
copy(fromHex(Scalar), Fixed.
Storage
);
208
FixedSizeString(char (&
Storage
)[N]) :
Storage
(
Storage
) {}
210
char (&
Storage
)[N]
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-ifs/
llvm-ifs.cpp
270
SmallString<0>
Storage
;
271
Storage
.clear();
272
raw_svector_ostream OS(
Storage
);
Completed in 27 milliseconds
1
2
Indexes created Fri Apr 17 00:22:50 UTC 2026