HomeSort by relevance Sort by last modified time
    Searched defs:dirty (Results 126 - 150 of 223) sorted by null

1 2 3 4 56 7 8 9

  /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 */
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/
DiskLruCache.java 107 private static final String DIRTY = "DIRTY";
123 * DIRTY 335c4c6028171cfddfbaae1a9c313c52
126 * DIRTY 1ab96a171faeeee38496d8b330771a7a
138 * o DIRTY lines track that an entry is actively being created or updated.
139 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
140 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
390 } else if (parts[0].equals(DIRTY) && parts.length == 2) {
401 * cache. Dirty entries are assumed to be inconsistent and will be deleted.
444 writer.write(DIRTY + ' ' + entry.key + '\n')
582 File dirty = entry.getDirtyFile(i); local
    [all...]
  /external/chromium/net/disk_cache/
entry_impl.cc 353 DCHECK(node_.Data()->dirty || read_only_);
367 DCHECK(node_.Data()->dirty || read_only_);
445 node->dirty = backend_->GetCurrentEntryId();
462 if (!node_.Data()->dirty) {
463 node_.Data()->dirty = backend_->GetCurrentEntryId();
537 if (!rankings->dirty) {
538 rankings->dirty = backend_->GetCurrentEntryId();
552 if (node_.Data()->dirty && current_id != node_.Data()->dirty)
560 node_.Data()->dirty = new_id
1464 int dirty = 0; local
    [all...]
  /external/chromium_org/ash/system/chromeos/network/
network_icon.cc 60 // Determines whether or not the associated network might be dirty and if so
537 bool dirty = image_.isNull(); local
542 dirty = true;
546 dirty |= UpdateWirelessStrengthIndex(network);
549 dirty |= UpdateCellularState(network);
553 dirty |= UpdateVPNBadge();
556 if (dirty) {
572 bool dirty = false; local
577 dirty = true;
582 dirty = true
    [all...]
  /external/chromium_org/cc/layers/
tiled_layer.cc 50 // it has already painted, mark all non-dirty tiles as valid before painting
316 // Returns true if tile is dirty and only part of it needs to be updated.
411 // Ensure the entire tile is dirty if we don't have the texture.
444 // Prepare update rect from original dirty rects.
512 // Use update_rect as the above loop copied the dirty rect for this frame
558 // Offset from paint rectangle to this tile's dirty rectangle.
805 // Then expand outwards one row/column at a time until we find a dirty
897 bool dirty = local
899 if (!updated && can_acquire && dirty)
    [all...]
  /external/chromium_org/net/disk_cache/
entry_impl.cc 353 DCHECK(node_.Data()->dirty || read_only_);
367 DCHECK(node_.Data()->dirty || read_only_);
445 node->dirty = backend_->GetCurrentEntryId();
461 if (!node_.Data()->dirty) {
462 node_.Data()->dirty = backend_->GetCurrentEntryId();
539 if (!rankings->dirty) {
540 rankings->dirty = backend_->GetCurrentEntryId();
549 if (node_.Data()->dirty && current_id != node_.Data()->dirty)
557 node_.Data()->dirty = new_id
1536 int dirty = 0; local
    [all...]
  /external/chromium_org/net/disk_cache/v3/
entry_impl_v3.cc 292 node->dirty = backend_->GetCurrentEntryId();
312 if (!node_.Data()->dirty) {
313 node_.Data()->dirty = backend_->GetCurrentEntryId();
519 DCHECK(node_.Data()->dirty || read_only_);
560 DCHECK(node_.Data()->dirty || read_only_);
609 DCHECK(node_.Data()->dirty || read_only_);
635 DCHECK(node_.Data()->dirty || read_only_);
746 // There was a failure writing the actual data. Mark the entry as dirty.
748 node_.Data()->dirty = current_id == 1 ? -1 : current_id - 1;
750 } else if (node_.HasData() && !dirty_ && node_.Data()->dirty) {
1381 int dirty = 0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
path.c 49 VGboolean dirty; member in struct:path
204 path->dirty = VG_TRUE;
268 p->dirty = VG_TRUE;
376 sizeof *matrix ) == 0 && p->dirty == VG_FALSE)
622 p->dirty = VG_FALSE;
668 p->dirty = VG_TRUE;
915 dst->dirty = VG_TRUE;
935 dst->dirty = VG_TRUE;
    [all...]
renderer.c 80 VGbitfield dirty; member in struct:renderer
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
path.c 49 VGboolean dirty; member in struct:path
204 path->dirty = VG_TRUE;
268 p->dirty = VG_TRUE;
376 sizeof *matrix ) == 0 && p->dirty == VG_FALSE)
622 p->dirty = VG_FALSE;
668 p->dirty = VG_TRUE;
915 dst->dirty = VG_TRUE;
935 dst->dirty = VG_TRUE;
    [all...]
renderer.c 80 VGbitfield dirty; member in struct:renderer
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 97 private static final String DIRTY = "DIRTY";
110 * DIRTY 335c4c6028171cfddfbaae1a9c313c52
113 * DIRTY 1ab96a171faeeee38496d8b330771a7a
125 * o DIRTY lines track that an entry is actively being created or updated.
126 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
127 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
305 } else if (secondSpace == -1 && firstSpace == DIRTY.length() && line.startsWith(DIRTY)) {
316 * cache. Dirty entries are assumed to be inconsistent and will be deleted
525 File dirty = entry.getDirtyFile(i); local
    [all...]
  /external/qemu/
vnc.h 109 uint32_t dirty[VNC_MAX_HEIGHT][VNC_DIRTY_WORDS]; member in struct:VncSurface
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 204 android::uirenderer::Rect dirty; local
205 return renderer->callDrawGLFunction(functor, dirty);
219 jobject clazz, OpenGLRenderer* renderer, jobject dirty) {
222 if (status != DrawGlInfo::kStatusDone && dirty != NULL) {
223 env->CallVoidMethod(dirty, gRectClassInfo.set,
776 jobject dirty, jint flags) {
779 if (status != DrawGlInfo::kStatusDone && dirty != NULL) {
780 env->CallVoidMethod(dirty, gRectClassInfo.set,
    [all...]
  /frameworks/native/opengl/libagl/
matrix.cpp 75 c->transforms.dirty = transform_state_t::VIEWPORT |
120 int dirty = c->transforms.dirty & want; local
123 if (dirty & transform_state_t::MODELVIEW) {
128 if (dirty & transform_state_t::PROJECTION) {
133 if (dirty & transform_state_t::VIEWPORT) {
140 if (dirty & transform_state_t::MVP) {
147 if (dirty & transform_state_t::MVUI) {
153 if (dirty & transform_state_t::TEXTURE) {
159 if (dirty & transform_state_t::MVIT)
    [all...]
  /art/compiler/dex/quick/
mir_to_lir.h 206 bool dirty; // If live, is it dirty? member in struct:art::Mir2Lir::RegisterInfo
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_context.h 251 unsigned dirty; member in struct:i915_context
333 /* Dirty flags for hardware emit
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_context.h 269 int dirty; member in struct:svga_hw_view_state
345 unsigned dirty[SVGA_STATE_MAX]; member in struct:svga_context::__anon15675
357 unsigned dirty; /* statechanges since last update_state() */ member in struct:svga_context
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_common_context.h 135 GLboolean dirty; /* dirty-mark in emit_state_list */ member in struct:radeon_state_atom
  /external/mesa3d/src/gallium/drivers/i915/
i915_context.h 251 unsigned dirty; member in struct:i915_context
333 /* Dirty flags for hardware emit
  /external/mesa3d/src/gallium/drivers/svga/
svga_context.h 269 int dirty; member in struct:svga_hw_view_state
345 unsigned dirty[SVGA_STATE_MAX]; member in struct:svga_context::__anon26142
357 unsigned dirty; /* statechanges since last update_state() */ member in struct:svga_context
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common_context.h 135 GLboolean dirty; /* dirty-mark in emit_state_list */ member in struct:radeon_state_atom
  /frameworks/base/core/java/android/widget/
ProgressBar.java 966 final Rect dirty = dr.getBounds(); local
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ProgressBarICS.java 713 final Rect dirty = dr.getBounds(); local
717 invalidate(dirty.left + scrollX, dirty.top + scrollY,
718 dirty.right + scrollX, dirty.bottom + scrollY);
  /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...]

Completed in 1646 milliseconds

1 2 3 4 56 7 8 9