Lines Matching full:uint32_t
31 static constexpr uint32_t DEFAULT_CAPACITY = 4;
32 … static JSHandle<WeakVector> Create(const JSThread *thread, uint32_t capacity = DEFAULT_CAPACITY);
33 …le<WeakVector> Grow(const JSThread *thread, const JSHandle<WeakVector> &old, uint32_t newCapacity);
34 uint32_t PushBack(const JSThread *thread, JSTaggedValue value);
36 bool Delete(const JSThread *thread, uint32_t index);
38 inline uint32_t GetEnd() const in GetEnd()
53 inline uint32_t GetCapacity() const in GetCapacity()
58 inline JSTaggedValue Get(uint32_t index) const in Get()
64 inline void Set(const JSThread *thread, uint32_t index, JSTaggedValue value) in Set()
71 static const uint32_t MIN_CAPACITY = 2;
72 static const uint32_t END_INDEX = 0;
73 static const uint32_t ELEMENTS_START_INDEX = 1;
74 static const uint32_t MAX_VECTOR_INDEX = TaggedArray::MAX_ARRAY_INDEX - ELEMENTS_START_INDEX;
76 inline static constexpr uint32_t VectorToArrayIndex(uint32_t index) in VectorToArrayIndex()
81 inline void SetEnd(const JSThread *thread, uint32_t end) in SetEnd()