Searched refs:storage_ (Results 1 - 15 of 15) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DIndexedMap.h37 StorageT storage_; member in class:llvm::IndexedMap
47 assert(toIndex_(n) < storage_.size() && "index out of bounds!");
48 return storage_[toIndex_(n)];
52 assert(toIndex_(n) < storage_.size() && "index out of bounds!");
53 return storage_[toIndex_(n)];
57 storage_.reserve(s);
61 storage_.resize(s, nullVal_);
65 storage_.clear();
70 if (NewSize > storage_.size())
75 return toIndex_(n) < storage_
[all...]
/external/webrtc/webrtc/base/
H A Dcryptstring.h74 storage_ = new char[32];
77 storage_[0] = 0;
86 memcpy(storage_ + length_, data, length);
88 storage_[length_] = '\0';
94 password->CopyTo(storage_ + length_, true);
103 return storage_;
114 char * old_storage = storage_;
122 storage_ = new char[capacity_];
125 memcpy(storage_, old_storage, length_);
138 storage_[
146 char * storage_; member in class:rtc::FormatCryptString
[all...]
/external/libbrillo/brillo/
H A Dany_internal_impl_unittest.cc16 EXPECT_EQ(Buffer::kExternal, buffer.storage_);
24 EXPECT_EQ(Buffer::kContained, buffer.storage_);
32 EXPECT_EQ(Buffer::kContained, buffer.storage_);
41 EXPECT_EQ(Buffer::kContained, buffer.storage_);
48 EXPECT_EQ(Buffer::kContained, buffer.storage_);
58 EXPECT_EQ(Buffer::kContained, buffer.storage_);
70 EXPECT_EQ(Buffer::kExternal, buffer.storage_);
82 EXPECT_EQ(Buffer::kContained, buffer.storage_);
90 EXPECT_EQ(Buffer::kExternal, buffer.storage_);
H A Dany_internal_impl.h222 Buffer() : external_ptr_(nullptr), storage_(kExternal) {}
239 // or the raw data depending on |storage_| type.
241 return (storage_ == kExternal) ? external_ptr_
245 return (storage_ == kExternal)
253 if (storage_ == kExternal) {
262 storage_ = kExternal;
289 storage_ = kExternal;
297 storage_ = kContained;
318 return (storage_ == kExternal && external_ptr_ == nullptr);
335 if (storage_
357 StorageType storage_; // Declare after the union to eliminate member padding. member in class:brillo::internal_details::final
[all...]
/external/gemmlowp/internal/
H A Dallocator.h85 storage_(nullptr),
110 storage_ = memalign(kAlignment, storage_size_);
112 if (posix_memalign(&storage_, kAlignment, storage_size_)) {
113 storage_ = nullptr;
118 ReleaseBuildAssertion(!storage_size_ || storage_, "allocation failure");
179 std::uintptr_t addr = reinterpret_cast<std::uintptr_t>(storage_) + offset;
186 free(storage_);
195 mutable void* storage_;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.cc87 for (uptr i = 0; i < storage_.size(); ++i) {
88 if (!internal_strcmp(storage_[i], str)) {
89 last_match_ = storage_[i];
94 storage_.push_back(last_match_);
H A Dsanitizer_symbolizer.h125 : storage_(kInitialCapacity), last_match_(nullptr),
131 InternalMmapVector<const char*> storage_; member in class:__sanitizer::final::ModuleNameOwner
/external/v8/src/base/
H A Dlazy-instance.h183 reinterpret_cast<void*>(&storage_));
189 return AllocationTrait::MutableInstance(&storage_);
194 return *AllocationTrait::MutableInstance(&storage_);
201 mutable StorageType storage_; member in struct:v8::base::LazyInstanceImpl
/external/v8/test/cctest/wasm/
H A Dwasm-run-utils.h295 GetParameterCount(p0, p1, p2, p3), storage_),
302 storage_[index++] = WasmOpcodes::LocalTypeFor(ret);
305 storage_[index++] = WasmOpcodes::LocalTypeFor(p0);
307 storage_[index++] = WasmOpcodes::LocalTypeFor(p1);
309 storage_[index++] = WasmOpcodes::LocalTypeFor(p2);
311 storage_[index++] = WasmOpcodes::LocalTypeFor(p3);
373 LocalType storage_[5]; member in class:__anon18349::WasmRunner
/external/v8/test/cctest/compiler/
H A Dc-signature.h113 MachineType storage_[1 + kParamCount]; member in class:v8::internal::compiler::CSignatureOf
117 kParamCount, reinterpret_cast<MachineType*>(&storage_)) {
118 if (return_count_ == 1) storage_[0] = MachineTypeForC<Ret>();
/external/deqp/framework/opengl/
H A DgluVarType.cpp259 VariableDeclaration::VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_, Interpolation interpolation_, const Layout& layout_, deUint32 memoryAccessQualifierBits_) argument
262 , storage (storage_)
H A DgluVarType.hpp258 VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_ = STORAGE_LAST, Interpolation interpolation_ = INTERPOLATION_LAST, const Layout& layout_ = Layout(), deUint32 memoryAccessQualifierBits_ = 0);
/external/opencv3/modules/cudalegacy/src/
H A Dfgd.cpp616 CvMemStorage* storage_;
621 storage_ = cvCreateMemStorage();
622 CV_Assert( storage_ != 0 );
627 cvReleaseMemStorage(&storage_);
643 cvClearMemStorage(storage_);
658 findForegroundRegions(foreground_, h_foreground_, foreground_regions_, storage_, params_);
/external/v8/src/
H A Dbuiltins.cc633 storage_(Handle<FixedArray>::cast(
649 if (index < static_cast<uint32_t>(storage_->length())) {
650 storage_->set(index, *elm);
662 SeededNumberDictionary::cast(*storage_));
685 static_cast<uint32_t>(FixedArrayBase::cast(*storage_)->length())) {
702 array->set_elements(*storage_);
710 Handle<FixedArray> current_storage(*storage_);
734 GlobalHandles::Destroy(Handle<Object>::cast(storage_).location());
738 storage_ =
754 Handle<FixedArray> storage_; // Alway member in class:v8::__anon18049::ArrayConcatVisitor
[all...]
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.cpp1918 MultiVertexArrayTest::Spec::ArraySpec::ArraySpec(Array::InputType inputType_, Array::OutputType outputType_, Array::Storage storage_, Array::Usage usage_, int componentCount_, int offset_, int stride_, bool normalize_, GLValue min_, GLValue max_) argument
1921 , storage (storage_)

Completed in 582 milliseconds