| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| radeon_rv770_dma.c | 38 * @src_offset: src GPU address 48 uint64_t src_offset, uint64_t dst_offset, 81 radeon_ring_write(ring, src_offset & 0xfffffffc); 83 radeon_ring_write(ring, upper_32_bits(src_offset) & 0xff); 84 src_offset += cur_size_in_dw * 4;
|
| radeon_evergreen_dma.c | 103 * @src_offset: src GPU address 113 uint64_t src_offset, 147 radeon_ring_write(ring, src_offset & 0xfffffffc); 149 radeon_ring_write(ring, upper_32_bits(src_offset) & 0xff); 150 src_offset += cur_size_in_dw * 4;
|
| radeon_si_dma.c | 227 * @src_offset: src GPU address 237 uint64_t src_offset, uint64_t dst_offset, 270 radeon_ring_write(ring, lower_32_bits(src_offset)); 272 radeon_ring_write(ring, upper_32_bits(src_offset) & 0xff); 273 src_offset += cur_size_in_bytes;
|
| radeon_evergreen_cs.c | 2833 u64 src_offset, dst_offset, dst2_offset; local 2898 src_offset = radeon_get_ib_value(p, idx+2); 2899 src_offset |= ((u64)(radeon_get_ib_value(p, idx+4) & 0xff)) << 32; 2902 if ((src_offset + (count * 4)) > radeon_bo_size(src_reloc->robj)) { 2904 src_offset + (count * 4), radeon_bo_size(src_reloc->robj)); 2923 src_offset = radeon_get_ib_value(p, idx+1); 2924 src_offset <<= 8; 2933 src_offset = radeon_get_ib_value(p, idx+7); 2934 src_offset |= ((u64)(radeon_get_ib_value(p, idx+8) & 0xff)) << 32; 2942 if ((src_offset + (count * 4)) > radeon_bo_size(src_reloc->robj)) [all...] |
| radeon_r600_dma.c | 439 * @src_offset: src GPU address 449 uint64_t src_offset, uint64_t dst_offset, 482 radeon_ring_write(ring, src_offset & 0xfffffffc); 484 (upper_32_bits(src_offset) & 0xff))); 485 src_offset += cur_size_in_dw * 4;
|
| radeon_r200.c | 89 uint64_t src_offset, 119 radeon_ring_write(ring, src_offset); 122 src_offset += cur_size;
|
| radeon_asic.h | 88 uint64_t src_offset, 159 uint64_t src_offset, 350 uint64_t src_offset, uint64_t dst_offset, 354 uint64_t src_offset, uint64_t dst_offset, 476 uint64_t src_offset, uint64_t dst_offset, 550 uint64_t src_offset, uint64_t dst_offset, 728 uint64_t src_offset, uint64_t dst_offset, 799 uint64_t src_offset, uint64_t dst_offset, 803 uint64_t src_offset, uint64_t dst_offset,
|
| radeon_r600_cs.c | 2386 u64 src_offset, dst_offset; local 2444 src_offset = radeon_get_ib_value(p, idx+1); 2445 src_offset <<= 8; 2454 src_offset = radeon_get_ib_value(p, idx+5); 2455 src_offset |= ((u64)(radeon_get_ib_value(p, idx+6) & 0xff)) << 32; 2466 src_offset = radeon_get_ib_value(p, idx+2); 2467 src_offset |= ((u64)(radeon_get_ib_value(p, idx+4) & 0xff)) << 32; 2477 src_offset = radeon_get_ib_value(p, idx+2); 2478 src_offset |= ((u64)(radeon_get_ib_value(p, idx+3) & 0xff)) << 32; 2489 if ((src_offset + (count * 4)) > radeon_bo_size(src_reloc->robj)) [all...] |
| radeon_cik_sdma.c | 575 * @src_offset: src GPU address 585 uint64_t src_offset, uint64_t dst_offset, 619 radeon_ring_write(ring, lower_32_bits(src_offset)); 620 radeon_ring_write(ring, upper_32_bits(src_offset)); 623 src_offset += cur_size_in_bytes;
|
| /src/external/gpl3/gdb/dist/gdb/python/ |
| py-utils.c | 573 size_t src_offset = 0; 577 while (src[src_offset] != '\0') 581 if (src_offset == ws_info[ws_info_offset].offset ()) 591 if (src[src_offset + ws_info[ws_info_offset].ws ()] == '\n' 592 || src[src_offset + ws_info[ws_info_offset].ws ()] == '\0') 593 src_offset += ws_info[ws_info_offset].ws (); 595 src_offset += std::min (*min_whitespace, 600 if (src[src_offset] == '\0') 612 if ((dst_offset > 0 || src[src_offset] != '\n')) 614 dst[dst_offset] = src[src_offset]; 572 size_t src_offset = 0; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/python/ |
| py-utils.c | 544 size_t src_offset = 0; 548 while (src[src_offset] != '\0') 552 if (src_offset == ws_info[ws_info_offset].offset ()) 562 if (src[src_offset + ws_info[ws_info_offset].ws ()] == '\n' 563 || src[src_offset + ws_info[ws_info_offset].ws ()] == '\0') 564 src_offset += ws_info[ws_info_offset].ws (); 566 src_offset += std::min (*min_whitespace, 571 if (src[src_offset] == '\0') 583 if ((dst_offset > 0 || src[src_offset] != '\n')) 585 dst[dst_offset] = src[src_offset]; 543 size_t src_offset = 0; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
| i915_gem_object_blt.c | 212 u64 src_offset, dst_offset; local 238 src_offset = src->node.start; 254 *cmd++ = lower_32_bits(src_offset); 255 *cmd++ = upper_32_bits(src_offset); 265 *cmd++ = lower_32_bits(src_offset); 266 *cmd++ = upper_32_bits(src_offset); 273 *cmd++ = src_offset; 279 src_offset += size;
|
| /src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
| vmwgfx_blit.c | 358 * @src_offset: Source copy start offset from start of bo. 363 u32 src_offset, 371 u32 src_page = src_offset >> PAGE_SHIFT; 373 u32 src_page_offset = src_offset & ~PAGE_MASK; 421 src_offset += copy_size; 434 * @src_offset: Source offset of blit start in bytes. 453 u32 src_offset, u32 src_stride, 498 ret = vmw_bo_cpu_blit_line(&d, dst_offset, src_offset, w); 503 src_offset += src_stride;
|
| vmwgfx_stdu.c | 585 u32 src_offset, dst_offset; local 604 src_offset = ddirty->fb_top * src_pitch + ddirty->fb_left * stdu->cpp; 610 swap(src_offset, dst_offset); 614 src_bo, src_offset, src_pitch, 1302 u32 src_offset, dst_offset; local 1321 src_offset = bo_update->fb_top * src_pitch + bo_update->fb_left * 1325 src_offset, src_pitch, width * stdu->cpp, height,
|
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| amdgpu_sdma.h | 91 uint64_t src_offset,
|
| amdgpu_ttm.h | 102 int amdgpu_copy_buffer(struct amdgpu_ring *ring, uint64_t src_offset,
|
| /src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
| qxl_drm.h | 70 * src_offset) 76 __u64 src_offset; /* offset into src_handle or src buffer */ member in struct:drm_qxl_reloc
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/linux/ |
| fs.d | 51 ulong src_offset; 94 ulong src_offset; /// in - start of extent in source
|
| /src/sys/external/bsd/drm2/dist/drm/qxl/ |
| qxl_ioctl.c | 84 int src_offset; member in struct:qxl_reloc_info 100 info->src_offset); 250 reloc_info[i].src_offset = reloc.src_offset; 253 reloc_info[i].src_offset = 0;
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ |
| nouveau_bo.c | 876 u64 src_offset = mem->vma[0].addr; local 890 OUT_RING (chan, upper_32_bits(src_offset)); 891 OUT_RING (chan, lower_32_bits(src_offset)); 902 src_offset += (PAGE_SIZE * line_count); 914 u64 src_offset = mem->vma[0].addr; local 931 OUT_RING (chan, upper_32_bits(src_offset)); 932 OUT_RING (chan, lower_32_bits(src_offset)); 941 src_offset += (PAGE_SIZE * line_count); 953 u64 src_offset = mem->vma[0].addr; local 967 OUT_RING (chan, upper_32_bits(src_offset)); 1044 u64 src_offset = mem->vma[0].addr; local 1138 u32 src_offset = old_reg->start << PAGE_SHIFT; local [all...] |
| /src/external/gpl3/gcc.old/dist/include/ |
| hsa_ext_image.h | 880 * @param[in] src_offset Pointer to the offset within the source image where to 899 * @retval ::HSA_STATUS_ERROR_INVALID_ARGUMENT @p src_offset is 905 const hsa_dim3_t* src_offset, 1300 const hsa_dim3_t* src_offset, 1371 const hsa_dim3_t* src_offset,
|
| /src/external/gpl3/gcc/dist/include/ |
| hsa_ext_image.h | 880 * @param[in] src_offset Pointer to the offset within the source image where to 899 * @retval ::HSA_STATUS_ERROR_INVALID_ARGUMENT @p src_offset is 905 const hsa_dim3_t* src_offset, 1300 const hsa_dim3_t* src_offset, 1371 const hsa_dim3_t* src_offset,
|
| /src/external/gpl3/gdb/dist/gdb/ |
| value.c | 1211 LONGEST src_offset, LONGEST length) 1224 if (limit > 0 && src_offset + length > limit) 1225 copy_length = src_offset > limit ? 0 : limit - src_offset; 1234 if ((src_offset + copy_length) * unit_size > enclosing_type ()-> length ()) 1242 = contents_all_raw ().slice (src_offset * unit_size, 1247 src_bit_offset = src_offset * unit_size * HOST_CHAR_BIT; 1299 LONGEST src_offset, LONGEST length) 1304 contents_copy_raw (dst, dst_offset, src_offset, length); 4196 int src_offset = 0 4187 int src_offset = 0; local 4241 int src_offset = 0; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| value.c | 1211 LONGEST src_offset, LONGEST length) 1224 if (limit > 0 && src_offset + length > limit) 1225 copy_length = src_offset > limit ? 0 : limit - src_offset; 1234 if ((src_offset + copy_length) * unit_size > enclosing_type ()-> length ()) 1242 = contents_all_raw ().slice (src_offset * unit_size, 1247 src_bit_offset = src_offset * unit_size * HOST_CHAR_BIT; 1299 LONGEST src_offset, LONGEST length) 1304 contents_copy_raw (dst, dst_offset, src_offset, length); 4150 int src_offset = 0 4141 int src_offset = 0; local 4195 int src_offset = 0; local [all...] |
| /src/sys/arch/amiga/dev/ |
| grf_rt.c | 1303 u_long src_offset, dst_offset; 1321 src_offset = op->src_x + op->src_y * gp->g_display.gd_fbwidth; 1331 if (src_offset < dst_offset) 1334 src_offset += tot; 1338 src_bank_lo = (src_offset >> 6) & 0xff; 1339 src_bank_hi = (src_offset >> 14) & 0xff; 1350 if (src_offset < dst_offset)
|