• Home
  • Raw
  • Download

Lines Matching refs:Allocation

30 void * Allocation::getIDSafe() const {  in getIDSafe()
37 void Allocation::updateCacheInfo(sp<const Type> t) { in updateCacheInfo()
50 Allocation::Allocation(void *id, RenderScript *rs, sp<const Type> t, uint32_t usage) : in Allocation() function in Allocation
80 void Allocation::validateIsInt32() { in validateIsInt32()
88 void Allocation::validateIsInt16() { in validateIsInt16()
96 void Allocation::validateIsInt8() { in validateIsInt8()
104 void Allocation::validateIsFloat32() { in validateIsFloat32()
112 void Allocation::validateIsObject() { in validateIsObject()
129 void Allocation::updateFromNative() { in updateFromNative()
142 void Allocation::syncAll(RsAllocationUsageType srcLocation) { in syncAll()
155 void Allocation::ioSendOutput() { in ioSendOutput()
162 void Allocation::ioGetInput() { in ioGetInput()
223 void Allocation::generateMipmaps() { in generateMipmaps()
227 void Allocation::copy1DRangeFromUnchecked(uint32_t off, size_t count, const void *data, in copy1DRangeFromUnchecked()
246 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const int32_t *d, size_t dataLen) { in copy1DRangeFrom()
251 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const int16_t *d, size_t dataLen) { in copy1DRangeFrom()
256 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const int8_t *d, size_t dataLen) { in copy1DRangeFrom()
261 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const float *d, size_t dataLen) { in copy1DRangeFrom()
266 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const Allocation *data, in copy1DRangeFrom()
275 void Allocation::validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h) { in validate2DRange()
285 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, in copy2DRangeFrom()
292 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, in copy2DRangeFrom()
299 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, in copy2DRangeFrom()
306 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, in copy2DRangeFrom()
313 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, in copy2DRangeFrom()
314 const Allocation *data, size_t dataLen, in copy2DRangeFrom()
381 android::sp<Allocation> Allocation::createTyped(RenderScript *rs, sp<const Type> type, in createTyped()
388 return new Allocation(id, rs, type, usage); in createTyped()
391 android::sp<Allocation> Allocation::createTyped(RenderScript *rs, sp<const Type> type, in createTyped()
397 return new Allocation(id, rs, type, usage); in createTyped()
400 android::sp<Allocation> Allocation::createTyped(RenderScript *rs, sp<const Type> type, in createTyped()
405 android::sp<Allocation> Allocation::createSized(RenderScript *rs, sp<const Element> e, in createSized()
417 return new Allocation(id, rs, t, usage); in createSized()