OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StorageType
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Bitfields.h
156
template <typename Bitfield, typename
StorageType
> struct Impl {
157
static_assert(std::is_unsigned<
StorageType
>::value,
161
using BP = BitPatterns<
StorageType
, Bitfield::Bits>;
163
static constexpr size_t StorageBits = sizeof(
StorageType
) * CHAR_BIT;
166
static constexpr
StorageType
Mask = BP::Umax << Bitfield::Shift;
170
static void update(
StorageType
&Packed, IntegerType UserValue) {
171
const
StorageType
StorageValue = C::pack(UserValue, Bitfield::UserMaxValue);
178
static IntegerType extract(
StorageType
Packed) {
179
const
StorageType
StorageValue = (Packed & Mask) >> Bitfield::Shift;
185
static
StorageType
test(StorageType Packed) { return Packed & Mask;
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/IR/
MetadataImpl.h
28
template <class T> T *MDNode::storeImpl(T *N,
StorageType
Storage) {
42
T *MDNode::storeImpl(T *N,
StorageType
Storage, StoreT &Store) {
DebugInfoMetadata.cpp
36
DILocation::DILocation(LLVMContext &C,
StorageType
Storage, unsigned Line,
61
StorageType
Storage, bool ShouldCreate) {
287
StorageType
Storage, bool ShouldCreate) {
343
StorageType
Storage, bool ShouldCreate) {
353
int64_t Lo,
StorageType
Storage,
363
StorageType
Storage, bool ShouldCreate) {
456
StorageType
Storage,
533
StorageType
Storage, bool ShouldCreate) {
543
DIFlags Flags,
StorageType
Storage,
570
unsigned Encoding,
StorageType
Storage
[
all
...]
Metadata.cpp
519
MDNode::MDNode(LLVMContext &Context, unsigned ID,
StorageType
Storage,
826
StorageType
Storage, bool ShouldCreate) {
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugInfoMetadata.h
132
DINode(LLVMContext &C, unsigned ID,
StorageType
Storage, unsigned Tag,
229
GenericDINode(LLVMContext &C,
StorageType
Storage, unsigned Hash,
242
StorageType
Storage, bool ShouldCreate = true) {
249
StorageType
Storage, bool ShouldCreate = true);
300
DISubrange(LLVMContext &C,
StorageType
Storage, ArrayRef<Metadata *> Ops)
306
int64_t LowerBound,
StorageType
Storage,
310
int64_t LowerBound,
StorageType
Storage,
315
Metadata *Stride,
StorageType
Storage,
366
DIGenericSubrange(LLVMContext &C,
StorageType
Storage,
375
Metadata *Stride,
StorageType
Storage
[
all
...]
Metadata.h
70
enum
StorageType
{ Uniqued, Distinct, Temporary };
86
Metadata(unsigned ID,
StorageType
Storage)
907
MDNode(LLVMContext &Context, unsigned ID,
StorageType
Storage,
1044
static T *storeImpl(T *N,
StorageType
Storage, StoreT &Store);
1045
template <class T> static T *storeImpl(T *N,
StorageType
Storage);
1143
MDTuple(LLVMContext &C,
StorageType
Storage, unsigned Hash,
1155
StorageType
Storage, bool ShouldCreate = true);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp
182
llvm::Type *
StorageType
);
239
const FieldDecl *FD, CharUnits StartOffset, llvm::Type *
StorageType
) {
244
Info.StorageSize = (unsigned)DataLayout.getTypeAllocSizeInBits(
StorageType
);
313
llvm::Type *
StorageType
= nullptr;
344
StorageType
= FieldType;
352
if (!
StorageType
||
353
getAlignment(FieldType) > getAlignment(
StorageType
) ||
354
(getAlignment(FieldType) == getAlignment(
StorageType
) &&
355
getSize(FieldType) > getSize(
StorageType
)))
356
StorageType
= FieldType
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/AST/
TemplateName.h
193
using
StorageType
=
197
StorageType
Storage;
/src/external/apache2/llvm/dist/clang/lib/AST/
TemplateName.cpp
65
Storage =
StorageType
::getFromOpaqueValue(Ptr);
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
RDFGraph.h
698
// Pos-1 is the index in the
StorageType
object that corresponds to
719
using
StorageType
= std::vector<value_type>;
721
bool isDelimiter(const
StorageType
::value_type &P, NodeId N = 0) const {
728
StorageType
Stack;
/src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangAttrEmitter.cpp
743
std::string
StorageType
= std::string(getStorageType(getType()));
745
if (
StorageType
!= getType()) {
747
OS << " SmallVector<" <<
StorageType
<< ", 4> "
757
if (
StorageType
!= getType()) {
/src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h
1865
typedef Functor
StorageType
;
1879
typedef ResType(*
StorageType
)(ArgType);
1907
typedef typename CallableTraits<Callable>::
StorageType
CallableStorageType;
Completed in 84 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026