/external/skia/tests/ |
SwizzlerTest.cpp | 32 SkAutoTDeleteArray<uint8_t> storage(SkNEW_ARRAY(uint8_t, totalBytes)); 33 memset(storage.get(), 0, totalBytes); 35 uint8_t* imageData = storage.get() + offset;
|
QuickRejectTest.cpp | 19 SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const override { 20 return SkNEW_PLACEMENT(storage, TestDrawLooperContext);
|
/frameworks/base/include/storage/ |
IMountService.h | 20 #include <storage/IMountServiceListener.h> 21 #include <storage/IMountShutdownObserver.h> 22 #include <storage/IObbActionListener.h>
|
/art/runtime/base/ |
bit_vector.h | 120 uint32_t* storage); 231 // Is bit set in storage. (No range check.) 232 static bool IsBitSet(const uint32_t* storage, uint32_t idx) { 233 return (storage[WordIndex(idx)] & BitMask(idx)) != 0; 236 // Number of bits set in range [0, end) in storage. (No range check.) 237 static uint32_t NumSetBits(const uint32_t* storage, uint32_t end); 253 // The index of the word within storage. 266 uint32_t* storage_; // The storage for the bit vector.
|
/external/clang/test/Analysis/Inputs/ |
system-header-simulator-cxx.h | 166 } storage; member in class:std::basic_string 182 return isLong ? storage.externalStorage : storage.localStorage; 186 // Fake deallocate stack-based storage. 193 // Fake deallocate stack-based storage, then use the variable in the 198 storage.assignExternal(new _CharT[4]);
|
/external/libopus/celt/ |
entcode.h | 60 opus_uint32 storage; member in struct:ec_ctx
|
/external/libvorbis/lib/ |
envelope.h | 67 long storage; member in struct:__anon13671
|
/external/opencv/cv/src/ |
_cvgeom.h | 87 CvMemStorage* storage,
|
/external/skia/src/core/ |
SkFilterShader.h | 48 Context* onCreateContext(const ContextRec&, void* storage) const override;
|
SkVarAlloc.h | 17 // Same as above, but first uses up to len bytes from storage. 18 SkVarAlloc(size_t minLgSize, char* storage, size_t len);
|
/external/skia/src/effects/gradients/ |
SkLinearGradient.h | 43 Context* onCreateContext(const ContextRec&, void* storage) const override;
|
SkRadialGradient.h | 45 Context* onCreateContext(const ContextRec&, void* storage) const override;
|
SkSweepGradient.h | 46 Context* onCreateContext(const ContextRec&, void* storage) const override;
|
/frameworks/base/libs/storage/ |
IMountServiceListener.cpp | 17 #include <storage/IMountServiceListener.h>
|
IObbActionListener.cpp | 17 #include <storage/IObbActionListener.h>
|
/frameworks/base/media/java/android/mtp/ |
MtpStorage.java | 20 import android.os.storage.StorageVolume; 23 * This class represents a storage unit on an MTP device. 48 * Returns the storage ID for the storage unit 50 * @return the storage ID 57 * Returns the file path for the storage unit's storage in the file system 59 * @return the storage file path 66 * Returns the description string for the storage unit 68 * @return the storage unit descriptio [all...] |
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
StorageWizardReady.java | 20 import android.os.storage.VolumeInfo;
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/ |
FormatAsPublicStepFragment.java | 17 package com.android.tv.settings.device.storage; 21 import android.os.storage.DiskInfo; 22 import android.os.storage.StorageManager; 23 import android.os.storage.VolumeInfo;
|
StorageGuidedStepFragment.java | 17 package com.android.tv.settings.device.storage;
|
/packages/providers/MediaProvider/tools/genfiles/ |
genfiles.sh | 28 EXTERNAL="/storage" 34 echo "Usage: $0 <file.db> [external storage root]" 59 echo "cat /storage/sdcard0/proto.jpg > \"$data\"" >> $CPFILES 63 echo "cat /storage/sdcard0/proto.png > \"$data\"" >> $CPFILES 67 echo "cat /storage/sdcard0/proto.gif > \"$data\"" >> $CPFILES 71 echo "cat /storage/sdcard0/proto.txt > \"$data\"" >> $CPFILES 75 echo "cat /storage/sdcard0/proto.html > \"$data\"" >> $CPFILES 79 echo "cat /storage/sdcard0/proto.mp3 > \"$data\"" >> $CPFILES 83 echo "cat /storage/sdcard0/proto.wav > \"$data\"" >> $CPFILES 87 echo "cat /storage/sdcard0/proto.m4v > \"$data\"" >> $CPFILE [all...] |
/system/core/include/utils/ |
VectorImpl.h | 102 virtual void do_construct(void* storage, size_t num) const = 0; 103 virtual void do_destroy(void* storage, size_t num) const = 0; 113 inline void _do_construct(void* storage, size_t num) const; 114 inline void _do_destroy(void* storage, size_t num) const;
|
/system/core/libpixelflinger/codeflinger/tinyutils/ |
VectorImpl.h | 95 virtual void do_construct(void* storage, size_t num) const = 0; 96 virtual void do_destroy(void* storage, size_t num) const = 0; 116 inline void _do_construct(void* storage, size_t num) const; 117 inline void _do_destroy(void* storage, size_t num) const;
|
/external/deqp/framework/opengl/ |
gluVarType.cpp | 170 const char* getStorageName (Storage storage) 174 return de::getSizedArrayElement<STORAGE_LAST>(s_names, storage); 259 VariableDeclaration::VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_, Interpolation interpolation_, const Layout& layout_, deUint32 memoryAccessQualifierBits_) 262 , storage (storage_) 273 storage == other.storage && 288 , storage (glu::STORAGE_LAST) 339 if (decl.storage != STORAGE_LAST) 340 str << getStorageName(decl.storage) << " "; [all...] |
/external/deqp/framework/randomshaders/ |
rsgVariable.cpp | 31 Variable::Variable (const VariableType& type, Storage storage, const char* name) 33 , m_storage (storage)
|
/external/skia/bench/ |
DecodingBench.cpp | 78 explicit TargetAllocator(void* storage) 79 : fPixelStorage(storage) {}
|