Home
last modified time | relevance | path

Searched refs:pcmd (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/compiler-rt/utils/
Dgenerate_netbsd_syscalls.awk230 pcmd("//===-- netbsd_syscall_hooks.h --------------------------------------------===//")
231 pcmd("//")
232 pcmd("// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.")
233 pcmd("// See https://llvm.org/LICENSE.txt for license information.")
234 pcmd("// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception")
235 pcmd("//")
236 pcmd("//===----------------------------------------------------------------------===//")
237 pcmd("//")
238 pcmd("// This file is a part of public sanitizer interface.")
239 pcmd("//")
[all …]
Dgenerate_netbsd_ioctls.awk267 pcmd("//===-- sanitizer_interceptors_ioctl_netbsd.inc -----------------*- C++ -*-===//")
268 pcmd("//")
269 pcmd("// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.")
270 pcmd("// See https://llvm.org/LICENSE.txt for license information.")
271 pcmd("// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception")
272 pcmd("//")
273 pcmd("//===----------------------------------------------------------------------===//")
274 pcmd("//")
275 pcmd("// Ioctl handling in common sanitizer interceptors.")
276 pcmd("//===----------------------------------------------------------------------===//")
[all …]
/external/mesa3d/src/intel/tools/imgui/
Dimgui_impl_opengl3.cpp188 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in ImGui_ImplOpenGL3_RenderDrawData() local
189 if (pcmd->UserCallback) in ImGui_ImplOpenGL3_RenderDrawData()
192 pcmd->UserCallback(cmd_list, pcmd); in ImGui_ImplOpenGL3_RenderDrawData()
196 …ImVec4 clip_rect = ImVec4(pcmd->ClipRect.x - pos.x, pcmd->ClipRect.y - pos.y, pcmd->ClipRect.z - p… in ImGui_ImplOpenGL3_RenderDrawData()
203 glBindTexture(GL_TEXTURE_2D, (GLuint)(intptr_t)pcmd->TextureId); in ImGui_ImplOpenGL3_RenderDrawData()
204 …glDrawElements(GL_TRIANGLES, (GLsizei)pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT … in ImGui_ImplOpenGL3_RenderDrawData()
207 idx_buffer_offset += pcmd->ElemCount; in ImGui_ImplOpenGL3_RenderDrawData()
/external/autotest/server/site_tests/platform_USBHIDWake/
Dplatform_USBHIDWake.py63 pcmd = ("sudo openvt -s -w -- " +
66 utils.system(pcmd)
/external/kernel-headers/original/uapi/linux/
Dif_plip.h20 unsigned short pcmd; member
/external/mesa3d/src/vulkan/overlay-layer/
Doverlay.cpp1306 const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; in render_swapchain_display() local
1310 …scissor.offset.x = (int32_t)(pcmd->ClipRect.x - display_pos.x) > 0 ? (int32_t)(pcmd->ClipRect.x - … in render_swapchain_display()
1311 …scissor.offset.y = (int32_t)(pcmd->ClipRect.y - display_pos.y) > 0 ? (int32_t)(pcmd->ClipRect.y - … in render_swapchain_display()
1312 scissor.extent.width = (uint32_t)(pcmd->ClipRect.z - pcmd->ClipRect.x); in render_swapchain_display()
1313 …scissor.extent.height = (uint32_t)(pcmd->ClipRect.w - pcmd->ClipRect.y + 1); // FIXME: Why +1 here? in render_swapchain_display()
1317 …device_data->vtable.CmdDrawIndexed(draw->command_buffer, pcmd->ElemCount, 1, idx_offset, vtx_offse… in render_swapchain_display()
1319 idx_offset += pcmd->ElemCount; in render_swapchain_display()
/external/mesa3d/src/imgui/
Dimgui.cpp9319 …for (const ImDrawCmd* pcmd = draw_list->CmdBuffer.begin(); pcmd < draw_list->CmdBuffer.end(); elem… in ShowMetricsWindow() local
9321 if (pcmd->UserCallback == NULL && pcmd->ElemCount == 0) in ShowMetricsWindow()
9323 if (pcmd->UserCallback) in ShowMetricsWindow()
9325 … ImGui::BulletText("Callback %p, user_data %p", pcmd->UserCallback, pcmd->UserCallbackData); in ShowMetricsWindow()
9329pcmd - draw_list->CmdBuffer.begin()), "Draw %4d %s vtx, tex 0x%p, clip_rect (%4.0f,%4.0f)-(%4.0f,%… in ShowMetricsWindow()
9332 ImRect clip_rect = pcmd->ClipRect; in ShowMetricsWindow()
9334 for (int i = elem_offset; i < elem_offset + (int)pcmd->ElemCount; i++) in ShowMetricsWindow()
9343 …ImGuiListClipper clipper(pcmd->ElemCount/3); // Manually coarse clip our print out of individual v… in ShowMetricsWindow()