HomeSort by relevance Sort by last modified time
    Searched defs:storage (Results 51 - 75 of 461) sorted by null

1 23 4 5 6 7 8 91011>>

  /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
156 // CHECK-LOAD: index-templates.cpp:40:8: ClassTemplate=storage:40:8 (Definition) Extent=[39:1 - 40:19]
  /external/dbus/dbus/
sd-daemon.c 208 struct sockaddr_storage storage; member in union:sockaddr_union
  /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/gemmlowp/test/
test.h 86 storage.resize(size());
87 data_ = storage.data();
97 std::vector<Scalar> storage; member in class:gemmlowp::Matrix
  /external/libchrome/base/
bind_internal.h 343 StorageType* storage = static_cast<StorageType*>(base); local
348 storage->runnable_,
349 Unwrappers::Unwrap(get<bound_indices>(storage->bound_args_))...,
365 // BoundArgs contains the storage type for all the bound arguments.
  /external/libcxxabi/test/
test_vector2.pass.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/libgdx/gdx/src/com/badlogic/gdx/utils/
QuickSelect.java 38 int storage = left; local
41 swap(storage, i);
42 storage++;
45 swap(right, storage);
46 return storage;
  /external/libopus/celt/
entcode.h 60 opus_uint32 storage; member in struct:ec_ctx
  /external/libweave/third_party/chromium/base/
bind_internal.h 343 StorageType* storage = static_cast<StorageType*>(base); local
348 storage->runnable_,
349 Unwrappers::Unwrap(get<bound_indices>(storage->bound_args_))...,
365 // BoundArgs contains the storage type for all the bound arguments.
  /external/llvm/include/llvm/ADT/
Optional.h 30 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
38 new (storage.buffer) T(y);
42 new (storage.buffer) T(*O);
46 new (storage.buffer) T(std::forward<T>(y));
50 new (storage.buffer) T(std::move(*O));
58 new (storage.buffer) T(std::move(y));
78 new (storage.buffer) T(std::forward<ArgTypes>(Args)...);
94 new (storage.buffer) T(y);
119 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
120 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer);
    [all...]
  /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:__anon21253
70 GLuint storage_count; /**< storage size in elements */
75 GLfloat (*storage)[4] );
  /external/opencv3/modules/calib3d/src/
checkchessboard.cpp 130 CvMemStorage* storage = cvCreateMemStorage(); local
151 cvFindContours(thresh, storage, &first, sizeof(CvContour), CV_RETR_CCOMP);
161 cvFindContours(thresh, storage, &first, sizeof(CvContour), CV_RETR_CCOMP);
204 cvReleaseMemStorage(&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.pass.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 ); }
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
FormatAsPrivateStepFragment.java 17 package com.android.tv.settings.device.storage;
20 import android.os.storage.DiskInfo;
  /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;
  /system/connectivity/shill/
property_accessor_unittest.cc 202 string storage; local
205 string orig_value = storage;
206 StringAccessor accessor(new PropertyAccessor<string>(&storage));
207 EXPECT_EQ(storage, accessor->Get(&error));
222 storage = "nooooo";
223 EXPECT_EQ(storage, accessor->Get(&error));
227 StringAccessor accessor(new ConstPropertyAccessor<string>(&storage));
228 EXPECT_EQ(storage, accessor->Get(&error));
234 EXPECT_EQ(storage, accessor->Get(&error));
236 storage = "nooooo"
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpService.java 29 import android.os.storage.StorageEventListener;
30 import android.os.storage.StorageManager;
31 import android.os.storage.StorageVolume;
49 // In PTP mode we support only primary storage
212 // In PTP mode we support only primary storage
223 MtpStorage storage = new MtpStorage(volume, getApplicationContext()); local
224 mStorageMap.put(storage.getPath(), storage); local
226 if (storage.getStorageId() == StorageVolume.STORAGE_ID_INVALID) {
227 Log.w(TAG, "Ignoring volume with invalid MTP storage ID: " + storage)
243 MtpStorage storage = mStorageMap.remove(volume.getPath()); local
    [all...]
  /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/compiler/driver/
compiled_method_storage_test.cc 49 CompiledMethodStorage* storage = driver.GetCompiledMethodStorage(); local
51 ASSERT_TRUE(storage->DedupeEnabled()); // The default.
  /art/runtime/gc/space/
bump_pointer_space.cc 139 // Returns the start of the storage.
145 uint8_t* storage = reinterpret_cast<uint8_t*>( local
147 if (LIKELY(storage != nullptr)) {
148 BlockHeader* header = reinterpret_cast<BlockHeader*>(storage);
150 storage += sizeof(BlockHeader);
153 return storage;

Completed in 1506 milliseconds

1 23 4 5 6 7 8 91011>>