Lines Matching refs:pI830
96 I830Ptr pI830 = I830PTR(pScrn);
115 if (offset == pI830->front_buffer->offset &&
116 pI830->front_buffer->tiling != TILE_NONE)
127 I830Ptr pI830 = I830PTR(pScrn);
129 if (pI830->batch_bo == NULL)
132 bo_table[0] = pI830->batch_bo;
135 bo_table[0] = pI830->batch_bo;
152 I830Ptr pI830 = I830PTR(pScrn);
154 return i830_pixmap_pitch(pixmap) % pI830->accel_pixmap_pitch_alignment == 0;
164 I830Ptr pI830 = I830PTR(pScrn);
190 pI830->BR[13] = (I830PatternROP[alu] & 0xff) << 16 ;
196 pI830->BR[13] |= (1 << 24);
200 pI830->BR[13] |= ((1 << 24) | (1 << 25));
203 pI830->BR[16] = fg;
211 I830Ptr pI830 = I830PTR(pScrn);
225 if (IS_I965G(pI830) && i830_pixmap_tiled(pPixmap)) {
233 OUT_BATCH(pI830->BR[13] | pitch);
237 OUT_BATCH(pI830->BR[16]);
259 I830Ptr pI830 = I830PTR(pScrn);
278 pI830->pSrcPixmap = pSrcPixmap;
280 pI830->BR[13] = I830CopyROP[alu] << 16;
286 pI830->BR[13] |= (1 << 24);
289 pI830->BR[13] |= ((1 << 25) | (1 << 24));
300 I830Ptr pI830 = I830PTR(pScrn);
309 src_pitch = i830_pixmap_pitch(pI830->pSrcPixmap);
319 if (IS_I965G(pI830)) {
326 if (i830_pixmap_tiled(pI830->pSrcPixmap)) {
335 OUT_BATCH(pI830->BR[13] | dst_pitch);
341 OUT_RELOC_PIXMAP(pI830->pSrcPixmap, I915_GEM_DOMAIN_RENDER, 0, 0);