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

1 2 3 4 5 67 8 91011>>

  /external/chromium/chrome/browser/sync/syncable/
syncable.h 236 // Set the dirty bit, and optionally add this entry's metahandle to
237 // a provided index on dirty bits in |dirty_index|. Parameter may be null,
238 // and will result only in setting the dirty bit of this entry.
247 // Clear the dirty bit, and optionally remove this entry's metahandle from
248 // a provided index on dirty bits in |dirty_index|. Parameter may be null,
249 // and will result only in clearing dirty bit of this entry.
722 // The dirty/clean state of kernel fields backed by the share_info table.
861 // WriteTransaction) or rolling back the dirty bits. It also uses
927 // Rolls back dirty bits in the event that the SaveChanges that
    [all...]
  /external/qemu/
vnc-android.c 280 two 16-pixel blocks but we only mark the first as dirty
292 vnc_set_bit(s->dirty[y], (x + i) / 16);
373 memset(vs->guest.dirty, 0xFF, sizeof(vs->guest.dirty));
383 memset(vs->server.dirty, 0xFF, sizeof(vs->guest.dirty));
701 if (!vnc_get_bit(s->dirty[y + h], last_x))
704 vnc_clear_bit(s->dirty[y + h], tmp_x);
732 * Walk through the guest dirty map.
734 * Update server dirty map
    [all...]
vnc.c 274 two 16-pixel blocks but we only mark the first as dirty
286 vnc_set_bit(s->dirty[y], (x + i) / 16);
367 memset(vs->guest.dirty, 0xFF, sizeof(vs->guest.dirty));
377 memset(vs->server.dirty, 0xFF, sizeof(vs->guest.dirty));
695 if (!vnc_get_bit(s->dirty[y + h], last_x))
698 vnc_clear_bit(s->dirty[y + h], tmp_x);
726 * Walk through the guest dirty map.
728 * Update server dirty map
    [all...]
  /frameworks/base/core/java/android/view/
