HomeSort by: relevance | last modified time | path
    Searched refs:cheight (Results 1 - 8 of 8) sorted by relevancy

  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_dma.c 108 unsigned ncopy, height, cheight, i; local
158 cheight = copy_height;
159 if (cheight * pitch > SI_DMA_COPY_MAX_DWORD_ALIGNED_SIZE) {
160 cheight = SI_DMA_COPY_MAX_DWORD_ALIGNED_SIZE / pitch;
162 size = cheight * pitch;
174 copy_height -= cheight;
175 addr += cheight * pitch;
176 tiled_y += cheight;
  /xsrc/external/mit/font-util/dist/
ucs2any.c 414 int cheight; member in struct:__anon13
421 int cwidth, int cheight, int cxoff, int cyoff, bbx_t *r)
424 r->cheight = cheight;
433 r->cheight += r->cyoff - ayoff;
439 if (aheight + ayoff > r->cheight + r->cyoff) {
440 r->cheight = aheight + ayoff - r->cyoff;
551 bbx.cheight = bbx.cxoff = bbx.cyoff = -1;
903 bbx.cheight = h;
907 combine_bbx(bbx.cwidth, bbx.cheight,
    [all...]
  /xsrc/external/mit/pixman/dist/pixman/
pixman-bits-image.c 270 int32_t cheight = pixman_fixed_to_int (params[1]); local
282 y2 = y1 + cheight;
336 int cheight = pixman_fixed_to_int (params[1]); local
342 int y_off = ((cheight << 16) - pixman_fixed_1) >> 1;
360 y_params = params + 4 + (1 << x_phase_bits) * cwidth + py * cheight;
365 y2 = y1 + cheight;
pixman-fast-path.c 2718 int cheight = pixman_fixed_to_int (params[1]); local
2720 int y_off = ((cheight << 16) - pixman_fixed_1) >> 1;
2770 y2 = y1 + cheight;
2774 y_params = params + 4 + (1 << x_phase_bits) * cwidth + py * cheight;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
r600_state.c 2866 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; local
2924 cheight = ((R600_DMA_COPY_MAX_SIZE_DW * 4) / pitch) & 0xfffffff8;
2925 ncopy = (copy_height / cheight) + !!(copy_height % cheight);
2929 cheight = cheight > copy_height ? copy_height : cheight;
2930 size = (cheight * pitch) / 4;
2943 copy_height -= cheight;
2944 addr += cheight * pitch
    [all...]
evergreen_state.c 3788 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; local
3863 cheight = copy_height;
3864 if (((cheight * pitch) / 4) > EG_DMA_COPY_MAX_SIZE) {
3865 cheight = (EG_DMA_COPY_MAX_SIZE * 4) / pitch;
3867 size = (cheight * pitch) / 4;
3884 copy_height -= cheight;
3885 addr += cheight * pitch;
3886 y += cheight;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
r600_state.c 2862 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; local
2920 cheight = ((R600_DMA_COPY_MAX_SIZE_DW * 4) / pitch) & 0xfffffff8;
2921 ncopy = (copy_height / cheight) + !!(copy_height % cheight);
2925 cheight = cheight > copy_height ? copy_height : cheight;
2926 size = (cheight * pitch) / 4;
2939 copy_height -= cheight;
2940 addr += cheight * pitch
    [all...]
evergreen_state.c 3775 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; local
3850 cheight = copy_height;
3851 if (((cheight * pitch) / 4) > EG_DMA_COPY_MAX_SIZE) {
3852 cheight = (EG_DMA_COPY_MAX_SIZE * 4) / pitch;
3854 size = (cheight * pitch) / 4;
3871 copy_height -= cheight;
3872 addr += cheight * pitch;
3873 y += cheight;

Completed in 116 milliseconds