HomeSort by relevance Sort by last modified time
    Searched defs:storage (Results 26 - 50 of 252) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
area_code_map.cc 37 DefaultMapStorage* storage = new DefaultMapStorage(); local
38 storage->ReadFromMap(descriptions);
39 storage_.reset(storage);
  /external/chromium_org/third_party/mesa/src/src/glsl/
link_uniform_initializers.cpp 38 get_storage(gl_uniform_storage *storage, unsigned num_storage,
42 if (strcmp(name, storage[i].name) == 0)
43 return &storage[i];
50 copy_constant_to_storage(union gl_constant_value *storage,
58 storage[i].u = val->value.u[i];
62 storage[i].i = val->value.i[i];
65 storage[i].f = val->value.f[i];
68 storage[i].b = int(val->value.b[i]);
111 struct gl_uniform_storage *const storage = local
115 if (storage == NULL)
    [all...]
ir_uniform.h 109 * Storage used by the driver for the uniform
115 * Storage used by Mesa for the uniform
121 union gl_constant_value *storage; member in struct:gl_uniform_storage
  /external/chromium_org/third_party/skia/src/core/
SkPictureFlat.cpp 109 intptr_t storage[256]; local
110 SkOrderedWriteBuffer buffer(256, storage, sizeof(storage));
SkRRect.cpp 292 SkScalar storage[12]; local
293 SkASSERT(sizeof(storage) == kSizeInMemory);
296 memcpy(storage, buffer, kSizeInMemory);
298 this->setRectRadii(*(const SkRect*)&storage[0],
299 (const SkVector*)&storage[4]);
  /external/clang/test/SemaTemplate/
attributes.cpp 25 __attribute__((align(Align))) char storage[Size]; member in class:attribute_aligned::my_aligned_storage
  /external/llvm/include/llvm/ADT/
Optional.h 32 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
38 new (storage.buffer) T(y);
42 new (storage.buffer) T(*O);
47 new (storage.buffer) T(std::forward<T>(y));
51 new (storage.buffer) T(std::move(*O));
59 new (storage.buffer) T(std::move(y));
88 new (storage.buffer) T(y);
113 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
114 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); }
  /external/mesa3d/src/glsl/
link_uniform_initializers.cpp 38 get_storage(gl_uniform_storage *storage, unsigned num_storage,
42 if (strcmp(name, storage[i].name) == 0)
43 return &storage[i];
50 copy_constant_to_storage(union gl_constant_value *storage,
58 storage[i].u = val->value.u[i];
62 storage[i].i = val->value.i[i];
65 storage[i].f = val->value.f[i];
68 storage[i].b = int(val->value.b[i]);
111 struct gl_uniform_storage *const storage = local
115 if (storage == NULL)
    [all...]
  /external/opencv/ml/src/
mltestset.cpp 67 CvMemStorage* storage = NULL; local
118 CV_CALL( storage = cvCreateMemStorage() );
119 CV_CALL( cvStartWriteSeq( 0, sizeof( CvSeq ), sizeof( CvDI ), storage, &writer ));
167 cvReleaseMemStorage( &storage );
  /external/skia/src/core/
SkPictureFlat.cpp 109 intptr_t storage[256]; local
110 SkOrderedWriteBuffer buffer(256, storage, sizeof(storage));
  /frameworks/base/core/jni/
android_view_HardwareRenderer.cpp 113 jint* storage = env->GetIntArrayElements(size, NULL); local
116 storage[0] = value;
119 storage[1] = value;
121 env->ReleaseIntArrayElements(size, storage, 0);
  /art/runtime/jdwp/
jdwp_expand_buf.cc 38 uint8_t* storage; member in struct:art::JDWP::ExpandBuf
46 * Allocate a JdwpBuf and some initial storage.
50 newBuf->storage = reinterpret_cast<uint8_t*>(malloc(kInitialStorage));
57 * Free a JdwpBuf and associated storage.
64 free(pBuf->storage);
72 return pBuf->storage;
95 uint8_t* newPtr = reinterpret_cast<uint8_t*>(realloc(pBuf->storage, pBuf->maxLen));
100 pBuf->storage = newPtr;
110 gapStart = pBuf->storage + pBuf->curLen;
122 *(pBuf->storage + pBuf->curLen) = val
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_backend.cc 5 #include "chrome/browser/extensions/api/storage/settings_backend.h"
9 #include "chrome/browser/extensions/api/storage/settings_sync_processor.h"
10 #include "chrome/browser/extensions/api/storage/settings_sync_util.h"
11 #include "chrome/browser/extensions/api/storage/syncable_settings_storage.h"
58 ValueStore* storage = storage_factory_->Create(base_path_, extension_id); local
59 CHECK(storage);
62 // sync will only go ahead if each underlying storage operation succeeds.
63 storage = new SettingsStorageQuotaEnforcer(quota_, storage);
69 storage));
255 SyncableSettingsStorage* storage = local
    [all...]