ViewRootImpl.java 713 public void invalidateChild(View child, Rect dirty) {
715 if (DEBUG_DRAW) Log.v(TAG, "Invalidate child: " + dirty);
716 if (dirty == null) {
722 mTempRect.set(dirty);
723 dirty = mTempRect;
725 dirty.offset(0, -mCurScrollY);
728 mTranslator.translateRectInAppWindowToScreen(dirty);
731 dirty.inset(-1, -1);
734 if (!mDirty.isEmpty() && !mDirty.contains(dirty)) {
738 mDirty.union(dirty);
1855 Rect dirty = mDirty; local
    [all...]
GLES20Canvas.java 249 void onPreDraw(Rect dirty) {
250 if (dirty != null) {
251 nPrepareDirty(mRenderer, dirty.left, dirty.top, dirty.right, dirty.bottom, mOpaque);
341 public boolean drawDisplayList(DisplayList displayList, int width, int height, Rect dirty) {
343 ((GLES20DisplayList) displayList).getNativeDisplayList(), width, height, dirty);
347 int width, int height, Rect dirty);
    [all...]
  /external/netperf/
nettest_sctp.c 5 #define DIRTY
385 #ifdef DIRTY
403 #ifdef DIRTY
405 #endif /* DIRTY */
562 #ifdef DIRTY
565 #endif /* DIRTY */
686 #ifdef DIRTY
687 /* initialize the random number generator for putting dirty stuff */
702 #ifdef DIRTY
703 /* we want to dirty some number of consecutive integers in the buffer *
    [all...]
nettest_sctp.h 28 /* should be made dirty before calling recv? */
nettest_unix.c 3 #define DIRTY
250 #ifdef DIRTY
265 #ifdef DIRTY
267 #endif /* DIRTY */
391 #ifdef DIRTY
394 #endif /* DIRTY */
473 #ifdef DIRTY
474 /* initialize the random number generator for putting dirty stuff */
481 #ifdef DIRTY
482 /* we want to dirty some number of consecutive integers in the buffer *
    [all...]
  /external/chromium/net/base/
transport_security_state.cc 334 bool* dirty) {
336 return Deserialise(input, dirty, &enabled_hosts_);
342 bool* dirty,
417 // Make sure we dirty the state if we drop an entry.
437 *dirty = dirtied;
507 bool dirty; local
508 Deserialise(cmd_line_hsts, &dirty, &hosts);
  /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 */
434 /* Always clear the dirty VGA bits */
517 if (full_update) { /* don't use dirty-bits optimization */
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 168 * "dirty", and need syncing to the SampleSync server.
172 * @return a list of Users that are considered "dirty"
175 Log.i(TAG, "*** Looking for local dirty contacts");
197 Log.i(TAG, "Dirty Contact: " + Long.toString(rawContactId));
239 * so that we're ready for the next time. This involves clearing out the 'dirty'
258 Log.i(TAG, "Clearing dirty flag for: " + rawContact.getBestName());
553 * Clear the local system 'dirty' flag for a contact.
737 RawContacts.DIRTY,
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 149 * includes all the locally-dirty contacts so that the server can process
209 Log.e(TAG, "Authentication exception in sending dirty contacts");
212 Log.e(TAG, "Server error in sending dirty contacts: " + resp.getStatusLine());
  /external/chromium/net/disk_cache/
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
245 bool dirty_; // True if we detected that this is a dirty entry.
  /external/iptables/extensions/
Android.mk 33 # LOCAL_PATH needed because of dirty #include "blabla.c"
96 # LOCAL_PATH needed because of dirty #include "blabla.c"
159 # LOCAL_PATH needed because of dirty #include "blabla.c"
  /external/jpeg/
jmemmgr.c 160 boolean dirty; /* do current buffer contents need written? */ member in struct:jvirt_sarray_control
176 boolean dirty; /* do current buffer contents need written? */ member in struct:jvirt_barray_control
659 sptr->dirty = FALSE;
683 bptr->dirty = FALSE;
777 if (ptr->dirty) {
779 ptr->dirty = FALSE;
832 /* Flag the buffer dirty if caller will write in it */
834 ptr->dirty = TRUE;
862 if (ptr->dirty) {
864 ptr->dirty = FALSE
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocFast.cpp 76 bool Dirty; // Register needs spill.
79 Dirty(false) {}
259 if (LR.Dirty) {
263 LR.Dirty = false;
307 /// spillAll - Spill all dirty virtregs without killing them.
439 return LiveVirtRegs.lookup(VirtReg).Dirty ? spillDirty : spillClean;
458 Cost += LiveVirtRegs.lookup(VirtReg).Dirty ? spillDirty : spillClean;
494 // Ignore the hint if we would have to spill a dirty register.
539 /// defineVirtReg - Allocate a register for VirtReg and mark it as dirty.
568 LR.Dirty = true
    [all...]
  /external/oprofile/events/x86-64/family11h/
unit_masks 107 0x04 Probe hit dirty without memory cancel
108 0x08 Probe hit dirty with memory cancel
166 0x20 Change to Dirty (first store to clean block already in cache)
  /external/oprofile/events/x86-64/hammer/
unit_masks 92 0x04 Probe hit dirty without memory cancel
93 0x08 Probe hit dirty with memory cancel
160 0x20 Change to Dirty (first store to clean block already in cache)
  /external/protobuf/python/google/protobuf/internal/
containers.py 102 if not self._message_listener.dirty:
109 if not self._message_listener.dirty:
205 if not self._message_listener.dirty:
  /external/webkit/Source/WebCore/platform/graphics/android/
TiledTexture.cpp 148 // apply dirty region to affected tiles
151 // TODO: don't mark all tiles dirty
241 XLOG(" - [%d], { painter %x vs %x }, tile %x %d,%d at scale %.2f vs %.2f [ready: %d] dirty: %d",
  /frameworks/base/libs/hwui/
DisplayListRenderer.h 112 bool replay(OpenGLRenderer& renderer, Rect& dirty, uint32_t level = 0);
242 bool callDrawGLFunction(Functor *functor, Rect& dirty);
267 Rect& dirty, uint32_t level = 0);
  /frameworks/base/services/surfaceflinger/DisplayHardware/
DisplayHardware.cpp 362 void DisplayHardware::flip(const Region& dirty) const
371 const Region newDirty(dirty.intersect(bounds()));
379 mNativeWindow->setUpdateRectangle(dirty.getBounds());
  /external/antlr/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.java 70 if ( dirty || (cursor>=n && n==1) ) {
  /external/icu4c/i18n/
inputext.cpp 92 // quick and dirty, not 100% accurate, but hopefully good enough, statistically.
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 134 /// Dirty - Entries with this marker occur in a LocalDeps map or
140 /// In a default-constructed MemDepResult object, the type will be Dirty
144 /// isDirty - Return true if this is a MemDepResult in its dirty/invalid.
272 /// the bool indicates whether we have any dirty bits in the set.

Completed in 757 milliseconds

1 2 3 4 5 67 8 91011>>