| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/ |
| H A D | stringbuffer.h | 45 …GenericStringBuffer(Allocator* allocator = 0, size_t capacity = kDefaultCapacity) : stack_(allocat… in stack_() function 48 GenericStringBuffer(GenericStringBuffer&& rhs) : stack_(std::move(rhs.stack_)) {} in GenericStringBuffer() 51 stack_ = std::move(rhs.stack_); 56 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() 57 void PutUnsafe(Ch c) { *stack_.template PushUnsafe<Ch>() = c; } in PutUnsafe() 60 void Clear() { stack_.Clear(); } in Clear() 63 *stack_.template Push<Ch>() = '\0'; in ShrinkToFit() 64 stack_.ShrinkToFit(); in ShrinkToFit() 65 stack_.template Pop<Ch>(1); in ShrinkToFit() 68 void Reserve(size_t count) { stack_.template Reserve<Ch>(count); } in Reserve() [all …]
|
| H A D | memorybuffer.h | 40 …GenericMemoryBuffer(Allocator* allocator = 0, size_t capacity = kDefaultCapacity) : stack_(allocat… in stack_() function 42 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() 45 void Clear() { stack_.Clear(); } in Clear() 46 void ShrinkToFit() { stack_.ShrinkToFit(); } in ShrinkToFit() 47 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); } in Push() 48 void Pop(size_t count) { stack_.template Pop<Ch>(count); } in Pop() 51 return stack_.template Bottom<Ch>(); in GetBuffer() 54 size_t GetSize() const { return stack_.GetSize(); } in GetSize() 57 mutable internal::Stack<Allocator> stack_; member 65 std::memset(memoryBuffer.stack_.Push<char>(n), c, n * sizeof(c)); in PutN()
|
| H A D | document.h | 2038 …GenericValue<Encoding, Allocator>(type), allocator_(allocator), ownAllocator_(0), stack_(stackAll… 2051 … allocator_(allocator), ownAllocator_(0), stack_(stackAllocator, stackCapacity), parseResult_() 2063 stack_(std::move(rhs.stack_)), 2089 stack_ = std::move(rhs.stack_); 2108 stack_.Swap(rhs.stack_); 2138 … RAPIDJSON_ASSERT(stack_.GetSize() == sizeof(ValueType)); // Got one and only one root object 2139 … ValueType::operator=(*stack_.template Pop<ValueType>(1));// Move value from stack to document 2157 stack_.HasAllocator() ? &stack_.GetAllocator() : 0); 2161 … RAPIDJSON_ASSERT(stack_.GetSize() == sizeof(ValueType)); // Got one and only one root object 2162 … ValueType::operator=(*stack_.template Pop<ValueType>(1));// Move value from stack to document [all …]
|
| H A D | reader.h | 474 …tor* stackAllocator = 0, size_t stackCapacity = kDefaultStackCapacity) : stack_(stackAllocator, st… in stack_() function 547 void ClearStack() { stack_.Clear(); } in ClearStack() 781 StackStream(internal::Stack<StackAllocator>& stack) : stack_(stack), length_(0) {} in StackStream() 783 *stack_.template Push<Ch>() = c; in Put() 789 return stack_.template Push<Ch>(count); in Push() 795 return stack_.template Pop<Ch>(length_); in Pop() 802 internal::Stack<StackAllocator>& stack_; variable 826 StackStream<typename TargetEncoding::Ch> stackStream(stack_); 1099 …berStream(GenericReader& reader, InputStream& is) : Base(reader, is), stackStream(reader.stack_) {} in NumberStream() 1345 StackStream<typename TargetEncoding::Ch> dstStream(stack_); in ParseNumber() [all …]
|
| H A D | schema.h | 169 …Hasher(Allocator* allocator = 0, size_t stackCapacity = kDefaultSize) : stack_(allocator, stackCap… in stack_() function 199 uint64_t* kv = stack_.template Pop<uint64_t>(memberCount * 2); in EndObject() 202 *stack_.template Push<uint64_t>() = h; in EndObject() 209 uint64_t* e = stack_.template Pop<uint64_t>(elementCount); in EndArray() 212 *stack_.template Push<uint64_t>() = h; in EndArray() 216 bool IsValid() const { return stack_.GetSize() == sizeof(uint64_t); } in IsValid() 220 return *stack_.template Top<uint64_t>(); in GetHashCode() 243 *stack_.template Push<uint64_t>() = h; in WriteBuffer() 254 Stack<Allocator> stack_; variable
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/internal/ |
| H A D | stack.h | 40 …ocator, size_t stackCapacity) : allocator_(allocator), ownAllocator_(0), stack_(0), stackTop_(0), … in Stack() 47 stack_(rhs.stack_), in Stack() 54 rhs.stack_ = 0; in Stack() 73 stack_ = rhs.stack_; 80 rhs.stack_ = 0; 92 internal::Swap(stack_, rhs.stack_); in Swap() 98 void Clear() { stackTop_ = stack_; } in Clear() 103 Allocator::Free(stack_); in ShrinkToFit() 104 stack_ = 0; in ShrinkToFit() 161 T* Bottom() { return reinterpret_cast<T*>(stack_); } in Bottom() [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/openssl/ |
| H A D | stack.h | 282 typedef void (*stack_##name##_free_func)(ptrtype); \ 283 typedef ptrtype (*stack_##name##_copy_func)(ptrtype); \ 284 typedef int (*stack_##name##_cmp_func)(constptrtype *a, constptrtype *b); \ 288 ((stack_##name##_free_func)free_func)((ptrtype)ptr); \ 293 return (void *)((stack_##name##_copy_func)copy_func)((ptrtype)ptr); \ 300 return ((stack_##name##_cmp_func)cmp_func)(&a_ptr, &b_ptr); \ 304 sk_##name##_new(stack_##name##_cmp_func comp) { \ 335 STACK_OF(name) * sk, stack_##name##_free_func free_func) { \ 385 OPENSSL_INLINE stack_##name##_cmp_func sk_##name##_set_cmp_func( \ 386 STACK_OF(name) *sk, stack_##name##_cmp_func comp) { \ [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/openssl/ |
| H A D | stack.h | 282 typedef void (*stack_##name##_free_func)(ptrtype); \ 283 typedef ptrtype (*stack_##name##_copy_func)(ptrtype); \ 284 typedef int (*stack_##name##_cmp_func)(constptrtype *a, constptrtype *b); \ 288 ((stack_##name##_free_func)free_func)((ptrtype)ptr); \ 293 return (void *)((stack_##name##_copy_func)copy_func)((ptrtype)ptr); \ 300 return ((stack_##name##_cmp_func)cmp_func)(&a_ptr, &b_ptr); \ 304 sk_##name##_new(stack_##name##_cmp_func comp) { \ 335 STACK_OF(name) * sk, stack_##name##_free_func free_func) { \ 385 OPENSSL_INLINE stack_##name##_cmp_func sk_##name##_set_cmp_func( \ 386 STACK_OF(name) *sk, stack_##name##_cmp_func comp) { \ [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/openssl/ |
| H A D | stack.h | 282 typedef void (*stack_##name##_free_func)(ptrtype); \ 283 typedef ptrtype (*stack_##name##_copy_func)(ptrtype); \ 284 typedef int (*stack_##name##_cmp_func)(constptrtype *a, constptrtype *b); \ 288 ((stack_##name##_free_func)free_func)((ptrtype)ptr); \ 293 return (void *)((stack_##name##_copy_func)copy_func)((ptrtype)ptr); \ 300 return ((stack_##name##_cmp_func)cmp_func)(&a_ptr, &b_ptr); \ 304 sk_##name##_new(stack_##name##_cmp_func comp) { \ 335 STACK_OF(name) * sk, stack_##name##_free_func free_func) { \ 385 OPENSSL_INLINE stack_##name##_cmp_func sk_##name##_set_cmp_func( \ 386 STACK_OF(name) *sk, stack_##name##_cmp_func comp) { \ [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/openssl/ |
| H A D | stack.h | 282 typedef void (*stack_##name##_free_func)(ptrtype); \ 283 typedef ptrtype (*stack_##name##_copy_func)(ptrtype); \ 284 typedef int (*stack_##name##_cmp_func)(constptrtype *a, constptrtype *b); \ 288 ((stack_##name##_free_func)free_func)((ptrtype)ptr); \ 293 return (void *)((stack_##name##_copy_func)copy_func)((ptrtype)ptr); \ 300 return ((stack_##name##_cmp_func)cmp_func)(&a_ptr, &b_ptr); \ 304 sk_##name##_new(stack_##name##_cmp_func comp) { \ 335 STACK_OF(name) * sk, stack_##name##_free_func free_func) { \ 385 OPENSSL_INLINE stack_##name##_cmp_func sk_##name##_set_cmp_func( \ 386 STACK_OF(name) *sk, stack_##name##_cmp_func comp) { \ [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/openssl/ |
| H A D | stack.h | 250 typedef int (*stack_##name##_cmp_func)(constptrtype *a, constptrtype *b); \ 253 sk_##name##_new(stack_##name##_cmp_func comp) { \ 336 static inline OPENSSL_UNUSED stack_##name##_cmp_func \ 338 stack_##name##_cmp_func comp) { \ 339 return (stack_##name##_cmp_func)sk_set_cmp_func((_STACK *)sk, \
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/host_include/openssl/ |
| H A D | stack.h | 250 typedef int (*stack_##name##_cmp_func)(constptrtype *a, constptrtype *b); \ 253 sk_##name##_new(stack_##name##_cmp_func comp) { \ 336 static inline OPENSSL_UNUSED stack_##name##_cmp_func \ 338 stack_##name##_cmp_func comp) { \ 339 return (stack_##name##_cmp_func)sk_set_cmp_func((_STACK *)sk, \
|