settings_frontend_unittest.cc 12 #include "chrome/browser/extensions/api/storage/leveldb_settings_storage_factory.h"
13 #include "chrome/browser/extensions/api/storage/settings_frontend.h"
14 #include "chrome/browser/extensions/api/storage/settings_namespace.h"
15 #include "chrome/browser/extensions/api/storage/settings_test_util.h"
101 ValueStore* storage = util::GetStorage(id, frontend_.get()); local
107 ValueStore::WriteResult result = storage->Set(DEFAULTS, "foo", bar);
112 ValueStore::ReadResult result = storage->Get();
118 storage = util::GetStorage(id, frontend_.get());
121 ValueStore::ReadResult result = storage->Get();
134 ValueStore* storage = util::GetStorage(id, frontend_.get()) local
162 ValueStore* storage = util::GetStorage(id, frontend_.get()); local
    [all...]
  /external/chromium_org/chrome/renderer/pepper/
pepper_flash_renderer_host.cc 181 std::vector<SkPoint> storage; local
182 storage.resize(glyph_count);
183 SkPoint* sk_positions = &storage[0];
  /external/chromium_org/content/browser/dom_storage/
dom_storage_database_unittest.cc 39 // as far as the DOM Storage db is concerned.
49 // as far as the DOM Storage db is concerned.
117 DOMStorageValuesMap storage; local
118 CreateMapWithValues(&storage);
125 ASSERT_TRUE(db.CommitChanges(false, storage));
135 EXPECT_EQ(storage.size(), values.size());
139 storage.clear();
143 ASSERT_TRUE(db.CommitChanges(true, storage));
149 CreateMapWithValues(&storage);
152 ASSERT_TRUE(db.CommitChanges(false, storage));
238 DOMStorageValuesMap storage; local
248 DOMStorageValuesMap storage; local
    [all...]
  /external/chromium_org/net/base/
address_list_unittest.cc 47 SockaddrStorage storage[kNumElements]; local
51 reinterpret_cast<struct sockaddr_in*>(storage[i].addr);
52 storage[i].addr_len = sizeof(struct sockaddr_in);
61 ai[i].ai_addrlen = storage[i].addr_len;
62 ai[i].ai_addr = storage[i].addr;
  /external/chromium_org/net/socket/
tcp_server_socket_libevent.cc 72 SockaddrStorage storage; local
73 if (!address.ToSockAddr(storage.addr, &storage.addr_len)) {
78 result = bind(socket_, storage.addr, storage.addr_len);
101 SockaddrStorage storage; local
102 if (getsockname(socket_, storage.addr, &storage.addr_len) < 0)
104 if (!address->FromSockAddr(storage.addr, storage.addr_len)
160 SockaddrStorage storage; local
    [all...]
tcp_server_socket_win.cc 65 SockaddrStorage storage; local
66 if (!address.ToSockAddr(storage.addr, &storage.addr_len)) {
71 result = bind(socket_, storage.addr, storage.addr_len);
94 SockaddrStorage storage; local
95 if (getsockname(socket_, storage.addr, &storage.addr_len))
97 if (!address->FromSockAddr(storage.addr, storage.addr_len)
153 SockaddrStorage storage; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
StorageAreaProxy.cpp 40 #include "core/storage/Storage.h"
41 #include "core/storage/StorageEvent.h"
157 Storage* storage = frame->domWindow()->optionalLocalStorage(); local
158 if (storage && frame->document()->securityOrigin()->equal(securityOrigin) && !isEventSource(storage, sourceAreaInstance))
159 frame->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, pageURL, storage));
187 Storage* storage = frame->domWindow()->optionalSessionStorage() local
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
IndexDataManager.cpp 121 BufferStorage *storage = NULL; local
125 storage = buffer->getStorage();
135 if (gl::ComputeTypeSize(type) * count + offset > static_cast<GLsizei>(storage->getSize()))
140 indices = static_cast<const GLubyte*>(storage->getData()) + offset;
147 bool directStorage = alignedOffset && storage && storage->supportsDirectBinding() &&
155 storage->markBufferUsage();
186 convertCount = storage->getSize() / gl::ComputeTypeSize(type);
212 convertIndices(type, staticBuffer ? storage->getData() : indices, convertCount, output);
230 translated->storage = directStorage ? storage : NULL
    [all...]
VertexDataManager.cpp 68 BufferStorage *storage = buffer ? buffer->getStorage() : NULL; local
72 return storage && storage->supportsDirectBinding() && !vb->getVertexBuffer()->requiresConversion(attrib) && isAligned;
155 BufferStorage *storage = buffer ? buffer->getStorage() : NULL; local
165 storage->markBufferUsage();
175 int totalCount = elementsInBuffer(attribs[i], storage->getSize());
202 translated[i].storage = directStorage ? storage : NULL;
204 translated[i].serial = directStorage ? storage->getSerial() : vertexBuffer->getSerial();
239 translated[i].storage = NULL
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_vector.h 40 #define VEC_MALLOC 0x10 /* storage field points to self-allocated mem*/
69 void *storage; /**< self-allocated storage */ member in struct:__anon15287
70 GLuint storage_count; /**< storage size in elements */
75 GLfloat (*storage)[4] );
  /external/chromium_org/third_party/opus/src/celt/
entcode.h 59 opus_uint32 storage; member in struct:ec_ctx
  /external/chromium_org/third_party/skia/src/effects/
SkKernel33MaskFilter.cpp 43 uint8_t storage[3][3]; local
45 srcRows[0] = storage[0];
46 srcRows[1] = storage[1];
47 srcRows[2] = storage[2];
54 memset(storage, 0, sizeof(storage));
55 uint8_t* storagePtr = &storage[0][0];

Completed in 452 milliseconds

12 3 4 5 6 7 8 91011