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

1 2 3 4 56 7 8 9

  /external/chromium/net/tools/testserver/
chromiumsync.py 467 next query. Entries is the batch of entries meeting the current
469 left on the server after this batch.
480 batch = new_changes[:self._BATCH_SIZE]
481 if not batch:
485 # Restrict batch to requested types. Tombstones are untyped
487 filtered = [DeepCopyOfProto(item) for item in batch
491 # batch, even if that item was filtered out.
492 return (batch[-1].version, filtered, len(new_changes) - len(batch))
557 A commit batch sent by a client may contain new items for which th
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_state_emit.c 112 i915_winsys_batchbuffer_write(i915->batch, invariant_state,
417 /* we need more batch space if we want to emulate rgba framebuffers
569 if (!i915_winsys_validate_buffers(i915->batch, i915->validation_buffers,
600 save_ptr = (uintptr_t)i915->batch->ptr;
618 ((uintptr_t)i915->batch->ptr - save_ptr) / 4,
620 assert(((uintptr_t)i915->batch->ptr - save_ptr) / 4 == batch_space);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen6_blorp.cpp 80 /* To ensure that the batch contains only the resolve, flush the batch
85 * a single batch, and there is no safe way to ensure that other than by
87 * a batch is in progress and do the right thing, but that would require
127 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0, 1);
129 OUT_RELOC(intel->batch.bo, (I915_GEM_DOMAIN_RENDER |
217 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_VERTEX, 0,
220 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_VERTEX, 0,
267 * safely ignore it because this batch contains only one draw call.
469 drm_intel_bo_emit_reloc(brw->intel.batch.bo
    [all...]
gen7_wm_surface_state.c 131 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
267 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
390 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
442 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
583 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
brw_vtbl.c 177 * to be in every batch. Otherwise we need to re-emit all the state that
186 /* Assume that the last command before the start of our batch was a
189 intel->batch.need_workaround_flush = true;
194 * the start of the batch, since the kernel will be resetting the offset to
204 * next batch.
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_emit.c 112 i915_winsys_batchbuffer_write(i915->batch, invariant_state,
417 /* we need more batch space if we want to emulate rgba framebuffers
569 if (!i915_winsys_validate_buffers(i915->batch, i915->validation_buffers,
600 save_ptr = (uintptr_t)i915->batch->ptr;
618 ((uintptr_t)i915->batch->ptr - save_ptr) / 4,
620 assert(((uintptr_t)i915->batch->ptr - save_ptr) / 4 == batch_space);
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_blorp.cpp 80 /* To ensure that the batch contains only the resolve, flush the batch
85 * a single batch, and there is no safe way to ensure that other than by
87 * a batch is in progress and do the right thing, but that would require
127 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0, 1);
129 OUT_RELOC(intel->batch.bo, (I915_GEM_DOMAIN_RENDER |
217 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_VERTEX, 0,
220 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_VERTEX, 0,
267 * safely ignore it because this batch contains only one draw call.
469 drm_intel_bo_emit_reloc(brw->intel.batch.bo
    [all...]
gen7_wm_surface_state.c 131 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
267 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
390 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
442 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
583 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
brw_vtbl.c 177 * to be in every batch. Otherwise we need to re-emit all the state that
186 /* Assume that the last command before the start of our batch was a
189 intel->batch.need_workaround_flush = true;
194 * the start of the batch, since the kernel will be resetting the offset to
204 * next batch.
  /external/srec/srec/crec/
srec.c 79 altword_token* batch,
86 if (batch->costbasis == MAXcostdata / 2)
88 free_altword_token(rec, batch);
91 /* a flag to check whether we already pruned this batch would be nice */
94 awtokenp = &batch->next_token;
95 for (awtoken = batch->next_token; awtoken != AWTNULL; awtoken = next_awtoken)
98 if ((bigcostdata)batch->costbasis + awtoken->costdelta > costlimit)
109 if ((bigcostdata)(batch->costbasis) + batch->costdelta < costlimit)
113 else if (batch->next_token != AWTNULL
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
mount_test.cc 283 for (int batch = 0; batch < kSampleBatches; ++batch) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_blit.c 127 aper_array[0] = intel->batch.bo;
365 aper_array[0] = intel->batch.bo;
584 aper_array[0] = intel->batch.bo;
intel_context.c 438 * Unfortunately, we don't have a handle to the batch containing
440 * so we just us the first batch we emitted after the last swap.
532 if (intel->batch.used)
555 if (intel->batch.last_bo)
556 drm_intel_bo_wait_rendering(intel->batch.last_bo);
657 intel->maxBatchSize = sizeof(intel->batch.map);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_blit.c 127 aper_array[0] = intel->batch.bo;
365 aper_array[0] = intel->batch.bo;
584 aper_array[0] = intel->batch.bo;
intel_context.c 438 * Unfortunately, we don't have a handle to the batch containing
440 * so we just us the first batch we emitted after the last swap.
532 if (intel->batch.used)
555 if (intel->batch.last_bo)
556 drm_intel_bo_wait_rendering(intel->batch.last_bo);
657 intel->maxBatchSize = sizeof(intel->batch.map);
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_metadata_store.h 157 void WriteToDB(scoped_ptr<leveldb::WriteBatch> batch,
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
c.h 96 leveldb_writebatch_t* batch,
162 /* Write batch */
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
intel_render.c 129 ret = intel->batch.bo->size - INTEL_NO_VBO_STATE_RESERVED;
  /external/chromium_org/third_party/openssl/openssl/apps/
CA.sh 132 $CA -create_serial -out ${CATOP}/$CACERT $CADAYS -batch \
ca.c 175 " -batch - Don't ask questions\n",
203 char *enddate, long days, int batch, char *ext_sect, CONF *conf,
210 char *startdate, char *enddate, long days, int batch,
225 int email_dn, char *startdate, char *enddate, long days, int batch,
296 int batch=0; local
454 else if (strcmp(*argv,"-batch") == 0)
455 batch=1;
1205 batch = 1;
1214 db,serial,subj,chtype,multirdn,email_dn,startdate,enddate,days,batch,
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_render.c 129 ret = intel->batch.bo->size - INTEL_NO_VBO_STATE_RESERVED;
  /external/openssl/apps/
CA.sh 132 $CA -create_serial -out ${CATOP}/$CACERT $CADAYS -batch \
ca.c 175 " -batch - Don't ask questions\n",
203 char *enddate, long days, int batch, char *ext_sect, CONF *conf,
210 char *startdate, char *enddate, long days, int batch,
225 int email_dn, char *startdate, char *enddate, long days, int batch,
296 int batch=0; local
454 else if (strcmp(*argv,"-batch") == 0)
455 batch=1;
1205 batch = 1;
1214 db,serial,subj,chtype,multirdn,email_dn,startdate,enddate,days,batch,
    [all...]
  /hardware/libhardware/include/hardware/
sensors.h 59 * flags for (*batch)()
61 * see (*batch)() documentation for details
114 * otherwise noted (batch mode, sensor particularities, ...), enabled sensors'
121 * save power, unless batch mode is active, in which case they must
122 * continue fill their internal FIFO (see the documentation of batch() to
123 * learn how suspend interacts with batch mode).
125 * In batch mode, and only when the flag SENSORS_BATCH_WAKE_UPON_FIFO_FULL is
1261 int (*batch)(struct sensors_poll_device_1* dev, member in struct:sensors_poll_device_1
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransfer.java 108 BluetoothOppBatch batch, BluetoothOppObexSession session) {
111 mBatch = batch;
119 public BluetoothOppTransfer(Context context, PowerManager powerManager, BluetoothOppBatch batch) {
120 this(context, powerManager, batch, null);
146 * RFCOMM connect fail is for outbound share only! Mark batch
147 * failed, and all shares in batch failed
182 " from batch " + mBatch.mId);
186 if (V) Log.v(TAG, "Batch " + mBatch.mId + " is done");
193 * Handle session completed status Set batch status to
197 if (V) Log.v(TAG, "receive MSG_SESSION_COMPLETE for batch " + mBatch.mId)
    [all...]

Completed in 2257 milliseconds

1 2 3 4 56 7 8 9