/external/mesa3d/src/mesa/drivers/dri/i965/ |
gen6_sol.c | 66 brw->state.dirty.brw |= BRW_NEW_SURFACES; 70 .dirty = { 103 brw->state.dirty.brw |= BRW_NEW_GS_BINDING_TABLE; 119 brw->state.dirty.brw |= BRW_NEW_GS_BINDING_TABLE; 123 .dirty = { 147 .dirty = { 187 brw->state.dirty.brw |= BRW_NEW_SOL_INDICES;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
i915_vtbl.c | 231 GLuint dirty; local 236 dirty = state->active & ~state->emitted; 237 if (dirty & I915_UPLOAD_TEX_ALL) 239 dirty = state->active & ~state->emitted; 240 return dirty; 247 GLuint dirty = get_dirty(state); local 251 if (dirty & I915_UPLOAD_INVARIENT) 254 if (dirty & I915_UPLOAD_RASTER_RULES) 257 if (dirty & I915_UPLOAD_CTX) 260 if (dirty & I915_UPLOAD_BLEND 295 GLuint dirty; local 845 GLuint dirty = get_dirty(&i915->state); local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i915_vtbl.c | 231 GLuint dirty; local 236 dirty = state->active & ~state->emitted; 237 if (dirty & I915_UPLOAD_TEX_ALL) 239 dirty = state->active & ~state->emitted; 240 return dirty; 247 GLuint dirty = get_dirty(state); local 251 if (dirty & I915_UPLOAD_INVARIENT) 254 if (dirty & I915_UPLOAD_RASTER_RULES) 257 if (dirty & I915_UPLOAD_CTX) 260 if (dirty & I915_UPLOAD_BLEND 295 GLuint dirty; local 845 GLuint dirty = get_dirty(&i915->state); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_state_derived.c | 324 softpipe->dirty |= SP_NEW_SAMPLER; 341 softpipe->dirty |= SP_NEW_TEXTURE; 345 if (softpipe->dirty & SP_NEW_STIPPLE) 350 if (softpipe->dirty & (SP_NEW_RASTERIZER | 355 if (softpipe->dirty & (SP_NEW_RASTERIZER | 361 if (softpipe->dirty & (SP_NEW_SAMPLER | 367 if (softpipe->dirty & (SP_NEW_RASTERIZER | 372 if (softpipe->dirty & (SP_NEW_SCISSOR | 377 if (softpipe->dirty & (SP_NEW_BLEND | 383 softpipe->dirty = 0 [all...] |
sp_state_rasterizer.c | 58 softpipe->dirty |= SP_NEW_RASTERIZER;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_swtnl_state.c | 88 unsigned dirty ) 92 if (dirty & SVGA_NEW_VS) 96 if (dirty & SVGA_NEW_FS) 100 if (dirty & SVGA_NEW_VBUFFER) 105 if (dirty & SVGA_NEW_VELEMENT) 110 if (dirty & SVGA_NEW_CLIP) 114 if (dirty & (SVGA_NEW_VIEWPORT | 119 if (dirty & SVGA_NEW_RAST) 124 if (dirty & SVGA_NEW_FRAME_BUFFER) 235 unsigned dirty ) [all...] |
svga_state_need_swtnl.c | 76 unsigned dirty ) 97 svga->dirty |= SVGA_NEW_NEED_SWVFETCH; 116 unsigned dirty ) 168 svga->dirty |= SVGA_NEW_NEED_PIPELINE; 195 unsigned dirty ) 227 svga->dirty |= SVGA_NEW_NEED_SWTNL;
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_state_derived.c | 324 softpipe->dirty |= SP_NEW_SAMPLER; 341 softpipe->dirty |= SP_NEW_TEXTURE; 345 if (softpipe->dirty & SP_NEW_STIPPLE) 350 if (softpipe->dirty & (SP_NEW_RASTERIZER | 355 if (softpipe->dirty & (SP_NEW_RASTERIZER | 361 if (softpipe->dirty & (SP_NEW_SAMPLER | 367 if (softpipe->dirty & (SP_NEW_RASTERIZER | 372 if (softpipe->dirty & (SP_NEW_SCISSOR | 377 if (softpipe->dirty & (SP_NEW_BLEND | 383 softpipe->dirty = 0 [all...] |
sp_state_rasterizer.c | 58 softpipe->dirty |= SP_NEW_RASTERIZER;
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_swtnl_state.c | 88 unsigned dirty ) 92 if (dirty & SVGA_NEW_VS) 96 if (dirty & SVGA_NEW_FS) 100 if (dirty & SVGA_NEW_VBUFFER) 105 if (dirty & SVGA_NEW_VELEMENT) 110 if (dirty & SVGA_NEW_CLIP) 114 if (dirty & (SVGA_NEW_VIEWPORT | 119 if (dirty & SVGA_NEW_RAST) 124 if (dirty & SVGA_NEW_FRAME_BUFFER) 235 unsigned dirty ) [all...] |
svga_state_need_swtnl.c | 76 unsigned dirty ) 97 svga->dirty |= SVGA_NEW_NEED_SWVFETCH; 116 unsigned dirty ) 168 svga->dirty |= SVGA_NEW_NEED_PIPELINE; 195 unsigned dirty ) 227 svga->dirty |= SVGA_NEW_NEED_SWTNL;
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
RewriteRuleElementStream.as | 57 * can be reused in future subrules. So, reset must set a dirty bit. 58 * If dirty, then next() always returns a dup. 63 protected var dirty:Boolean = false; 90 * the dirty bit. 94 dirty = true; 120 * size==1. If we've already used the element, dup (dirty bit set). 125 if ( dirty || (cursor>=n && n==1) ) {
|
RewriteRuleSubtreeStream.as | 52 if ( dirty || (cursor>=n && n==1) ) {
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
RewriteRuleElementStream.java | 60 * can be reused in future subrules. So, reset must set a dirty bit. 61 * If dirty, then next() always returns a dup. 68 protected boolean dirty = false; field in class:RewriteRuleElementStream 104 * the dirty bit. 108 dirty = true; 134 * size==1. If we've already used the element, dup (dirty bit set). 138 if ( dirty || (cursor>=n && n==1) ) {
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
RewriteRuleElementStream.js | 22 * can be reused in future subrules. So, reset must set a dirty bit. 23 * If dirty, then next() always returns a dup. 28 this.dirty = false; 46 * the dirty bit. 50 this.dirty = true; 75 * size==1. If we've already used the element, dup (dirty bit set). 80 if ( this.dirty || (this.cursor>=n && n==1) ) {
|
/external/chromium_org/storage/browser/fileapi/ |
file_system_usage_cache.h | 27 // Gets the size described in the .usage file even if dirty > 0 or 31 // Gets the dirty count in the .usage file. 33 bool GetDirty(const base::FilePath& usage_file_path, uint32* dirty); 35 // Increments or decrements the "dirty" entry in the .usage file. 48 // Updates the size described in the .usage file by delta with keeping dirty 49 // even if dirty > 0. 66 // Read the size, validity and the "dirty" entry described in the .usage file. 70 uint32* dirty, 75 int32 dirty,
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_state_blend.c | 73 llvmpipe->dirty |= LP_NEW_BLEND; 100 llvmpipe->dirty |= LP_NEW_BLEND_COLOR; 145 llvmpipe->dirty |= LP_NEW_DEPTH_STENCIL_ALPHA; 173 llvmpipe->dirty |= LP_NEW_DEPTH_STENCIL_ALPHA;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_hw_context_priv.h | 55 int dirty, int index);
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayMovie.h | 25 virtual void dirty();
|
SkDisplayPost.h | 32 virtual void dirty();
|
SkDrawColor.h | 18 virtual void dirty();
|
SkDrawRectangle.h | 22 virtual void dirty();
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_state_blend.c | 73 llvmpipe->dirty |= LP_NEW_BLEND; 100 llvmpipe->dirty |= LP_NEW_BLEND_COLOR; 145 llvmpipe->dirty |= LP_NEW_DEPTH_STENCIL_ALPHA; 173 llvmpipe->dirty |= LP_NEW_DEPTH_STENCIL_ALPHA;
|
/external/mesa3d/src/gallium/drivers/r600/ |
r600_hw_context_priv.h | 55 int dirty, int index);
|
/external/chromium_org/content/browser/fileapi/ |
file_system_usage_cache_unittest.cc | 68 uint32 dirty = 0; local 72 EXPECT_TRUE(usage_cache()->GetDirty(usage_file_path, &dirty)); 73 EXPECT_EQ(1u, dirty); 83 // DecrementDirty for dirty = 0 is invalid. It returns false. 102 uint32 dirty = 0; local 105 // DecrementDirty for dirty = 0 is invalid. It returns false. 109 // does not make dirty = -1 after DecrementDirty. 110 EXPECT_TRUE(usage_cache()->GetDirty(usage_file_path, &dirty)); 111 EXPECT_EQ(1u, dirty); 130 uint32 dirty = 0 local [all...] |