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

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/intel/vulkan/
anv_wsi.c 40 result = wsi_x11_init_wsi(&physical_device->wsi_device, &physical_device->instance->alloc);
46 result = wsi_wl_init_wsi(&physical_device->wsi_device, &physical_device->instance->alloc,
51 wsi_x11_finish_wsi(&physical_device->wsi_device, &physical_device->instance->alloc);
64 wsi_wl_finish_wsi(&physical_device->wsi_device, &physical_device->instance->alloc);
67 wsi_x11_finish_wsi(&physical_device->wsi_device, &physical_device->instance->alloc);
82 vk_free2(&instance->alloc, pAllocator, surface);
96 &device->instance->alloc,
267 const VkAllocationCallbacks *alloc; local
270 alloc = pAllocator;
272 alloc = &device->alloc
298 const VkAllocationCallbacks *alloc; local
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/xtensa/
ffi.c 195 void *alloc = NULL; local
208 alloc = alloca(ALIGN(rsize, 4));
209 ecif.rvalue = alloc;
221 if (alloc != NULL && rvalue != NULL)
222 memcpy(rvalue, alloc, rsize);
  /external/python/cpython3/Modules/_ctypes/libffi/src/xtensa/
ffi.c 195 void *alloc = NULL; local
208 alloc = alloca(ALIGN(rsize, 4));
209 ecif.rvalue = alloc;
221 if (alloc != NULL && rvalue != NULL)
222 memcpy(rvalue, alloc, rsize);
  /external/python/cpython3/Modules/
hashtable.h 101 _Py_hashtable_allocator_t alloc; member in struct:_Py_hashtable_t
  /external/skia/src/core/
SkPM4fPriv.h 155 SkArenaAlloc* alloc,
159 append_gamut_transform(p, alloc->makeArrayDefault<float>(12), src, dst, alphaType);
169 SkSTArenaAlloc<256> alloc; local
170 SkRasterPipeline p(&alloc);
171 p.append_constant_color(&alloc, color4f);
  /external/skia/src/gpu/vk/
GrVkBuffer.h 30 const GrVkAlloc& alloc() const { return fResource->fAlloc; } function in class:GrVkBuffer
60 Resource(VkBuffer buf, const GrVkAlloc& alloc, Type type)
61 : INHERITED(), fBuffer(buf), fAlloc(alloc), fType(type) {}
GrVkImage.h 38 const GrVkAlloc& alloc() const { return fInfo.fAlloc; } function in class:GrVkImage
92 void setNewResource(VkImage image, const GrVkAlloc& alloc, VkImageTiling tiling);
106 Resource(VkImage image, const GrVkAlloc& alloc, VkImageTiling tiling)
108 , fAlloc(alloc)
142 BorrowedResource(VkImage image, const GrVkAlloc& alloc, VkImageTiling tiling)
143 : Resource(image, alloc, tiling) {
  /external/skqp/src/core/
SkPM4fPriv.h 155 SkArenaAlloc* alloc,
159 append_gamut_transform(p, alloc->makeArrayDefault<float>(12), src, dst, alphaType);
169 SkSTArenaAlloc<256> alloc; local
170 SkRasterPipeline p(&alloc);
171 p.append_constant_color(&alloc, color4f);
  /external/skqp/src/gpu/vk/
GrVkBuffer.h 30 const GrVkAlloc& alloc() const { return fResource->fAlloc; } function in class:GrVkBuffer
60 Resource(VkBuffer buf, const GrVkAlloc& alloc, Type type)
61 : INHERITED(), fBuffer(buf), fAlloc(alloc), fType(type) {}
GrVkImage.h 38 const GrVkAlloc& alloc() const { return fInfo.fAlloc; } function in class:GrVkImage
93 void setNewResource(VkImage image, const GrVkAlloc& alloc, VkImageTiling tiling);
107 Resource(VkImage image, const GrVkAlloc& alloc, VkImageTiling tiling)
109 , fAlloc(alloc)
143 BorrowedResource(VkImage image, const GrVkAlloc& alloc, VkImageTiling tiling)
144 : Resource(image, alloc, tiling) {
  /external/tensorflow/tensorflow/compiler/jit/
xla_device.cc 101 std::unique_ptr<XlaDeviceAllocator> alloc = local
103 XlaDeviceAllocator* alloc_ptr = alloc.get();
104 state.allocators_[{backend, device_ordinal}] = std::move(alloc);
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_executable.cc 236 se::DeviceMemoryBase alloc = buffers[i]; local
237 if (!buffers_in_result[i] && !alloc.is_null()) {
239 << alloc.opaque() << "]";
241 allocator->Deallocate(stream->parent()->device_ordinal(), &alloc));
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_event_mgr.h 60 Allocator* alloc; member in struct:tensorflow::EventMgr::BufRec
68 // Takes ownership of *bufrec.buf and calls bufrec.alloc->DeallocateRaw()
124 iu.bufrec.alloc, false);
126 iu.bufrec.alloc->DeallocateRaw(iu.bufrec.buf);
gpu_util.cc 150 Allocator* alloc = nullptr; local
155 alloc = ProcessState::singleton()->GetCUDAHostAllocator(0);
156 buf = alloc->Allocate<char>(total_bytes);
160 total_bytes, buf, alloc);
170 total_bytes, alloc, tensor_ref]() {
181 buf, alloc, false);
183 alloc->Deallocate<char>(buf, total_bytes);
  /frameworks/base/libs/hwui/
