Home
last modified time | relevance | path

Searched +defs:val +defs:allocation (Results 1 – 25 of 85) sorted by relevance

1234

/aosp_15_r20/hardware/interfaces/renderscript/1.0/vts/functional/
H A DVtsCopyTests.cpp40 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
46 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
76 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
82 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
113 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
119 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
150 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
154 Allocation allocation = context->allocationCreateFromBitmap(type, in TEST_P() local
194 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
246 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return (float)val++; }); in TEST_P() local
[all …]
H A DVtsScriptTests.cpp209 std::generate(dataIn.begin(), dataIn.end(), [](){ static uint8_t val = 0; return val++; }); in TEST_P() local
210 std::generate(expected.begin(), expected.end(), [](){ static uint8_t val = 1; return val++; }); in TEST_P() local
214 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
258 std::generate(dataIn.begin(), dataIn.end(), [](){ static int val = 0; return val++; }); in TEST_P() local
262 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
306 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
438 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
515 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
H A DVtsMiscellaneousTests.cpp56 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
120 Allocation allocation = context->allocationCreateTyped(type, AllocationMipmapControl::NONE, in TEST_P() local
158 std::generate(dataIn.begin(), dataIn.end(), [](){ static uint32_t val = 0; return val++; }); in TEST_P() local
211 std::generate(dataIn.begin(), dataIn.end(), [](){ static uint32_t val = 0; return val++; }); in TEST_P() local
/aosp_15_r20/hardware/interfaces/renderscript/1.0/default/
H A DContext.cpp96 Return<Type> Context::allocationGetType(Allocation allocation) { in allocationGetType()
129 Return<NativeWindow> Context::allocationGetNativeWindow(Allocation allocation) { in allocationGetNativeWindow()
135 Return<void> Context::allocationSetNativeWindow(Allocation allocation, NativeWindow nativewindow) { in allocationSetNativeWindow()
156 Return<void> Context::allocationCopyToBitmap(Allocation allocation, Ptr data, Size sizeBytes) { in allocationCopyToBitmap()
164 Return<void> Context::allocation1DWrite(Allocation allocation, uint32_t offset, uint32_t lod, uint3… in allocation1DWrite()
175 Return<void> Context::allocationElementWrite(Allocation allocation, uint32_t x, uint32_t y, uint32_… in allocationElementWrite()
188 Return<void> Context::allocation2DWrite(Allocation allocation, uint32_t xoff, uint32_t yoff, uint32… in allocation2DWrite()
203 Return<void> Context::allocation3DWrite(Allocation allocation, uint32_t xoff, uint32_t yoff, uint32… in allocation3DWrite()
219 Return<void> Context::allocationGenerateMipmaps(Allocation allocation) { in allocationGenerateMipmaps()
225 Return<void> Context::allocationRead(Allocation allocation, Ptr data, Size sizeBytes) { in allocationRead()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/lite/
H A Dmodel_builder.cc48 std::unique_ptr<Allocation> allocation; in GetAllocationFromFile() local
78 std::unique_ptr<Allocation> allocation( in BuildFromBuffer() local
87 std::unique_ptr<Allocation> allocation( in VerifyAndBuildFromBuffer() local
94 std::unique_ptr<Allocation> allocation, ErrorReporter* error_reporter) { in BuildFromAllocation()
104 std::unique_ptr<Allocation> allocation, TfLiteVerifier* extra_verifier, in VerifyAndBuildFromAllocation()
183 std::string val = in ReadAllMetadata() local
207 FlatBufferModel::FlatBufferModel(std::unique_ptr<Allocation> allocation, in FlatBufferModel()
/aosp_15_r20/external/swiftshader/src/Reactor/
H A DLLVMJIT.cpp400 T alignUp(T val, T alignment) in alignUp()
408 auto allocation = new uint8_t[size + sizeof(uint8_t) + alignment]; in alignedAlloc() local
421 auto allocation = aligned - offset; in alignedFree() local
432 static void atomicStore(void *ptr, void *val, llvm::AtomicOrdering ordering) in atomicStore()
439 static uint32_t sync_fetch_and_op(uint32_t volatile *ptr, uint32_t val, F f) in sync_fetch_and_op()
498 …static uint32_t sync_fetch_and_add_4(uint32_t *ptr, uint32_t val) { return __sync_fetch_and_add_4(… in sync_fetch_and_add_4()
499 …static uint32_t sync_fetch_and_and_4(uint32_t *ptr, uint32_t val) { return __sync_fetch_and_and_4(… in sync_fetch_and_and_4()
500 …static uint32_t sync_fetch_and_or_4(uint32_t *ptr, uint32_t val) { return __sync_fetch_and_or_4(pt… in sync_fetch_and_or_4()
501 …static uint32_t sync_fetch_and_xor_4(uint32_t *ptr, uint32_t val) { return __sync_fetch_and_xor_4(… in sync_fetch_and_xor_4()
502 …static uint32_t sync_fetch_and_sub_4(uint32_t *ptr, uint32_t val) { return __sync_fetch_and_sub_4(… in sync_fetch_and_sub_4()
[all …]
/aosp_15_r20/external/swiftshader/third_party/marl/include/marl/
H A Dmemory.h40 MARL_NO_EXPORT inline T alignUp(T val, T alignment) { in alignUp()
164 Allocation allocation; in operator() local
310 void TrackedAllocator::free(const Allocation& allocation) { in free()
429 void StlAllocator<T>::construct(pointer p, const_reference val) { in construct()
/aosp_15_r20/out/soong/.intermediates/frameworks/minikin/rust/libminikin_cxx_bridge_code/gen/
Dminikin_cxx_bridge_generated.cpp443 class Box<T>::allocation { class in rust::cxxbridge1::Box
448 allocation() noexcept : ptr(alloc()) {} in allocation() function in rust::cxxbridge1::Box::allocation
463 Box<T>::Box(const T &val) { in Box()
471 Box<T>::Box(T &&val) { in Box()
/aosp_15_r20/out/soong/.intermediates/frameworks/native/libs/input/rust/libinput_cxx_bridge_code/gen/
Dinput_cxx_bridge_generated.cpp491 class Box<T>::allocation { class in rust::cxxbridge1::Box
496 allocation() noexcept : ptr(alloc()) {} in allocation() function in rust::cxxbridge1::Box::allocation
511 Box<T>::Box(const T &val) { in Box()
519 Box<T>::Box(T &&val) { in Box()
/aosp_15_r20/external/vulkan-validation-layers/layers/
H A Dvk_mem_alloc.h3486 static inline T VmaAlignUp(T val, T align) in VmaAlignUp()
3493 static inline T VmaAlignDown(T val, T align) in VmaAlignDown()
5630 …virtual void Free(const VmaAllocation allocation) { FreeAtOffset(allocation, allocation->GetOffset… in Free()
5672 } allocation; member
8138 void VmaBlockMetadata_Generic::Free(const VmaAllocation allocation) in Free()
10221 void VmaBlockMetadata_Linear::Free(const VmaAllocation allocation) in Free()
13512 VmaAllocation allocation) in RecordAllocateMemory()
13565 VmaAllocation allocation) in RecordAllocateMemoryForBuffer()
13594 VmaAllocation allocation) in RecordAllocateMemoryForImage()
13619 VmaAllocation allocation) in RecordFreeMemory()
[all …]
/aosp_15_r20/external/angle/third_party/vulkan_memory_allocator/include/
H A Dvk_mem_alloc.h3383 static inline T VmaAlignUp(T val, T alignment) in VmaAlignUp()
3392 static inline T VmaAlignDown(T val, T alignment) in VmaAlignDown()
6462 VmaAllocation allocation = reinterpret_cast<VmaAllocation>(userData); in DebugLogAllocation() local
10966 void SetIncrementalSort(bool val) { m_IncrementalSort = val; } in SetIncrementalSort()
11309 void VmaVirtualBlock_T::GetAllocationInfo(VmaVirtualAllocation allocation, VmaVirtualAllocationInfo… in GetAllocationInfo()
12075 uint8_t VmaAllocation_T::SwapBlockAllocation(VmaAllocator hAllocator, VmaAllocation allocation) in SwapBlockAllocation()
15143 VmaAllocation allocation = pAllocations[allocIndex]; in FreeMemory() local
15749 void VmaAllocator_T::FreeDedicatedMemory(const VmaAllocation allocation) in FreeDedicatedMemory()
15834 VmaAllocation allocation, in GetFlushOrInvalidateRange()
16724 VmaAllocation allocation) in vmaFreeMemory()
[all …]
/aosp_15_r20/external/skia/vma_android/include/
H A Dvk_mem_alloc.h3296 static inline T VmaAlignUp(T val, T alignment) in VmaAlignUp()
3305 static inline T VmaAlignDown(T val, T alignment) in VmaAlignDown()
6399 VmaAllocation allocation = reinterpret_cast<VmaAllocation>(userData); in DebugLogAllocation() local
10942 void SetIncrementalSort(bool val) { m_IncrementalSort = val; } in SetIncrementalSort()
11279 void VmaVirtualBlock_T::GetAllocationInfo(VmaVirtualAllocation allocation, VmaVirtualAllocationInfo… in GetAllocationInfo()
12036 uint8_t VmaAllocation_T::SwapBlockAllocation(VmaAllocator hAllocator, VmaAllocation allocation) in SwapBlockAllocation()
15075 VmaAllocation allocation = pAllocations[allocIndex]; in FreeMemory() local
15681 void VmaAllocator_T::FreeDedicatedMemory(const VmaAllocation allocation) in FreeDedicatedMemory()
15766 VmaAllocation allocation, in GetFlushOrInvalidateRange()
16656 VmaAllocation allocation) in vmaFreeMemory()
[all …]
/aosp_15_r20/external/angle/third_party/vulkan_memory_allocator/src/
H A DTests.cpp408 Allocation allocation = {}; in MainTest() local
950 uint32_t val = currAllocInfo.m_StartValue; in UploadGpuData() local
996 uint32_t val = currAllocInfo.m_StartValue; in UploadGpuData() local
1096 uint32_t val = allocInfo[validateAllocIndex].m_StartValue; in ValidateGpuData() local
1154 uint32_t val = allocInfo[validateAllocIndex].m_StartValue; in ValidateGpuData() local
1325 static void DestroyAllocation(const AllocInfo& allocation) in DestroyAllocation()
1340 static void ValidateAllocationData(const AllocInfo& allocation) in ValidateAllocationData()
1377 static void RecreateAllocationResource(AllocInfo& allocation) in RecreateAllocationResource()
2429 AllocInfo allocation; in TestDefragmentationFull() local
3374 VmaVirtualAllocation allocation; in TestVirtualBlocks() local
[all …]
/aosp_15_r20/art/tools/jvmti-agents/ti-alloc-sample/
H A Dti_alloc_sample.cc44 struct jlongContainer { jlong val; }; member
282 std::ostringstream allocation; in formatAllocation() local
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dir_emitter.cc279 for (const BufferAllocation& allocation : assignment_.Allocations()) { in EmitConstantGlobals() local
2737 [&](llvm::Value* val) { return val->getType(); }); in EmitCallToFunc()
3228 const BufferAllocation& allocation = *slice.allocation(); in EmitThreadLocalBufferPointer() local
3279 const BufferAllocation& allocation = *slice.allocation(); in EmitGlobalBufferPointer() local
/aosp_15_r20/packages/modules/NeuralNetworks/runtime/
DNeuralNetworksV2.cpp1138 const FlatbufferModelBuilder* val = reinterpret_cast<const FlatbufferModelBuilder*>(value); in ANeuralNetworksModel_setOperandValueFromModel() local
1409 TfLiteCustomAllocation allocation = {.data = buffer, .bytes = bufferSize}; in ANeuralNetworksExecution_setOutput() local
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dir_emitter_unnested.cc2987 [](const BufferAllocation* allocation) { in BuildKernelThunkImpl()
3387 auto constant = [&](int64_t val) { in EmitXTileLoop()
3432 auto constant = [&](int64_t val) { in EmitTile()
/aosp_15_r20/developers/build/prebuilts/androidtv/sample-inputs/app/libs/
HDexoplayer_dev-hls_20150123.jar ... .android.exoplayer.audio.AudioTrack$InitializationException val$e final synthetic com.google.android. ...
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/mediarouter/mediarouter/1.5.0-alpha01/androidx.mediarouter_mediarouter/android_common/aar/
Dclasses.jarandroidx/ androidx/mediarouter/ androidx/mediarouter/app/ androidx/mediarouter/media/ androidx ...
Dandroidx.mediarouter_mediarouter.jarandroidx/ androidx/mediarouter/ androidx/mediarouter/app/ androidx/mediarouter/media/ androidx ...
/aosp_15_r20/out/soong/.intermediates/packages/apps/Camera2/Camera2/android_common/javac/
DCamera2.jar ... $AnimatorListener { final synthetic android.view.View val$view final synthetic com.android.camera. ...
/aosp_15_r20/prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
Dnashorn.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/javax. ...
/aosp_15_r20/prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
Dnashorn.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/javax. ...
/aosp_15_r20/out/soong/.intermediates/prebuilts/tools/common/m2/dialer-dagger2-compiler-deps/linux_glibc_common/local-combined/
Ddialer-dagger2-compiler-deps.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/eclipse.inf META ...
/aosp_15_r20/prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/
HDdagger-compiler-2.7.jar ... { final synthetic dagger.internal.codegen.BindingKey val$bindingKey final synthetic dagger.internal.codegen. ...

1234