HomeSort by relevance Sort by last modified time
    Searched defs:dirty (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/mesa3d/src/gallium/drivers/i915/
i915_state.h 40 unsigned dirty; member in struct:i915_tracked_state
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRewriteRuleElementStream.h 33 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset variable
43 @property (assign) BOOL dirty; variable
  /frameworks/base/libs/hwui/tests/unit/
DamageAccumulatorTests.cpp 29 // Test that push & pop are propegating the dirty rect
30 // There is no transformation of the dirty rect, the input is the same
36 da.dirty(50, 50, 100, 100);
58 da.dirty(50, 50, 100, 100);
66 // Test that dirty rectangles are being unioned across "siblings
73 da.dirty(50, 50, 100, 100);
76 da.dirty(150, 50, 200, 125);
95 da.dirty(0, 0, 25, 25);
99 SkRect dirty; local
100 da.finish(&dirty);
126 SkRect dirty; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRewriteRuleElementStream.h 38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset variable
47 @property (assign, getter=Getdirty, setter=Setdirty:) BOOL dirty; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRewriteRuleElementStream.h 38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset variable
47 @property (assign, getter=Getdirty, setter=Setdirty:) BOOL dirty; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRewriteRuleElementStream.h 38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset variable
47 @property (assign, getter=Getdirty, setter=Setdirty:) BOOL dirty; variable
  /external/mesa3d/src/gallium/drivers/svga/
svga_state.h 42 unsigned dirty; member in struct:svga_tracked_state
43 enum pipe_error (*update)( struct svga_context *svga, unsigned dirty );
svga_surface.h 60 boolean dirty; member in struct:svga_surface
  /prebuilts/go/darwin-x86/src/sync/
map_reference_test.go 26 dirty map[interface{}]interface{}
31 value, ok = m.dirty[key]
38 if m.dirty == nil {
39 m.dirty = make(map[interface{}]interface{})
41 m.dirty[key] = value
47 actual, loaded = m.dirty[key]
50 if m.dirty == nil {
51 m.dirty = make(map[interface{}]interface{})
53 m.dirty[key] = value
61 delete(m.dirty, key
144 func (m *DeepCopyMap) dirty() map[interface{}]interface{} { func
    [all...]
  /prebuilts/go/linux-x86/src/sync/
map_reference_test.go 26 dirty map[interface{}]interface{}
31 value, ok = m.dirty[key]
38 if m.dirty == nil {
39 m.dirty = make(map[interface{}]interface{})
41 m.dirty[key] = value
47 actual, loaded = m.dirty[key]
50 if m.dirty == nil {
51 m.dirty = make(map[interface{}]interface{})
53 m.dirty[key] = value
61 delete(m.dirty, key
144 func (m *DeepCopyMap) dirty() map[interface{}]interface{} { func
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
inet_net_pton.c 142 int dirty; local
152 *dst = 0, dirty = 0;
161 if (!dirty++)
164 *++dst = 0, dirty = 0;
168 if (dirty)
ns_ttl.c 127 int ch, digits, dirty; local
132 dirty = 0;
157 dirty = 1;
160 if (dirty)
  /external/curl/lib/
share.h 42 CURL_VOLATILE unsigned int dirty; member in struct:Curl_share
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_uniforms.c 102 uint32_t dirty = 0; local
112 dirty |= ETNA_DIRTY_SAMPLER_VIEWS;
117 sobj->uniforms_dirty_bits = dirty;
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_draw.c 65 if (emit->dirty & (FD_DIRTY_VTXBUF | FD_DIRTY_VTXSTATE))
92 /* fixup dirty shader state in case some "unrelated" (from the state-
107 ctx->dirty |= FD_SHADER_DIRTY_VP;
112 ctx->dirty |= FD_SHADER_DIRTY_FP;
116 ctx->dirty |= FD_SHADER_DIRTY_VP;
119 ctx->dirty |= FD_SHADER_DIRTY_FP;
122 ctx->dirty |= FD_SHADER_DIRTY_FP;
125 ctx->dirty |= FD_SHADER_DIRTY_FP;
128 ctx->dirty |= FD_SHADER_DIRTY_FP | FD_SHADER_DIRTY_VP;
167 unsigned dirty = ctx->dirty local
    [all...]
fd3_emit.h 51 uint32_t dirty; member in struct:fd3_emit
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_draw.c 54 if (emit->dirty & (FD_DIRTY_VTXBUF | FD_DIRTY_VTXSTATE))
76 /* fixup dirty shader state in case some "unrelated" (from the state-
92 ctx->dirty |= FD_SHADER_DIRTY_VP;
98 ctx->dirty |= FD_SHADER_DIRTY_FP;
102 ctx->dirty |= FD_SHADER_DIRTY_VP;
105 ctx->dirty |= FD_SHADER_DIRTY_FP;
108 ctx->dirty |= FD_SHADER_DIRTY_FP;
111 ctx->dirty |= FD_SHADER_DIRTY_FP;
114 ctx->dirty |= FD_SHADER_DIRTY_FP;
117 ctx->dirty |= FD_SHADER_DIRTY_FP | FD_SHADER_DIRTY_VP
158 unsigned dirty = ctx->dirty; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv40_verttex.c 33 unsigned dirty = nv30->vertprog.dirty_samplers; local
35 while (dirty) {
36 unsigned unit = ffs(dirty) - 1;
45 dirty &= ~(1 << unit);
69 nv30->dirty |= NV30_NEW_VERTTEX;
93 nv30->dirty |= NV30_NEW_VERTTEX;
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_pixel_read.c 83 GLuint dirty; local
125 dirty = intel->front_buffer_dirty;
127 intel->front_buffer_dirty = dirty;
163 bool dirty; local
179 /* glReadPixels() wont dirty the front buffer, so reset the dirty
181 dirty = intel->front_buffer_dirty;
183 intel->front_buffer_dirty = dirty;
196 intel->front_buffer_dirty = dirty;
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_pixel_read.c 211 bool dirty; local
245 /* Reading pixels wont dirty the front buffer, so reset the dirty
247 dirty = brw->front_buffer_dirty;
249 brw->front_buffer_dirty = dirty;
267 brw->front_buffer_dirty = dirty;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_texture.h 45 GLboolean dirty; member in struct:nouveau_texture
50 to_nouveau_texture(t)->dirty = GL_TRUE
  /bionic/libc/dns/nameser/
ns_ttl.c 99 int ch, digits, dirty; local
104 dirty = 0;
129 dirty = 1;
132 if (dirty)
136 } else if (!dirty)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
RewriteRuleElementStream.cs 71 * can be reused in future subrules. So, reset must set a dirty bit.
72 * If dirty, then next() always returns a dup.
77 protected bool dirty = false; field in class:Antlr.Runtime.Tree.RewriteRuleElementStream
108 * the dirty bit.
113 dirty = true;
140 * size==1. If we've already used the element, dup (dirty bit set).
145 if (dirty || (cursor >= n && n == 1)) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleElementStream.cs 73 * can be reused in future subrules. So, reset must set a dirty bit.
74 * If dirty, then next() always returns a dup.
79 protected bool dirty = false; field in class:Antlr.Runtime.Tree.RewriteRuleElementStream
113 * the dirty bit.
119 dirty = true;
150 * size==1. If we've already used the element, dup (dirty bit set).
156 if ( dirty || ( cursor >= n && n == 1 ) )
  /external/ltp/testcases/kernel/syscalls/msync/
msync04.c 23 * is no longer dirty after msync() call.
60 uint64_t dirty; local
68 dirty = get_dirty_bit(mmaped_area);
69 if (!dirty) {
70 tst_res(TFAIL, "Expected dirty bit to be set after writing to"
78 dirty = get_dirty_bit(mmaped_area);
79 if (dirty)
80 tst_res(TFAIL, "msync() failed to write dirty page despite"

Completed in 1499 milliseconds

1 2 3 4 5 6 7 8 91011