Home
last modified time | relevance | path

Searched refs:temp_ptr (Results 1 – 9 of 9) sorted by relevance

/third_party/mesa3d/src/intel/compiler/
Dbrw_clip_line.c181 struct brw_indirect temp_ptr = brw_indirect(7, 0); in clip_and_emit_line() local
182 brw_ADD(p, get_addr_reg(temp_ptr), get_addr_reg(vtx0), c->reg.clipdistance_offset); in clip_and_emit_line()
183 brw_MOV(p, c->reg.dp0, deref_1f(temp_ptr, 0)); in clip_and_emit_line()
184 brw_ADD(p, get_addr_reg(temp_ptr), get_addr_reg(vtx1), c->reg.clipdistance_offset); in clip_and_emit_line()
185 brw_MOV(p, c->reg.dp1, deref_1f(temp_ptr, 0)); in clip_and_emit_line()
Dbrw_clip_tri.c239 struct brw_indirect temp_ptr = brw_indirect(7, 0); in load_clip_distance() local
240 brw_ADD(p, get_addr_reg(temp_ptr), get_addr_reg(vtx), c->reg.clipdistance_offset); in load_clip_distance()
241 brw_MOV(p, vec1(dst), deref_1f(temp_ptr, 0)); in load_clip_distance()
/third_party/FreeBSD/sys/dev/usb/
Dusb_device.c2239 char *temp_ptr; in usbd_set_device_strings() local
2248 temp_ptr = (char *)udev->scratch.data; in usbd_set_device_strings()
2255 (void)usbd_req_get_string_any(udev, NULL, temp_ptr, temp_size, in usbd_set_device_strings()
2257 udev->serial = bsd_strdup(temp_ptr, M_USB); in usbd_set_device_strings()
2260 (void)usbd_req_get_string_any(udev, NULL, temp_ptr, temp_size, in usbd_set_device_strings()
2262 usb_trim_spaces(temp_ptr); in usbd_set_device_strings()
2263 if (temp_ptr[0] != '\0') in usbd_set_device_strings()
2264 udev->manufacturer = bsd_strdup(temp_ptr, M_USB); in usbd_set_device_strings()
2267 (void)usbd_req_get_string_any(udev, NULL, temp_ptr, temp_size, in usbd_set_device_strings()
2269 usb_trim_spaces(temp_ptr); in usbd_set_device_strings()
[all …]
/third_party/vulkan-loader/tests/
Dloader_version_tests.cpp170 auto temp_ptr = std::unique_ptr<int>(new int()); in TEST() local
172 phys_dev = reinterpret_cast<VkPhysicalDevice>(temp_ptr.get()); in TEST()
181 ASSERT_EQ(phys_dev, reinterpret_cast<VkPhysicalDevice>(temp_ptr.get())); in TEST()
Dloader_regression_tests.cpp517 auto temp_ptr = std::unique_ptr<int>(new int()); in TEST() local
518 physical[0] = reinterpret_cast<VkPhysicalDevice>(temp_ptr.get()); in TEST()
519 physical[1] = reinterpret_cast<VkPhysicalDevice>(temp_ptr.get()); in TEST()
525 ASSERT_EQ(static_cast<void*>(physical[0]), static_cast<void*>(temp_ptr.get())); in TEST()
526 ASSERT_EQ(static_cast<void*>(physical[1]), static_cast<void*>(temp_ptr.get())); in TEST()
532 ASSERT_EQ(static_cast<void*>(physical[1]), static_cast<void*>(temp_ptr.get())); in TEST()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_tgsi_aos.c208 LLVMValueRef temp_ptr = bld->temps[reg->Register.Index]; in emit_fetch_temporary() local
210 LLVMValueRef res = LLVMBuildLoad2(builder, vec_type, temp_ptr, ""); in emit_fetch_temporary()
Dlp_bld_tgsi_soa.c1445 LLVMValueRef temp_ptr; in emit_fetch_temporary() local
1446 temp_ptr = lp_get_temp_ptr_soa(bld, reg->Register.Index, swizzle); in emit_fetch_temporary()
1447 res = LLVMBuildLoad(builder, temp_ptr, ""); in emit_fetch_temporary()
1821 LLVMValueRef temp_ptr; in emit_store_temp() local
1822 temp_ptr = lp_get_temp_ptr_soa(bld, reg->Register.Index, chan_index); in emit_store_temp()
1828 emit_store_64bit_chan(bld_base, temp_ptr, temp_ptr2, in emit_store_temp()
1832 lp_exec_mask_store(&bld->exec_mask, float_bld, value, temp_ptr); in emit_store_temp()
/third_party/libbpf/src/
Dbtf.c1628 void *temp_ptr; local
1631 temp_ptr = realloc(ptr, last_size);
1632 if (!temp_ptr) {
1636 ptr = temp_ptr;
/third_party/mesa3d/src/gallium/auxiliary/draw/
Ddraw_llvm.c2078 LLVMValueRef vb_buffer_offset, buffer_size, temp_ptr; in draw_llvm_generate() local
2145 temp_ptr = lp_build_alloca_undef(gallivm, byte_ptr_type, ""); in draw_llvm_generate()
2149 LLVMBuildStore(builder, fake_buf_ptr, temp_ptr); in draw_llvm_generate()
2154 LLVMBuildStore(builder, map_ptr[j], temp_ptr); in draw_llvm_generate()
2157 map_ptr[j] = LLVMBuildLoad2(builder, byte_ptr_type, temp_ptr, "map_ptr"); in draw_llvm_generate()