HomeSort by relevance Sort by last modified time
    Searched defs:storage (Results 126 - 150 of 695) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
Optional.h 32 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
42 new (storage.buffer) T(y);
47 new (storage.buffer) T(*O);
51 new (storage.buffer) T(std::forward<T>(y));
56 new (storage.buffer) T(std::move(*O));
69 new (storage.buffer) T(std::move(y));
90 new (storage.buffer) T(std::forward<ArgTypes>(Args)...);
106 new (storage.buffer) T(y);
127 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
128 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
Optional.h 32 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
42 new (storage.buffer) T(y);
47 new (storage.buffer) T(*O);
51 new (storage.buffer) T(std::forward<T>(y));
56 new (storage.buffer) T(std::move(*O));
69 new (storage.buffer) T(std::move(y));
90 new (storage.buffer) T(std::forward<ArgTypes>(Args)...);
106 new (storage.buffer) T(y);
127 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
128 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
Optional.h 32 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
42 new (storage.buffer) T(y);
47 new (storage.buffer) T(*O);
51 new (storage.buffer) T(std::forward<T>(y));
56 new (storage.buffer) T(std::move(*O));
69 new (storage.buffer) T(std::move(y));
90 new (storage.buffer) T(std::forward<ArgTypes>(Args)...);
106 new (storage.buffer) T(y);
127 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
128 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
Optional.h 32 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
42 new (storage.buffer) T(y);
47 new (storage.buffer) T(*O);
51 new (storage.buffer) T(std::forward<T>(y));
56 new (storage.buffer) T(std::move(*O));
69 new (storage.buffer) T(std::move(y));
90 new (storage.buffer) T(std::forward<ArgTypes>(Args)...);
106 new (storage.buffer) T(y);
127 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
128 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
Optional.h 32 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
42 new (storage.buffer) T(y);
47 new (storage.buffer) T(*O);
51 new (storage.buffer) T(std::forward<T>(y));
56 new (storage.buffer) T(std::move(*O));
69 new (storage.buffer) T(std::move(y));
90 new (storage.buffer) T(std::forward<ArgTypes>(Args)...);
106 new (storage.buffer) T(y);
127 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
128 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
Optional.h 32 AlignedCharArrayUnion<T> storage; member in class:llvm::Optional
42 new (storage.buffer) T(y);
47 new (storage.buffer) T(*O);
51 new (storage.buffer) T(std::forward<T>(y));
56 new (storage.buffer) T(std::move(*O));
69 new (storage.buffer) T(std::move(y));
90 new (storage.buffer) T(std::forward<ArgTypes>(Args)...);
106 new (storage.buffer) T(y);
127 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
128 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer);
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/
test_vector2.pass.cpp 57 void *storage; member in struct:vec_on_stack
58 vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct )) {}
59 ~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;
  /system/connectivity/wificond/net/