RecordingCanvas.h 201 return mState.writableSnapshot()->mutateClipArea().serializeClip(alloc());
211 LinearAllocator& alloc() { return mDisplayList->allocator; } function in class:android::uirenderer::RecordingCanvas
219 T* dstBuffer = (T*)mDisplayList->allocator.alloc<T>(count * sizeof(T));
  /frameworks/base/libs/hwui/utils/
LinearAllocator.h 56 * Note that unlike create, for alloc the type is purely for compile-time error
60 void* alloc(size_t size) { function in class:android::uirenderer::LinearAllocator
175 return (T*)(linearAllocator.alloc<void*>(num * sizeof(T)));
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicYuvToRGB.cpp 44 ObjectBaseRef<Allocation> alloc; member in class:android::renderscript::RsdCpuScriptIntrinsicYuvToRGB
54 alloc.set(static_cast<Allocation *>(data));
102 if (!cp->alloc.get()) {
106 const uchar *pinY = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr;
112 size_t strideY = cp->alloc->mHal.drvState.lod[0].stride;
115 if (cp->alloc->mHal.drvState.lod[0].dimY == 0) {
124 size_t cstep = cp->alloc->mHal.drvState.yuv.step;
126 const uchar *pinU = (const uchar *)cp->alloc->mHal.drvState.lod[1].mallocPtr;
127 const size_t strideU = cp->alloc->mHal.drvState.lod[1].stride;
130 const uchar *pinV = (const uchar *)cp->alloc->mHal.drvState.lod[2].mallocPtr
    [all...]
  /frameworks/rs/
rsScriptGroup.cpp 234 Allocation * alloc = Allocation::createAllocation(rsc, local
236 l->mAlloc = alloc;
240 n->mOutputs[ct3]->mAlloc = alloc;
384 RsAllocation alloc) {
387 s->setInput(rsc, (ScriptKernelID *)kid, (Allocation *)alloc);
391 RsAllocation alloc) {
394 s->setOutput(rsc, (ScriptKernelID *)kid, (Allocation *)alloc);
  /frameworks/rs/tests/lldb/java/Reduction/src/com/android/rs/lldbreductiontest/
MainActivity.java 66 RenderScript rs, ScriptC_reduce_auto_comb s, Allocation alloc) {
71 return s.reduce_find_min_user_type_auto_comb(alloc).get();
74 private float findMinUserType(RenderScript rs, ScriptC_reduce s, Allocation alloc) {
79 return s.reduce_find_min_user_type(alloc).get();
91 Allocation alloc = minUserType.getAllocation(); local
93 return findMinUserTypeAutoComb(rs, s, alloc);
105 Allocation alloc = minUserType.getAllocation(); local
107 return findMinUserType(rs, s, alloc);
  /hardware/google/av/codec2/hidl/1.0/utils/
InputSurfaceConnection.cpp 171 std::shared_ptr<C2GraphicAllocation> alloc; variable
177 c2_status_t err = mAllocator->priorGraphicAllocation(handle, &alloc);
183 _C2BlockFactory::CreateGraphicBlock(alloc);
  /hardware/google/av/media/sfplugin/
C2OMXNode.cpp 218 std::shared_ptr<C2GraphicAllocation> alloc; local
226 c2_status_t err = mAllocator->priorGraphicAllocation(handle, &alloc);
230 block = _C2BlockFactory::CreateGraphicBlock(alloc);
  /hardware/intel/common/libwsbm/src/
wsbm_driver.h 92 struct _ValidateNode *(*alloc) (struct _WsbmVNodeFuncs *, int); member in struct:_WsbmVNodeFuncs
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/test/
QCameraHAL3Test.cpp 98 struct ion_allocation_data alloc; local
108 memset(&alloc, 0, sizeof(alloc));
110 alloc.len = (size_t)(buf_size);
111 alloc.len = (alloc.len + 4095U) & (~4095U);
112 alloc.align = 4096;
113 alloc.flags = ION_FLAG_CACHED;
114 alloc.heap_id_mask = ION_HEAP(ION_SYSTEM_HEAP_ID);
115 rc = ioctl(main_ion_fd, ION_IOC_ALLOC, &alloc);
    [all...]
  /hardware/qcom/display/msm8084/liboverlay/
overlayWriteback.cpp 49 return alloc(size, isSecure);
52 bool WritebackMem::alloc(uint32_t size, bool isSecure) { function in class:overlay::WritebackMem
  /hardware/qcom/display/msm8226/liboverlay/
overlayWriteback.cpp 49 return alloc(size, isSecure);
52 bool WritebackMem::alloc(uint32_t size, bool isSecure) { function in class:overlay::WritebackMem

Completed in 1699 milliseconds

1 2 3 4 56 7 8 91011>>