Searched defs:device (Results 251 - 275 of 653) sorted by relevance

<<11121314151617181920>>

/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiNullHandleTests.cpp67 inline void release (Context& context, VkDevice device, const VkAllocationCallbacks* pAllocator) argument
69 context.getDeviceInterface().destroyDevice(device, pAllocator);
142 inline void release (Context& context, VkDevice device, VkCommandPool cmdPool, deUint32 numCmdBuffers, const VkCommandBuffer* pCmdBuffers) argument
144 DE_ASSERT(device != DE_NULL);
147 context.getDeviceInterface().freeCommandBuffers(device, cmdPool, numCmdBuffers, pCmdBuffers);
150 inline void release (Context& context, VkDevice device, VkDescriptorPool descriptorPool, deUint32 numDescriptorSets, const VkDescriptorSet* pDescriptorSets) argument
152 DE_ASSERT(device != DE_NULL);
155 context.getDeviceInterface().freeDescriptorSets(device, descriptorPool, numDescriptorSets, pDescriptorSets);
190 const VkDevice device = context.getDevice(); local
206 const Unique<VkCommandPool> cmdPool (createCommandPool(vk, device,
227 const VkDevice device = context.getDevice(); local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/clipping/
H A DvktClippingUtil.cpp94 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex) argument
103 return createCommandPool(vk, device, &info);
106 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool) argument
116 return allocateCommandBuffer(vk, device, &info);
120 const VkDevice device,
132 return allocateDescriptorSet(vk, device, &info);
136 const VkDevice device,
149 return createPipelineLayout(vk, device, &info);
153 const VkDevice device)
165 return createPipelineLayout(vk, device,
119 makeDescriptorSet(const DeviceInterface& vk, const VkDevice device, const VkDescriptorPool descriptorPool, const VkDescriptorSetLayout setLayout) argument
135 makePipelineLayout(const DeviceInterface& vk, const VkDevice device, const VkDescriptorSetLayout descriptorSetLayout) argument
152 makePipelineLayoutWithoutDescriptors(const DeviceInterface& vk, const VkDevice device) argument
168 makeImageView(const DeviceInterface& vk, const VkDevice device, const VkImage image, const VkImageViewType viewType, const VkFormat format, const VkImageSubresourceRange subresourceRange) argument
221 submitCommandsAndWait(const DeviceInterface& vk, const VkDevice device, const VkQueue queue, const VkCommandBuffer commandBuffer) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/compute/
H A DvktComputeBasicComputeShaderTests.cpp190 const VkDevice device = m_context.getDevice(); local
201 const Buffer buffer(vk, device, allocator, makeBufferCreateInfo(bufferSizeBytes, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
208 .build(vk, device));
213 .build(vk, device, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, 1u));
215 const Unique<VkDescriptorSet> descriptorSet(makeDescriptorSet(vk, device, *descriptorPool, *descriptorSetLayout));
220 .update(vk, device);
224 const Unique<VkShaderModule> shaderModule(createShaderModule(vk, device, m_context.getBinaryCollection().get("comp"), 0u));
225 const Unique<VkPipelineLayout> pipelineLayout(makePipelineLayout(vk, device, *descriptorSetLayout));
226 const Unique<VkPipeline> pipeline(makeComputePipeline(vk, device, *pipelineLayout, *shaderModule));
230 const Unique<VkCommandPool> cmdPool(makeCommandPool(vk, device, queueFamilyInde
361 const VkDevice device = m_context.getDevice(); local
534 const VkDevice device = m_context.getDevice(); local
[all...]
H A DvktComputeTestsUtil.cpp36 const VkDevice device,
41 m_buffer = createBuffer(vk, device, &bufferCreateInfo);
42 m_allocation = allocator.allocate(getBufferMemoryRequirements(vk, device, *m_buffer), memoryRequirement);
43 VK_CHECK(vk.bindBufferMemory(device, *m_buffer, m_allocation->getMemory(), m_allocation->getOffset()));
47 const VkDevice device,
52 m_image = createImage(vk, device, &imageCreateInfo);
53 m_allocation = allocator.allocate(getImageMemoryRequirements(vk, device, *m_image), memoryRequirement);
54 VK_CHECK(vk.bindImageMemory(device, *m_image, m_allocation->getMemory(), m_allocation->getOffset()));
89 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex) argument
98 return createCommandPool(vk, device,
35 Buffer(const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkBufferCreateInfo& bufferCreateInfo, const MemoryRequirement memoryRequirement) argument
46 Image(const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkImageCreateInfo& imageCreateInfo, const MemoryRequirement memoryRequirement) argument
101 makeCommandBuffer(const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool) argument
114 makePipelineLayout(const DeviceInterface& vk, const VkDevice device) argument
130 makePipelineLayout(const DeviceInterface& vk, const VkDevice device, const VkDescriptorSetLayout descriptorSetLayout) argument
147 makeComputePipeline(const DeviceInterface& vk, const VkDevice device, const VkPipelineLayout pipelineLayout, const VkShaderModule shaderModule) argument
216 makeDescriptorSet(const DeviceInterface& vk, const VkDevice device, const VkDescriptorPool descriptorPool, const VkDescriptorSetLayout setLayout) argument
293 submitCommandsAndWait(const DeviceInterface& vk, const VkDevice device, const VkQueue queue, const VkCommandBuffer commandBuffer) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateBaseClass.cpp48 const vk::VkDevice device = m_context.getDevice(); local
52 m_pipelineLayout = vk::createPipelineLayout(m_vk, device, &pipelineLayoutCreateInfo);
58 m_colorTargetImage = Image::createAndAlloc(m_vk, device, targetImageCreateInfo, m_context.getDefaultAllocator());
61 m_colorTargetView = vk::createImageView(m_vk, device, &colorTargetViewInfo);
93 m_renderPass = vk::createRenderPass(m_vk, device, &renderPassCreateInfo);
100 m_framebuffer = vk::createFramebuffer(m_vk, device, &framebufferCreateInfo);
132 m_vertexBuffer = Buffer::createAndAlloc(m_vk, device, BufferCreateInfo(dataSize, vk::VK_BUFFER_USAGE_VERTEX_BUFFER_BIT),
138 vk::flushMappedMemoryRange(m_vk, device,
144 m_cmdPool = vk::createCommandPool(m_vk, device, &cmdPoolCreateInfo);
154 m_cmdBuffer = vk::allocateCommandBuffer(m_vk, device,
159 initPipeline(const vk::VkDevice device) argument
[all...]
H A DvktDynamicStateVPTests.cpp260 virtual void initPipeline (const vk::VkDevice device) argument
262 const vk::Unique<vk::VkShaderModule> vs(createShaderModule(m_vk, device, m_context.getBinaryCollection().get(m_vertexShaderName), 0));
263 const vk::Unique<vk::VkShaderModule> gs(createShaderModule(m_vk, device, m_context.getBinaryCollection().get(m_geometryShaderName), 0));
264 const vk::Unique<vk::VkShaderModule> fs(createShaderModule(m_vk, device, m_context.getBinaryCollection().get(m_fragmentShaderName), 0));
281 m_pipeline = vk::createGraphicsPipeline(m_vk, device, DE_NULL, &pipelineCreateInfo);
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
H A DvktFragmentOperationsMakeUtil.cpp98 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex) argument
107 return createCommandPool(vk, device, &info);
110 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool) argument
120 return allocateCommandBuffer(vk, device, &info);
124 const VkDevice device,
136 return allocateDescriptorSet(vk, device, &info);
140 const VkDevice device)
152 return createPipelineLayout(vk, device, &info);
156 const VkDevice device,
169 return createPipelineLayout(vk, device,
123 makeDescriptorSet(const DeviceInterface& vk, const VkDevice device, const VkDescriptorPool descriptorPool, const VkDescriptorSetLayout setLayout) argument
139 makePipelineLayout(const DeviceInterface& vk, const VkDevice device) argument
155 makePipelineLayout(const DeviceInterface& vk, const VkDevice device, const VkDescriptorSetLayout descriptorSetLayout) argument
172 makeComputePipeline(const DeviceInterface& vk, const VkDevice device, const VkPipelineLayout pipelineLayout, const VkShaderModule shaderModule, const VkSpecializationInfo* specInfo) argument
234 submitCommandsAndWait(const DeviceInterface& vk, const VkDevice device, const VkQueue queue, const VkCommandBuffer commandBuffer) argument
263 makeFramebuffer(const DeviceInterface& vk, const VkDevice device, const VkRenderPass renderPass, const deUint32 attachmentCount, const VkImageView* pAttachments, const deUint32 width, const deUint32 height, const deUint32 layers) argument
287 bindImage(const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkImage image, const MemoryRequirement requirement) argument
294 bindBuffer(const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkBuffer buffer, const MemoryRequirement requirement) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryTestsUtil.hpp56 const vk::VkDevice device,
61 : m_buffer (createBuffer(vk, device, &bufferCreateInfo))
62 , m_allocation (allocator.allocate(getBufferMemoryRequirements(vk, device, *m_buffer), memoryRequirement))
64 VK_CHECK(vk.bindBufferMemory(device, *m_buffer, m_allocation->getMemory(), m_allocation->getOffset()));
84 const vk::VkDevice device,
89 : m_image (createImage(vk, device, &imageCreateInfo))
90 , m_allocation (allocator.allocate(getImageMemoryRequirements(vk, device, *m_image), memoryRequirement))
92 VK_CHECK(vk.bindImageMemory(device, *m_image, m_allocation->getMemory(), m_allocation->getOffset()));
120 GraphicsPipelineBuilder& setShader (const vk::DeviceInterface& vk, const vk::VkDevice device, const vk::VkShaderStageFlagBits stage, const vk::ProgramBinary& binary, const vk::VkSpecializationInfo* specInfo);
135 vk::Move<vk::VkPipeline> build (const vk::DeviceInterface& vk, const vk::VkDevice device, cons
55 Buffer(const vk::DeviceInterface& vk, const vk::VkDevice device, vk::Allocator& allocator, const vk::VkBufferCreateInfo& bufferCreateInfo, const vk::MemoryRequirement memoryRequirement) argument
83 Image(const vk::DeviceInterface& vk, const vk::VkDevice device, vk::Allocator& allocator, const vk::VkImageCreateInfo& imageCreateInfo, const vk::MemoryRequirement memoryRequirement) argument
196 makeBuffer(const vk::DeviceInterface& vk, const vk::VkDevice device, const vk::VkBufferCreateInfo& createInfo) argument
201 makeImage(const vk::DeviceInterface& vk, const vk::VkDevice device, const vk::VkImageCreateInfo& createInfo) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryAllocationTests.cpp114 const VkDevice device = m_context.getDevice(); local
168 VK_CHECK(vkd.allocateMemory(device, &alloc, (const VkAllocationCallbacks*)DE_NULL, &memoryObjects[ndx]));
179 vkd.freeMemory(device, mem, (const VkAllocationCallbacks*)DE_NULL);
189 vkd.freeMemory(device, mem, (const VkAllocationCallbacks*)DE_NULL);
206 VK_CHECK(vkd.allocateMemory(device, &alloc, (const VkAllocationCallbacks*)DE_NULL, &memoryObjects[ndx]));
209 vkd.freeMemory(device, memoryObjects[ndx], (const VkAllocationCallbacks*)DE_NULL);
222 vkd.freeMemory(device, mem, (const VkAllocationCallbacks*)DE_NULL);
244 size_t computeDeviceMemorySystemMemFootprint (const DeviceInterface& vk, VkDevice device) argument
257 const Unique<VkDeviceMemory> memory (allocateMemory(vk, device, &allocInfo));
357 const VkDevice device local
374 const VkDevice device = m_context.getDevice(); local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMakeUtil.cpp39 const vk::VkDevice device,
43 : m_buffer (createBuffer(vk, device, &bufferCreateInfo))
44 , m_allocation (bindBuffer(vk, device, allocator, *m_buffer, memoryRequirement))
49 const vk::VkDevice device,
53 : m_image (createImage(vk, device, &imageCreateInfo))
54 , m_allocation (bindImage(vk, device, allocator, *m_image, memoryRequirement))
119 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex) argument
128 return createCommandPool(vk, device, &info);
131 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool) argument
141 return allocateCommandBuffer(vk, device,
38 Buffer(const vk::DeviceInterface& vk, const vk::VkDevice device, vk::Allocator& allocator, const vk::VkBufferCreateInfo& bufferCreateInfo, const vk::MemoryRequirement memoryRequirement) argument
48 Image(const vk::DeviceInterface& vk, const vk::VkDevice device, vk::Allocator& allocator, const vk::VkImageCreateInfo& imageCreateInfo, const vk::MemoryRequirement memoryRequirement) argument
144 makeDescriptorSet(const DeviceInterface& vk, const VkDevice device, const VkDescriptorPool descriptorPool, const VkDescriptorSetLayout setLayout) argument
160 makePipelineLayout(const DeviceInterface& vk, const VkDevice device) argument
176 makePipelineLayout(const DeviceInterface& vk, const VkDevice device, const VkDescriptorSetLayout descriptorSetLayout) argument
193 makeComputePipeline(const DeviceInterface& vk, const VkDevice device, const VkPipelineLayout pipelineLayout, const VkShaderModule shaderModule, const VkSpecializationInfo* specInfo) argument
255 submitCommandsAndWait(const DeviceInterface& vk, const VkDevice device, const VkQueue queue, const VkCommandBuffer commandBuffer) argument
284 makeFramebuffer(const DeviceInterface& vk, const VkDevice device, const VkRenderPass renderPass, const deUint32 attachmentCount, const VkImageView* pAttachments, const deUint32 width, const deUint32 height, const deUint32 layers) argument
308 bindImage(const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkImage image, const MemoryRequirement requirement) argument
315 bindBuffer(const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkBuffer buffer, const MemoryRequirement requirement) argument
[all...]
H A DvktPipelineSpecConstantUtil.cpp35 const VkDevice device,
45 m_vertexShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0);
51 m_tessControlShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0);
57 m_tessEvaluationShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0);
63 m_geometryShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0);
69 m_fragmentShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0);
96 const VkDevice device,
268 return createGraphicsPipeline(vk, device, DE_NULL, &graphicsPipelineInfo);
272 const VkDevice device,
327 return createRenderPass(vk, device,
34 setShader(const DeviceInterface& vk, const VkDevice device, const VkShaderStageFlagBits stage, const ProgramBinary& binary, const VkSpecializationInfo* specInfo) argument
95 build(const DeviceInterface& vk, const VkDevice device, const VkPipelineLayout pipelineLayout, const VkRenderPass renderPass) argument
271 makeRenderPass(const DeviceInterface& vk, const VkDevice device, const VkFormat colorFormat) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesQueueBindSparseTests.cpp134 bool waitForFences (const DeviceInterface& vk, const VkDevice device, const std::vector<FenceSp>& fences) argument
138 if (vk.waitForFences(device, 1u, &(***fenceSpIter), VK_TRUE, ~0ull) != VK_SUCCESS)
165 // Determine required queues and create a device that supports them
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationOperationSingleQueueTests.cpp78 const VkDevice device = m_context.getDevice(); local
81 const Unique<VkCommandPool> cmdPool (makeCommandPool(vk, device, queueFamilyIndex));
82 const Unique<VkCommandBuffer> cmdBuffer (makeCommandBuffer(vk, device, *cmdPool));
83 const Unique<VkEvent> event (makeEvent(vk, device));
108 submitCommandsAndWait(vk, device, queue, *cmdBuffer);
133 const VkDevice device = m_context.getDevice(); local
136 const Unique<VkCommandPool> cmdPool (makeCommandPool(vk, device, queueFamilyIndex));
137 const Move<VkCommandBuffer> cmdBuffer (makeCommandBuffer(vk, device, *cmdPool));
162 submitCommandsAndWait(vk, device, queue, *cmdBuffer);
188 const VkDevice device local
276 const VkDevice device = m_context.getDevice(); local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationGeometryPointSizeTests.cpp308 const VkDevice device = context.getDevice(); local
318 const Image colorAttachmentImage (vk, device, allocator,
325 const Buffer colorBuffer (vk, device, allocator, makeBufferCreateInfo(colorBufferSizeBytes, VK_BUFFER_USAGE_TRANSFER_DST_BIT), MemoryRequirement::HostVisible);
329 const Unique<VkImageView> colorAttachmentView(makeImageView (vk, device, *colorAttachmentImage, VK_IMAGE_VIEW_TYPE_2D, colorFormat, colorImageSubresourceRange));
330 const Unique<VkRenderPass> renderPass (makeRenderPass (vk, device, colorFormat));
331 const Unique<VkFramebuffer> framebuffer (makeFramebuffer (vk, device, *renderPass, *colorAttachmentView, renderSize.x(), renderSize.y(), 1u));
332 const Unique<VkPipelineLayout> pipelineLayout (makePipelineLayoutWithoutDescriptors(vk, device));
333 const Unique<VkCommandPool> cmdPool (makeCommandPool (vk, device, queueFamilyIndex));
334 const Unique<VkCommandBuffer> cmdBuffer (makeCommandBuffer (vk, device, *cmdPool));
342 .setShader (vk, device, VK_SHADER_STAGE_VERTEX_BI
[all...]
H A DvktTessellationMiscDrawTests.cpp130 const VkDevice device = context.getDevice(); local
145 const Buffer vertexBuffer(vk, device, allocator,
155 flushMappedMemoryRange(vk, device, alloc.getMemory(), alloc.getOffset(), vertexDataSizeBytes);
164 const Image colorAttachmentImage (vk, device, allocator,
171 const Buffer colorBuffer (vk, device, allocator, makeBufferCreateInfo(colorBufferSizeBytes, VK_BUFFER_USAGE_TRANSFER_DST_BIT), MemoryRequirement::HostVisible);
175 const Buffer tessLevelsBuffer(vk, device, allocator,
182 .build(vk, device));
186 .build(vk, device, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, 1u));
188 const Unique<VkDescriptorSet> descriptorSet(makeDescriptorSet(vk, device, *descriptorPool, *descriptorSetLayout));
194 .update(vk, device);
[all...]
H A DvktTessellationWindingTests.cpp257 const VkDevice device = m_context.getDevice(); local
267 const Image colorAttachmentImage (vk, device, allocator,
274 const Buffer colorBuffer (vk, device, allocator, makeBufferCreateInfo(colorBufferSizeBytes, VK_BUFFER_USAGE_TRANSFER_DST_BIT), MemoryRequirement::HostVisible);
278 const Unique<VkImageView> colorAttachmentView(makeImageView (vk, device, *colorAttachmentImage, VK_IMAGE_VIEW_TYPE_2D, colorFormat, colorImageSubresourceRange));
279 const Unique<VkRenderPass> renderPass (makeRenderPass (vk, device, colorFormat));
280 const Unique<VkFramebuffer> framebuffer (makeFramebuffer (vk, device, *renderPass, *colorAttachmentView, renderSize.x(), renderSize.y(), 1u));
281 const Unique<VkPipelineLayout> pipelineLayout (makePipelineLayoutWithoutDescriptors(vk, device));
291 .setShader (vk, device, VK_SHADER_STAGE_VERTEX_BIT, m_context.getBinaryCollection().get("vert"), DE_NULL)
292 .setShader (vk, device, VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT, m_context.getBinaryCollection().get("tesc"), DE_NULL)
293 .setShader (vk, device, VK_SHADER_STAGE_TESSELLATION_EVALUATION_BI
[all...]
/external/drm_gralloc/
H A Dgralloc_drm_pipe.c366 const char *name, int *vendor, int *device)
377 gp.value = device;
387 info.value = (long) device;
392 *device = 0;
398 *device = 0x0405;
412 int vendor, device; local
416 err = pipe_get_pci_id(pm, name, &vendor, &device);
431 if (driver_map[idx].chip_ids[i] == device)
365 pipe_get_pci_id(struct pipe_manager *pm, const char *name, int *vendor, int *device) argument
/external/e2fsprogs/lib/ext2fs/
H A Dismounted.c60 * because the name in /proc/mounts is a loopback device not a regular file.
150 * Do an extra check to see if this is the root device. We
153 * check if the given device has the same major/minor number
154 * as the device that the root directory is on.
297 * Check to see if we're dealing with the swap device.
352 * ext2fs_check_mount_point() fills determines if the device is
356 * non-NULL, the directory where the device is mounted is copied to
362 errcode_t ext2fs_check_mount_point(const char *device, int *mount_flags, argument
380 if (is_swap_device(device)) {
385 retval = check_mntent(device, mount_flag
[all...]
/external/e2fsprogs/misc/
H A Dblkid.c60 "\t-t\tfind device with a specific token (NAME=value pair)\n"
61 "\t-l\tlookup the the first device with arguments specified by -t\n"
64 "\tdev\tspecify device(s) to probe (default: all devices)\n",
144 static void pretty_print_line(const char *device, const char *fs_type, argument
170 len = pretty_print_word(device, device_len, 0, 1);
188 pretty_print_line("device", "fs_type", "label",
312 else if (!strcmp(optarg, "device"))
321 "device, list, or full\n", optarg);
394 /* If we didn't specify a single device, show all available devices */
H A De2initrd_helper.c55 char *device; member in struct:fs_info
68 _("Usage: %s -r device\n"), program_name);
239 char *dev, *device, *mntpnt, *type, *opts, *freq, *passno, *cp; local
245 device = parse_word(&cp);
252 if (!device)
258 parse_escape(device);
265 dev = blkid_get_devname(cache, device, NULL);
267 device = dev;
272 fs->device = string_copy(device);
[all...]
H A Dutil.c118 void check_mount(const char *device, int force, const char *type) argument
123 retval = ext2fs_check_if_mounted(device, &mount_flags);
127 device);
131 fprintf(stderr, _("%s is mounted; "), device);
143 device);
182 if (strcmp(token, "device") == 0) {
187 "journal device matching %s\n"),
219 "\tdevice=<journal device>\n"
288 printf("MMP error info: last update: %s node: %s device: %s\n",
/external/e2fsprogs/resize/
H A Dmain.c50 "[-p] device [-b|-s|new_size] [-z undo_file]\n\n"),
170 static int resize2fs_setup_tdb(const char *device, char *undo_file, argument
190 undo_file, device);
206 tmp_name = strdup(device);
234 " e2undo %s %s\n\n"), tdb_file, device);
340 * Figure out whether or not the device is mounted, and if it is
558 fprintf(stderr, _("The containing partition (or device)"
/external/eigen/bench/tensors/
H A Dtensor_benchmarks.h20 BenchmarkSuite(const Device& device, size_t m, size_t k, size_t n) argument
21 : m_(m), k_(k), n_(n), device_(device) {
25 BenchmarkSuite(const Device& device, size_t m) argument
26 : m_(m), k_(m), n_(m), device_(device) {
61 B.device(device_) = A.template cast<T>();
76 C.device(device_) = C.random();
99 C.slice(first_quadrant, quarter_sizes).device(device_) =
101 C.slice(second_quadrant, quarter_sizes).device(device_) =
103 C.slice(third_quadrant, quarter_sizes).device(device_) =
105 C.slice(fourth_quadrant, quarter_sizes).device(device
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorArgMax.h95 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
96 : m_impl(op.expression(), device) { }
222 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
223 : m_orig_impl(op.expression(), device),
224 m_impl(op.expression().index_tuples().reduce(op.reduce_dims(), op.reduce_op()), device),
H A DTensorAssign.h106 EIGEN_DEVICE_FUNC TensorEvaluator(const XprType& op, const Device& device) : argument
107 m_leftImpl(op.lhsExpression(), device),
108 m_rightImpl(op.rhsExpression(), device)

Completed in 532 milliseconds

<<11121314151617181920>>