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

1 2

  /external/mesa3d/src/gallium/drivers/ilo/
ilo_render_gen8.c 61 #define DIRTY(state) (session->pipe_dirty & ILO_DIRTY_ ## state)
69 if (session->rs_delta.dirty & ILO_STATE_RASTER_3DSTATE_RASTER)
73 if (DIRTY(FS)) {
81 if (session->rs_delta.dirty & ILO_STATE_RASTER_3DSTATE_SF)
94 if (session->rs_delta.dirty & ILO_STATE_RASTER_3DSTATE_WM)
97 if (session->cc_delta.dirty & ILO_STATE_CC_3DSTATE_WM_DEPTH_STENCIL)
127 if (DIRTY(FS) || r->instruction_bo_changed)
131 if (DIRTY(FS))
135 if (session->cc_delta.dirty & ILO_STATE_CC_3DSTATE_PS_BLEND)
145 if (DIRTY(FB) || r->batch_bo_changed)
    [all...]
ilo_render_dynamic.c 37 #define DIRTY(state) (session->pipe_dirty & ILO_DIRTY_ ## state)
47 if ((session->vp_delta.dirty & (ILO_STATE_VIEWPORT_SF_CLIP_VIEWPORT |
67 if ((session->vp_delta.dirty & (ILO_STATE_VIEWPORT_SF_CLIP_VIEWPORT |
86 if ((session->vp_delta.dirty & ILO_STATE_VIEWPORT_SCISSOR_RECT) ||
103 if ((session->cc_delta.dirty & ILO_STATE_CC_BLEND_STATE) ||
114 if ((session->cc_delta.dirty & ILO_STATE_CC_COLOR_CALC_STATE) ||
123 ((session->cc_delta.dirty & ILO_STATE_CC_DEPTH_STENCIL_STATE) ||
150 if (DIRTY(VS) || DIRTY(SAMPLER_VS) || DIRTY(VIEW_VS))
    [all...]
ilo_render_gen6.c 245 #define DIRTY(state) (session->pipe_dirty & ILO_DIRTY_ ## state)
337 if (session->urb_delta.dirty & (ILO_STATE_URB_3DSTATE_URB_VS |
417 if ((session->vf_delta.dirty & ILO_STATE_VF_3DSTATE_INDEX_BUFFER) ||
418 DIRTY(IB) || r->batch_bo_changed)
422 if (session->vf_delta.dirty & ILO_STATE_VF_3DSTATE_VF)
426 if ((session->vf_delta.dirty & ILO_STATE_VF_3DSTATE_INDEX_BUFFER) ||
427 DIRTY(IB) || r->batch_bo_changed)
432 if ((session->vf_delta.dirty & ILO_STATE_VF_3DSTATE_VERTEX_BUFFERS) ||
433 DIRTY(VB) || DIRTY(VE) || r->batch_bo_changed)
    [all...]
ilo_render_gen7.c 196 #define DIRTY(state) (session->pipe_dirty & ILO_DIRTY_ ## state)
204 if (session->urb_delta.dirty & (ILO_STATE_URB_3DSTATE_URB_VS |
224 if (session->urb_delta.dirty &
287 const bool emit_3dstate_vs = (DIRTY(VS) || r->instruction_bo_changed);
426 dirty_sh = DIRTY(GS);
430 dirty_sh = DIRTY(VS);
436 if ((DIRTY(SO) || dirty_sh || r->batch_bo_changed) &&
464 * SOL unit dirty state for information programmed in MMIO/NP to get
469 * received with the SOL unit dirty state.
489 if (DIRTY(FS))
    [all...]
ilo_render_surface.c 37 #define DIRTY(state) (session->pipe_dirty & ILO_DIRTY_ ## state)
103 if (!DIRTY(FS) && !DIRTY(FB))
142 if (!DIRTY(VS) && !DIRTY(GS) && !DIRTY(SO))
194 if (!DIRTY(VS) && !DIRTY(VIEW_VS))
204 if (!DIRTY(FS) && !DIRTY(VIEW_FS)
    [all...]
  /frameworks/base/core/java/android/provider/
BrowserContract.java 54 * the dirty flag is not automatically set and the "syncToNetwork" parameter
145 public static final String DIRTY = "dirty";
VoicemailContract.java 316 * The value will be 1 if dirty is true, 0 if false.
322 * {@link #DIRTY_RETAIN} to DIRTY in the {@link ContentValues}.
328 public static final String DIRTY = "dirty";
331 * Value of {@link #DIRTY} when updating to indicate that the value should not be updated
CalendarContract.java 168 * to true, the modified row is not marked as "dirty" (needs to be synced)
303 public static final String DIRTY = "dirty";
306 * Used in conjunction with {@link #DIRTY} to indicate what packages wrote local changes.
323 * transitions from non-dirty to dirty. The duplicated event will not be
326 * originating event has its dirty flag cleared by the sync adapter.
531 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, cv, DIRTY);
656 * <li>{@link #DIRTY}</li>
724 DIRTY,
    [all...]
ContactsContract.java 133 * {@link RawContacts#DIRTY} is not automatically set and the
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/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...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/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...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/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/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DiskLruCache.java 93 private static final String DIRTY = "DIRTY";
106 * DIRTY 335c4c6028171cfddfbaae1a9c313c52
109 * DIRTY 1ab96a171faeeee38496d8b330771a7a
121 * o DIRTY lines track that an entry is actively being created or updated.
122 * Every successful DIRTY action should be followed by a CLEAN or REMOVE
123 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that
311 } else if (secondSpace == -1 && firstSpace == DIRTY.length() && line.startsWith(DIRTY)) {
322 * cache. Dirty entries are assumed to be inconsistent and will be deleted
522 File dirty = entry.getDirtyFile(i); local
    [all...]
  /external/okhttp/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
341 } else if (secondSpace == -1 && firstSpace == DIRTY.length() && line.startsWith(DIRTY)) {
352 * cache. Dirty entries are assumed to be inconsistent and will be deleted
535 File dirty = entry.dirtyFiles[i]; local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java 142 RawContacts.DIRTY,
224 public static final int DIRTY = 18;
637 cursorColumnToContentValues(cursor, cv, ContactQuery.DIRTY);
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java 477 cursorColumnToContentValues(cursor, cv, ContactQuery.DIRTY);
807 public static final int DIRTY = 18;
    [all...]
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/
disklrucache-SNAPSHOT.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.2/
okhttp-2.7.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.3.0/
okhttp-3.3.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.4.1/
okhttp-3.4.1.jar 
  /external/guice/extensions/persist/lib/
hibernate-annotations.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.4/
okhttp-2.7.4.jar 
  /prebuilts/tools/common/m2/repository/com/github/bumptech/glide/glide/3.6.1/
glide-3.6.1.jar 
  /prebuilts/sdk/25/
android.jar 

Completed in 395 milliseconds

1 2