HomeSort by relevance Sort by last modified time
    Searched defs:storage (Results 276 - 300 of 621) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
VertexBuffer11.cpp 94 Buffer11 *storage = Buffer11::makeBuffer11(buffer->getImplementation()); local
95 input = static_cast<const uint8_t*>(storage->getData()) + static_cast<int>(attrib.offset);
  /external/chromium_org/third_party/mesa/src/src/glsl/
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/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:__anon19185
70 GLuint storage_count; /**< storage size in elements */
75 GLfloat (*storage)[4] );
  /external/chromium_org/third_party/opus/src/celt/
entcode.h 60 opus_uint32 storage; member in struct:ec_ctx
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libbmp.cpp 100 SkAutoMalloc storage; local
102 const size_t length = SkCopyStreamToStorage(&storage, stream);
114 if (!helper.DecodeImage((const char*)storage.get(), length,
122 storage.free();
  /external/clang/test/Analysis/
malloc.cpp 52 void **storage; member in class:PR13751::OwningVector
58 storage[length++] = Item;
  /external/clang/test/Index/
index-templates.cpp 40 struct storage { }; struct
143 // CHECK-LOAD: index-templates.cpp:40:8: ClassTemplate=storage:40:8 (Definition) Extent=[39:1 - 40:19]
  /external/deqp/framework/randomshaders/
rsgExecutionContext.cpp 63 ExecValueStorage* storage = m_varValues[variable]; local
65 if (!storage)
67 storage = new ExecValueStorage(variable->getType());
68 m_varValues[variable] = storage;
71 return storage->getValue(variable->getType());
  /external/libcxxabi/test/
test_vector2.cpp 55 void *storage; member in struct:vec_on_stack
56 vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct )) {}
57 ~vec_on_stack () { __cxxabiv1::__cxa_vec_delete ( storage, 40, 8, throw_destruct ); }
  /external/libopus/celt/
entcode.h 60 opus_uint32 storage; member in struct:ec_ctx
  /external/mesa3d/src/glsl/
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/mesa3d/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:__anon32582
70 GLuint storage_count; /**< storage size in elements */
75 GLfloat (*storage)[4] );
  /external/skia/src/images/
SkImageDecoder_libbmp.cpp 100 SkAutoMalloc storage; local
102 const size_t length = CopyStreamToStorage(&storage, stream);
114 if (!helper.DecodeImage((const char*)storage.get(), length,
122 storage.free();
  /frameworks/base/core/jni/android/graphics/
NinePatch.cpp 44 * int8_t* to allocate and free the backing storage.
73 int8_t* storage = new int8_t[chunkSize]; local
75 env->GetByteArrayRegion(obj, 0, chunkSize, reinterpret_cast<jbyte*>(storage));
77 return reinterpret_cast<jlong>(Res_png_9patch::deserialize(storage));
  /frameworks/base/media/java/android/mtp/
MtpServer.java 59 public void addStorage(MtpStorage storage) {
60 native_add_storage(storage);
63 public void removeStorage(MtpStorage storage) {
64 native_remove_storage(storage.getStorageId());
73 private native final void native_add_storage(MtpStorage storage);
  /ndk/sources/cxx-stl/gabi++/tests/
test_vector2.cpp 75 void *storage; member in struct:vec_on_stack
76 vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct )) {}
77 ~vec_on_stack () { __cxxabiv1::__cxa_vec_delete ( storage, 40, 8, throw_destruct ); }
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
test_vector2.cpp 55 void *storage; member in struct:vec_on_stack
56 vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct )) {}
57 ~vec_on_stack () { __cxxabiv1::__cxa_vec_delete ( storage, 40, 8, throw_destruct ); }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
BinaryXMLMultiPageEditorPart.java 51 IStorage storage = jarInput.getStorage(); local
52 if (storage instanceof JarEntryFile) {
53 JarEntryFile jarEntryFile = (JarEntryFile) storage;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.security_1.0.200.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.security_1.2.0.v20130424-1801.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.security_1.2.0.v20130424-1801.jar 
  /art/runtime/gc/space/
bump_pointer_space.cc 136 // Returns the start of the storage.
142 byte* storage = reinterpret_cast<byte*>( local
144 if (LIKELY(storage != nullptr)) {
145 BlockHeader* header = reinterpret_cast<BlockHeader*>(storage);
147 storage += sizeof(BlockHeader);
150 return storage;
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_file_system_helper.cc 17 #include "storage/browser/fileapi/file_system_context.h"
18 #include "storage/browser/fileapi/file_system_quota_util.h"
19 #include "storage/common/fileapi/file_system_types.h"
23 namespace storage { namespace
36 storage::FileSystemContext* filesystem_context);
64 scoped_refptr<storage::FileSystemContext> filesystem_context_;
89 storage::FileSystemContext* filesystem_context)
125 const storage::FileSystemType types[] = {
126 storage::kFileSystemTypeTemporary,
127 storage::kFileSystemTypePersistent
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_file_system.h 21 namespace storage { namespace
59 scoped_refptr<storage::FileSystemContext> file_system_context,
  /external/chromium_org/chrome/browser/chromeos/fileapi/
external_file_url_request_job.cc 28 #include "storage/browser/fileapi/file_system_backend.h"
29 #include "storage/browser/fileapi/file_system_context.h"
30 #include "storage/browser/fileapi/file_system_operation_runner.h"
70 content::StoragePartition* const storage = member in class:chromeos::__anon7845::URLHelper::content
72 DCHECK(storage);
74 scoped_refptr<storage::FileSystemContext> context =
75 storage->GetFileSystemContext();
86 storage::kFileSystemTypeExternal,
131 scoped_refptr<storage::FileSystemContext> file_system_context_;
132 storage::FileSystemURL file_system_url_
    [all...]

Completed in 2664 milliseconds

<<11121314151617181920>>