Home
last modified time | relevance | path

Searched refs:InitMap (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/clang/lib/AST/Interp/
DPointer.cpp142 InitMap *Map = getInitMap(); in isInitialized()
145 if (Map == (InitMap *)-1) in isInitialized()
160 InitMap *&Map = getInitMap(); in initialize()
161 if (Map == (InitMap *)-1) in initialize()
164 Map = InitMap::allocate(Desc->getNumElems()); in initialize()
167 Map = (InitMap *)-1; in initialize()
DDescriptor.cpp200 AllocSize(align(Size) + sizeof(InitMap *)), IsConst(IsConst), in Descriptor()
261 InitMap::InitMap(unsigned N) : UninitFields(N) { in InitMap() function in InitMap
267 InitMap::T *InitMap::data() { in data()
268 auto *Start = reinterpret_cast<char *>(this) + align(sizeof(InitMap)); in data()
272 bool InitMap::initialize(unsigned I) { in initialize()
282 bool InitMap::isInitialized(unsigned I) { in isInitialized()
288 InitMap *InitMap::allocate(unsigned N) { in allocate()
290 const size_t Size = align(sizeof(InitMap)) + NumFields * PER_FIELD; in allocate()
291 return new (malloc(Size)) InitMap(N); in allocate()
DPointer.h65 Off += sizeof(InitMap *); in atIndex()
96 return Pointer(Pointee, Base, Offset + sizeof(InitMap *)); in narrow()
117 Adjust = sizeof(InitMap *); in expand()
200 Adjust = sizeof(InitMap *); in getOffset()
328 InitMap *&getInitMap() const { in getInitMap()
329 return *reinterpret_cast<InitMap **>(Pointee->data() + Base); in getInitMap()
DDescriptor.h189 struct InitMap { struct
197 InitMap(unsigned N); argument
210 static InitMap *allocate(unsigned N);
/external/libchrome/base/containers/
Dsmall_map_unittest.cc452 void InitMap(unordered_map_add_item* map_ctor) { in InitMap() function
473 m(InitMap); in TEST()
/external/llvm-project/clang/docs/
DConstantInterpreter.rst174 An array of primitives contains a pointer to an ``InitMap`` storage as its
177 initialised, while a value of ``(InitMap*)-1`` indicates that the object was