HomeSort by relevance Sort by last modified time
    Searched full:dirty (Results 201 - 225 of 660) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/mesa3d/test/
m_matrix.c 67 #define MAT_DIRTY_TYPE 0x100 /**< matrix type is dirty */
68 #define MAT_DIRTY_FLAGS 0x200 /**< matrix flags are dirty */
69 #define MAT_DIRTY_INVERSE 0x400 /**< matrix inverse is dirty */
98 /** dirty matrix flags mask */
216 * Joins both flags and marks the type and inverse as dirty. Calls matmul34()
236 * Joins both flags and marks the type and inverse as dirty. Calls matmul34()
259 * Marks the matrix flags with general flag, and type and inverse dirty flags.
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.c 636 bucket->dirty = 0;
646 surfaces.dirty = 0;
668 ((vidmem_bucket *)surface->hwdata)->dirty = 1;
673 return ((vidmem_bucket *)surface->hwdata)->dirty;
683 /* Clear all surface dirty bits */
685 bucket->dirty = 0;
758 bucket->dirty = 0;
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 529 bool DisplayList::replay(OpenGLRenderer& renderer, Rect& dirty, uint32_t level) {
554 needsInvalidate |= renderer.callDrawGLFunction(functor, dirty);
655 dirty, level + 1);
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 460 CalendarContract.Events.DIRTY + " INTEGER," +
528 "dirty INTEGER," +
584 "dirty INTEGER," +
620 CalendarContract.Calendars.DIRTY + " INTEGER," +
663 "dirty INTEGER," +
    [all...]
  /external/yaffs2/yaffs2/
yaffs_guts.c     [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzVideo.m     [all...]
  /external/oprofile/events/x86-64/family10/
unit_masks 113 0x04 Probe hit dirty without memory cancel
114 0x08 Probe hit dirty with memory cancel
179 0x20 Change-to-Dirty (first store to clean block already in cache)
307 0x08 Change-to-Dirty
316 0x08 Change-to-Dirty
  /external/valgrind/main/VEX/priv/
guest_ppc_helpers.c 65 /* DIRTY HELPER (non-referentially-transparent) */
92 /* DIRTY HELPER (non-referentially transparent) */
110 /* DIRTY HELPER (I'm not really sure what the side effects are) */
124 /* DIRTY HELPER (reads guest state, writes guest mem) */
153 /* DIRTY HELPER (reads guest state, writes guest mem) */
  /frameworks/base/docs/html/guide/topics/graphics/
hardware-accel.jd 188 the regions of the screen that need to be redrawn (the dirty region). The Android system then
189 draws any view in the hierarchy that intersects with the dirty region. Unfortunately, there are
197 Android system redraws views when they intersect the dirty region, a view whose content you
215 display lists for views marked dirty by an {@link android.view.View#invalidate invalidate()}
227 <p>With this model, you cannot rely on a view intersecting the dirty region to have its {@link
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactOperations.java 309 mValues.put(RawContacts.DIRTY, isDirtyValue);
412 // delete a contact, and the ability to clear the dirty flag.
417 // the contact as 'dirty' for us!
  /external/skia/src/animator/
SkDisplayable.cpp 137 copy->dirty();
141 void SkDisplayable::dirty() { function in class:SkDisplayable
558 // displayable->dirty();
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginView.mm 444 // Clip to the dirty region if drawing to a window. When drawing to another bitmap context, do not clip.
446 // Clip to dirty region so plug-in does not draw over already-drawn regions of the window that are
451 // Get list of dirty rects from the opaque ancestor -- WebKit does some tricks with invalidation and
453 // knows about the true set of dirty rects.
462 // Create a region for this dirty rect
466 // Union this dirty rect with the rest of the dirty rects
472 // Intersect the dirty region with the clip region, so that we only draw over dirty parts
525 // Clip to the dirty region if drawing to a window. When drawing to another bitmap context, do not clip
    [all...]
  /frameworks/base/core/java/android/provider/
BrowserContract.java 45 * the dirty flag is not automatically set and the "syncToNetwork" parameter
130 public static final String DIRTY = "dirty";
  /frameworks/compile/libbcc/lib/ExecutionEngine/
Script.cpp 313 // Dirty hack for libRS.
314 // TODO(all): This dirty hack should be removed in the future.
431 // libRS is threadable dirty hack
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 126 // Finally reset the dirty flag if everything was saved properly
223 // Before changing the table, commit all dirty state.
468 * Marks the part dirty. Called as a result of user interaction with the widgets in the
  /external/netperf/
config.h 4 /* Define to one to enable dirty buffer support. May affect results. */
5 /* #undef DIRTY */
nettest_dlpi.c 170 #ifdef DIRTY
172 #endif /* DIRTY */
360 #ifdef DIRTY
363 #endif /* DIRTY */
441 #ifdef DIRTY
442 /* initialize the random number generator for putting dirty stuff */
445 #endif /* DIRTY */
449 #ifdef DIRTY
450 /* we want to dirty some number of consecutive integers in the buffer */
452 /* them cleanly into the cache. The clean ones will follow any dirty */
    [all...]
nettest_sdp.c 5 #define DIRTY
389 #ifdef DIRTY
392 #endif /* DIRTY */
514 #ifdef DIRTY
519 #endif /* DIRTY */
    [all...]
  /frameworks/base/core/java/android/os/
Debug.java 113 /** The private dirty pages used by dalvik. */
115 /** The shared dirty pages used by dalvik. */
120 /** The private dirty pages used by the native heap. */
122 /** The shared dirty pages used by the native heap. */
127 /** The private dirty pages used by everything else. */
129 /** The shared dirty pages used by everything else. */
148 * Return total private dirty memory usage in kB.
155 * Return total shared dirty memory usage in kB.
    [all...]
  /frameworks/base/services/surfaceflinger/
SurfaceFlinger.cpp 639 Region dirty; local
702 // compute this layer's dirty region
705 dirty = visibleRegion;
707 dirty.orSelf(layer->visibleRegionScreen);
726 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
728 dirty.subtractSelf(aboveOpaqueLayers);
730 // accumulate to the screen dirty region
731 dirtyRegion.orSelf(dirty);
862 // we can redraw only what's dirty, but since SWAP_RECTANGLE only
892 // update the swap region and clear the dirty regio
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarSyncTestingBase.java 59 EVENT_COLUMNS_TO_SKIP.add(CalendarContract.Events.DIRTY);
65 CALENDARS_COLUMNS_TO_SKIP.add(CalendarContract.Calendars.DIRTY);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
coff.h 146 #define COFF_JMAGIC 0407 /* dirty text and data image, can't share */
147 #define COFF_DMAGIC 0410 /* dirty text segment, data aligned */
  /system/extras/showmap/
showmap.c 237 printf("size RSS PSS clean dirty clean dirty object\n");
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ContactsSyncAdapter.java     [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 388 are not; they are instead handled with dirty helpers that emulate
    [all...]

Completed in 713 milliseconds

1 2 3 4 5 6 7 891011>>