Searched refs:dirty (Results 226 - 250 of 628) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_draw.c113 brw->state.dirty.brw |= BRW_NEW_PRIMITIVE;
117 brw->state.dirty.brw |= BRW_NEW_REDUCED_PRIMITIVE;
133 brw->state.dirty.brw |= BRW_NEW_PRIMITIVE;
287 brw->state.dirty.brw |= BRW_NEW_INPUT_DIMENSIONS;
448 brw->state.dirty.brw |= BRW_NEW_INDICES;
452 brw->state.dirty.brw |= BRW_NEW_VERTICES;
486 /* Note that before the loop, brw->state.dirty.brw was set to != 0, and
489 * brw->state.dirty.brw.
491 if (brw->state.dirty.brw) {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_tex.c222 const boolean dirty = !!(nvc0->textures_dirty[s] & (1 << i)); local
225 if (dirty)
257 if (!dirty)
288 const boolean dirty = !!(nvc0->textures_dirty[s] & (1 << i)); local
323 if (dirty)
478 uint32_t dirty = nvc0->textures_dirty[s] | nvc0->samplers_dirty[s]; local
479 if (!dirty)
486 int i = ffs(dirty) - 1;
487 dirty &= ~(1 << i);
492 } while (dirty);
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_tex.c222 const boolean dirty = !!(nvc0->textures_dirty[s] & (1 << i)); local
225 if (dirty)
257 if (!dirty)
288 const boolean dirty = !!(nvc0->textures_dirty[s] & (1 << i)); local
323 if (dirty)
478 uint32_t dirty = nvc0->textures_dirty[s] | nvc0->samplers_dirty[s]; local
479 if (!dirty)
486 int i = ffs(dirty) - 1;
487 dirty &= ~(1 << i);
492 } while (dirty);
[all...]
/external/chromium_org/content/browser/quota/
H A Dquota_backend_impl_unittest.cc263 uint32 dirty = 0; local
264 ASSERT_TRUE(file_system_usage_cache_.GetDirty(path, &dirty));
265 EXPECT_EQ(1u, dirty);
268 ASSERT_TRUE(file_system_usage_cache_.GetDirty(path, &dirty));
269 EXPECT_EQ(0u, dirty);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_state.c213 nv50->dirty |= NV50_NEW_BLEND;
342 nv50->dirty |= NV50_NEW_RASTERIZER;
421 nv50->dirty |= NV50_NEW_ZSA;
579 nv50->dirty |= NV50_NEW_SAMPLERS;
640 nv50->dirty |= NV50_NEW_TEXTURES;
713 nv50->dirty |= NV50_NEW_VERTPROG;
729 nv50->dirty |= NV50_NEW_FRAGPROG;
745 nv50->dirty |= NV50_NEW_GMTYPROG;
783 nv50->dirty |= NV50_NEW_CONSTBUF;
796 nv50->dirty |
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dcsum.c127 int dirty = 0; local
158 dirty = 1;
160 dirty = 1;
162 dirty = 1;
164 if (dirty)
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_state.c213 nv50->dirty |= NV50_NEW_BLEND;
342 nv50->dirty |= NV50_NEW_RASTERIZER;
421 nv50->dirty |= NV50_NEW_ZSA;
579 nv50->dirty |= NV50_NEW_SAMPLERS;
640 nv50->dirty |= NV50_NEW_TEXTURES;
713 nv50->dirty |= NV50_NEW_VERTPROG;
729 nv50->dirty |= NV50_NEW_FRAGPROG;
745 nv50->dirty |= NV50_NEW_GMTYPROG;
783 nv50->dirty |= NV50_NEW_CONSTBUF;
796 nv50->dirty |
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_state.c186 i915->dirty |= I915_NEW_BLEND;
205 i915->dirty |= I915_NEW_BLEND;
215 i915->dirty |= I915_NEW_DEPTH_STENCIL;
353 i915->dirty |= I915_NEW_SAMPLER;
537 i915->dirty |= I915_NEW_DEPTH_STENCIL;
553 i915->dirty |= I915_NEW_SCISSOR;
609 i915->dirty |= I915_NEW_FS;
657 i915->dirty |= I915_NEW_VS;
716 i915->dirty |= shader == PIPE_SHADER_VERTEX ? I915_NEW_VS_CONSTANTS : I915_NEW_FS_CONSTANTS;
769 i915->dirty |
[all...]
H A Di915_prim_emit.c76 assert(!i915->dirty);
137 if (i915->dirty)
H A Di915_state_dynamic.c311 if (i915->dirty & atoms[i]->dirty)
H A Di915_state_emit.c48 unsigned dirty, batch_space; member in struct:i915_tracked_hw_state
119 unsigned dirty = (1 << I915_IMMEDIATE_S0 | 1 << I915_IMMEDIATE_S1 | local
128 *batch_space = 1 + util_bitcount(dirty);
135 unsigned dirty = (1 << I915_IMMEDIATE_S0 | 1 << I915_IMMEDIATE_S1 | local
140 int i, num = util_bitcount(dirty);
144 dirty << 4 | (num - 1));
155 if (dirty & (1 << i)) {
584 assert(i915->dirty == 0);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state.c186 i915->dirty |= I915_NEW_BLEND;
205 i915->dirty |= I915_NEW_BLEND;
215 i915->dirty |= I915_NEW_DEPTH_STENCIL;
353 i915->dirty |= I915_NEW_SAMPLER;
537 i915->dirty |= I915_NEW_DEPTH_STENCIL;
553 i915->dirty |= I915_NEW_SCISSOR;
609 i915->dirty |= I915_NEW_FS;
657 i915->dirty |= I915_NEW_VS;
716 i915->dirty |= shader == PIPE_SHADER_VERTEX ? I915_NEW_VS_CONSTANTS : I915_NEW_FS_CONSTANTS;
769 i915->dirty |
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineBox.h54 bool dirty, bool extracted, bool isHorizontal, InlineBox* next, InlineBox* prev, InlineFlowBox* parent)
61 , m_bitfields(firstLine, constructed, dirty, extracted, isHorizontal)
260 bool isDirty() const { return m_bitfields.dirty(); }
310 InlineBoxBitfields(bool firstLine = false, bool constructed = false, bool dirty = false, bool extracted = false, bool isHorizontal = true)
314 , m_dirty(dirty)
342 ADD_BOOLEAN_BITFIELD(dirty, Dirty);
53 InlineBox(RenderObject& obj, FloatPoint topLeft, float logicalWidth, bool firstLine, bool constructed, bool dirty, bool extracted, bool isHorizontal, InlineBox* next, InlineBox* prev, InlineFlowBox* parent) argument
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_backend_test_util.cc56 EXPECT_EQ(left.dirty(), right.dirty());
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_blit.c303 } else if (r300->zmask_clear.dirty || r300->hiz_clear.dirty) {
308 (r300->zmask_clear.dirty ? r300->zmask_clear.size : 0) +
309 (r300->hiz_clear.dirty ? r300->hiz_clear.size : 0) +
318 if (r300->zmask_clear.dirty) {
321 r300->zmask_clear.dirty = FALSE;
323 if (r300->hiz_clear.dirty) {
326 r300->hiz_clear.dirty = FALSE;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_query.c114 softpipe->dirty |= SP_NEW_QUERY;
152 softpipe->dirty |= SP_NEW_QUERY;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_pipe_depthstencil.c130 svga->dirty |= SVGA_NEW_DEPTH_STENCIL;
147 svga->dirty |= SVGA_NEW_STENCIL_REF;
H A Dsvga_state_vs.c171 emit_hw_vs(struct svga_context *svga, unsigned dirty) argument
202 svga->dirty |= SVGA_NEW_VS_RESULT;
H A Dsvga_swtnl_draw.c50 assert(!svga->dirty);
130 svga->dirty |= SVGA_NEW_NEED_PIPELINE | SVGA_NEW_NEED_SWVFETCH;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_gs.c247 brw->state.dirty.cache |= CACHE_NEW_GS_PROG;
262 .dirty = {
H A Dbrw_vtbl.c182 brw->state.dirty.brw |= BRW_NEW_CONTEXT;
184 brw->state.dirty.brw |= BRW_NEW_BATCH;
H A Dgen6_vs_state.c121 .dirty = {
229 .dirty = {
H A Dgen7_wm_state.c101 .dirty = {
231 .dirty = {
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_vbo_t.c271 GLboolean dirty; local
277 dirty = (delta < 0 ||
280 dirty = GL_TRUE;
283 *pdelta = (dirty ? 0 : delta);
284 return dirty;
295 GLboolean dirty = GL_FALSE; local
329 dirty |= check_update_array(a, offset[i], bo[i], pdelta);
334 if (dirty) {
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_context.h63 struct st_state_flags dirty; member in struct:st_tracked_state
123 struct st_state_flags dirty; member in struct:st_context

Completed in 481 milliseconds

1234567891011>>