Home
last modified time | relevance | path

Searched refs:host_memory (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/Vulkan/
DVkDescriptorSetLayout.cpp36 char* host_memory = static_cast<char*>(mem) + bindingCount * sizeof(VkDescriptorSetLayoutBinding); in DescriptorSetLayout() local
44 bindings[i].pImmutableSamplers = reinterpret_cast<const VkSampler*>(host_memory); in DescriptorSetLayout()
45 host_memory += immutableSamplersSize; in DescriptorSetLayout()
/external/tensorflow/tensorflow/core/graph/
Dgraph_partition.cc202 bool host_memory = false; in AddSend() local
206 host_memory = (src_it->second == HOST_MEMORY); in AddSend()
212 const string cast_op = (host_memory) ? "_HostCast" : "Cast"; in AddSend()
237 const string send_op = (host_memory) ? "_HostSend" : "_Send"; in AddSend()
265 bool host_memory = false; in AddRecv() local
269 host_memory = (dst_it->second == HOST_MEMORY); in AddRecv()
273 const string recv_op = (host_memory) ? "_HostRecv" : "_Recv"; in AddRecv()
286 const string cast_op = (host_memory) ? "_HostCast" : "Cast"; in AddRecv()