/frameworks/base/libs/hwui/ |
OpenGLRenderer.cpp | 394 status_t OpenGLRenderer::invokeFunctors(Rect& dirty) { 419 dirty.unionWith(localDirty); 432 status_t OpenGLRenderer::callDrawGLFunction(Functor* functor, Rect& dirty) { 446 // Since we don't know what the functor will draw, let's dirty 466 dirty.unionWith(localDirty); 534 Rect& dirty = layer->dirtyRect; local 1794 bool dirty = right - left > 0.0f && bottom - top > 0.0f; local [all...] |
/frameworks/native/services/surfaceflinger/ |
SurfaceFlinger.cpp | 793 // transform the dirty region into this screen's coordinate space 799 // and draw the dirty region 1330 Region dirty; local [all...] |
SurfaceFlinger.h | 236 * if available and compute the dirty region. 340 // mark a region of a layer stack dirty. this updates the dirty 342 void invalidateLayerStack(uint32_t layerStack, const Region& dirty); 370 const Region& dirty);
|
/external/chromium/net/disk_cache/ |
rankings.cc | 382 // A crash in between Remove and Insert will lead to a dirty entry not on the 574 if (!rankings->Data()->dirty && !rankings->Data()->dummy) 584 rankings->Data()->dirty = backend_->GetCurrentEntryId() - 1; 585 if (!rankings->Data()->dirty) 586 rankings->Data()->dirty--; 631 // dirty, and will be removed later. Otherwise, we'll get assertions when 632 // attempting to remove the dirty entry. 724 // If this entry is not dirty, it is a serious problem. 725 return backend_->GetCurrentEntryId() != rankings->Data()->dirty;
|
entry_impl.h | 90 bool dirty() { function in class:disk_cache::EntryImpl 98 // Marks this entry as dirty (in memory) if needed. This is intended only for 256 bool dirty_; // True if we detected that this is a dirty entry.
|
/frameworks/base/core/java/android/widget/ |
ProgressBar.java | 961 final Rect dirty = dr.getBounds(); local [all...] |
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/ |
ProgressBar.java | 906 final Rect dirty = dr.getBounds(); local 910 invalidate(dirty.left + scrollX, dirty.top + scrollY, 911 dirty.right + scrollX, dirty.bottom + scrollY); [all...] |
/external/qemu/hw/ |
goldfish_fb.c | 266 * used to speed-up the check using the VGA dirty bits. In practice 288 * use the VGA dirty bits table to speed up the detection of 292 int dirty = 0; local 301 dirty |= cpu_physical_memory_get_dirty(dirty_addr, VGA_DIRTY_FLAG); 306 if (!dirty) { /* this line was not modified, skip to next one */ 443 /* Always clear the dirty VGA bits */ 526 if (full_update) { /* don't use dirty-bits optimization */
|
/frameworks/native/opengl/libagl/ |
context.h | 350 uint8_t dirty; member in struct:android::gl::texture_unit_t 448 uint8_t dirty; member in struct:android::gl::matrix_stack_t 508 uint32_t dirty; member in struct:android::gl::transform_state_t
|
/external/kernel-headers/original/asm-x86/ |
pgtable_32.h | 271 * We only update the dirty/accessed state if we set 272 * the dirty bit by hand in the kernel, since the hardware 274 * race with other CPU's that might be updating the dirty 278 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) \ 281 if (__changed && dirty) { \
|
/external/skia/legacy/src/animator/ |
SkDisplayable.cpp | 129 copy->dirty(); 133 void SkDisplayable::dirty() { function in class:SkDisplayable 550 // displayable->dirty();
|
SkAnimateBase.cpp | 69 void SkAnimateBase::dirty() { function in class:SkAnimateBase
|
SkDisplayPost.cpp | 61 void SkPost::dirty() { function in class:SkPost
|
SkDrawMatrix.cpp | 86 void SkDrawMatrix::dirty() { function in class:SkDrawMatrix
|
/external/skia/src/animator/ |
SkDisplayable.cpp | 129 copy->dirty(); 133 void SkDisplayable::dirty() { function in class:SkDisplayable 534 // displayable->dirty();
|
SkAnimateBase.cpp | 69 void SkAnimateBase::dirty() { function in class:SkAnimateBase
|
SkDisplayPost.cpp | 61 void SkPost::dirty() { function in class:SkPost
|
SkDrawMatrix.cpp | 86 void SkDrawMatrix::dirty() { function in class:SkDrawMatrix
|
/external/yaffs2/yaffs2/ |
yaffs_guts.h | 116 int dirty; member in struct:__anon18637 117 int nBytes; /* Only valid if the cache is dirty */ 405 __u8 dirty:1; /* the object needs to be written to flash */ member in struct:yaffs_ObjectStruct
|
yaffs_guts.c | [all...] |
/hardware/samsung_slsi/exynos5/libgscaler/ |
exynos_gscaler.c | 1071 gsc_handle->src.dirty = true; [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
tree.rb | 1248 @dirty = false 1260 @dirty = true [all...] |
/external/protobuf/python/google/protobuf/ |
reflection.py | 781 self._listener_for_children.dirty = False [all...] |
/external/qemu/ |
vnc.h | 109 uint32_t dirty[VNC_MAX_HEIGHT][VNC_DIRTY_WORDS]; member in struct:VncSurface
|
/frameworks/base/core/java/android/view/ |
Surface.java | 39 private static native void nativeLockCanvas(int nativeObject, Canvas canvas, Rect dirty) 223 * @param inOutDirty A rectangle that represents the dirty region that the caller wants 224 * to redraw. This function may choose to expand the dirty rectangle if for example 226 * not available. The caller must redraw the entire dirty region as represented
|