nl80211_attribute.h 72 T* storage = reinterpret_cast<T*>(data_.data() + NLA_HDRLEN); local
73 *storage = value;
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
BasicLock.java 17 package com.android.verifiedboot.storage;
28 import com.android.verifiedboot.storage.LockInterface;
33 private byte[] storage; field in class:BasicLock
72 Util.arrayCopy(storage, storageOffset,
88 storage, storageOffset,
147 if (storage == null) {
166 * @param extStorage external array to use for storage
178 storage = extStorage;
187 if (storage == null) {
191 Util.arrayCopy(storage, storageOffset
    [all...]
CarrierLock.java 17 package com.android.verifiedboot.storage;
28 import com.android.verifiedboot.storage.LockInterface;
154 private byte[] storage; field in class:CarrierLock
190 if (storage == null) {
214 * @param extStorage external array to use for storage
226 storage = extStorage;
235 if (storage == null) {
239 Util.arrayCopy(storage, lockOffset(),
254 if (storage == null) {
268 if (storage == null)
    [all...]
  /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 42 CompiledMethodStorage* storage = driver.GetCompiledMethodStorage(); local
44 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;
  /bionic/tests/
dirent_test.cpp 241 dirent storage; local
243 while (readdir_r(d, &storage, &e) == 0 && e != NULL) {
259 dirent64 storage; local
261 while (readdir64_r(d, &storage, &e) == 0 && e != NULL) {
  /device/google/marlin/dataservices/datatop/src/
datatop_dev_poll.c 203 * @param storage dtop_dev_vars struct that holds relevant dpg variables.
205 static void construct_dev_file_dpg(struct dtop_dev_vars *storage,
215 dpg->priv = (struct dtop_dev_vars *)storage;
229 * @param storage dtop_dev_vars struct where relevant variables are stored.
231 int dtop_dev_search(char *name, struct dtop_dev_vars *storage)
235 int *line_len = malloc(sizeof(int) * storage->line_count);
240 (sizeof(struct dtop_data_point) * 16 * (storage->line_count-2));
241 int dp_count = (16 * (storage->line_count - 2));
245 storage->line = malloc(storage->line_count * sizeof(*storage->line))
316 struct dtop_dev_vars *storage = malloc local
    [all...]
datatop_stat_poll.c 193 * @param storage dtop_stat_vars struct that holds relevant dpg variables.
197 *data_points, struct dtop_stat_vars *storage, int dp_count)
205 dpg->priv = (struct dtop_stat_vars *)storage;
218 * @param storage dtop_stat_vars struct where relevant variables are stored.
220 int dtop_stat_search(struct dtop_stat_vars *storage)
224 int *line_len = malloc(sizeof(int) * storage->line_count);
233 storage->line = malloc(storage->line_count * sizeof(*storage->line));
235 for (i = 0; i < storage->line_count; i++
315 struct dtop_stat_vars *storage = malloc local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
socketmodule.h 107 struct sockaddr_storage storage; member in union:sock_addr
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
socketmodule.h 107 struct sockaddr_storage storage; member in union:sock_addr
  /external/clang/test/Analysis/
casts.c 6 // Test if the 'storage' region gets properly initialized after it is cast to
20 struct sockaddr_storage storage; local
21 struct sockaddr* sockaddr = (struct sockaddr*)&storage;
22 socklen_t addrlen = sizeof(storage);
  /external/clang/test/Analysis/inlining/
containers.cpp 86 int *storage; member in class:MySet
89 MySet() : storage(0), size(0) {
96 MySet(unsigned n) : storage(new int[n]), size(n) {
103 ~MySet() { delete[] storage; }
124 return iterator(storage);
132 return iterator(storage+size);
142 return storage;
149 return storage + size;
  /external/libchrome/base/
bind_internal.h 323 StorageType* storage = static_cast<StorageType*>(base); local
325 std::tuple_size<decltype(storage->bound_args_)>::value;
326 return RunImpl(std::move(storage->functor_),
327 std::move(storage->bound_args_),
336 const StorageType* storage = static_cast<StorageType*>(base); local
338 std::tuple_size<decltype(storage->bound_args_)>::value;
339 return RunImpl(storage->functor_,
340 storage->bound_args_,
403 const BindStateType* storage = static_cast<const BindStateType*>(base); local
405 std::tuple_size<decltype(storage->bound_args_)>::value
    [all...]
  /external/libcxxabi/test/
test_vector1.pass.cpp 71 void *storage; member in struct:vec_on_stack
72 vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct )) {}
73 ~vec_on_stack () CAN_THROW {__cxxabiv1::__cxa_vec_delete ( storage, 40, 8, throw_destruct ); }
  /external/libopus/celt/
entcode.h 66 opus_uint32 storage; member in struct:ec_ctx
  /external/mdnsresponder/mDNSPosix/
PosixDaemon.c 75 // name in persistent storage for next time. It should also inform the user of the name change.
85 // Allocate another chunk of cache storage
86 CacheEntity *storage = malloc(sizeof(CacheEntity) * RR_CACHE_SIZE); local
87 if (storage) mDNS_GrowCache(m, storage, RR_CACHE_SIZE);

Completed in 1121 milliseconds

1 2 3 4 56 7 8 91011>>