HomeSort by relevance Sort by last modified time
    Searched refs:batch (Results 101 - 125 of 233) sorted by null

1 2 3 45 6 7 8 910

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_sf_state.c 145 drm_intel_bo *bo = intel->batch.bo;
193 sf->sf5.sf_viewport_state_offset = (intel->batch.bo->offset +
308 intel->batch.bo, (brw->sf.vp_offset |
brw_wm_sampler_state.c 310 sampler->ss2.default_color_pointer = (intel->batch.bo->offset +
313 drm_intel_bo_emit_reloc(intel->batch.bo,
317 intel->batch.bo, brw->wm.sdc_offset[ss_index],
brw_vs_state.c 158 drm_intel_bo_emit_reloc(intel->batch.bo,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cc.c 217 cc->cc4.cc_viewport_state_offset = (intel->batch.bo->offset +
223 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
226 intel->batch.bo, brw->cc.vp_offset,
brw_sf_state.c 145 drm_intel_bo *bo = intel->batch.bo;
193 sf->sf5.sf_viewport_state_offset = (intel->batch.bo->offset +
308 intel->batch.bo, (brw->sf.vp_offset |
brw_wm_sampler_state.c 310 sampler->ss2.default_color_pointer = (intel->batch.bo->offset +
313 drm_intel_bo_emit_reloc(intel->batch.bo,
317 intel->batch.bo, brw->wm.sdc_offset[ss_index],
brw_vs_state.c 158 drm_intel_bo_emit_reloc(intel->batch.bo,
  /frameworks/native/include/input/
InputTransport.h 279 * to determine whether a pending batch is available to be consumed.
326 /* Returns true if there is a pending batch.
348 struct Batch {
351 Vector<Batch> mBatches;
407 // a batch, we append a record here that associates the last sequence number in the
408 // batch with the previous one. When the finished signal is sent, we traverse the
409 // chain to individually finish all input messages that were part of the batch.
419 Batch& batch, size_t count, uint32_t* outSeq, InputEvent** outEvent);
434 static bool canAddSample(const Batch& batch, const InputMessage* msg)
    [all...]
  /device/lge/hammerhead/libsensors/
sensors.cpp 115 int batch(int handle, int flags, int64_t period_ns, int64_t timeout);
373 int sensors_poll_context_t::batch(int handle, int flags, int64_t period_ns, int64_t timeout)
377 return mSensor[index]->batch(handle, flags, period_ns, timeout);
423 return ctx->batch(handle, flags, period_ns, timeout);
456 /* Batch processing */
457 dev->device.batch = poll__batch;
  /external/chromium_org/third_party/leveldatabase/src/db/
db_impl.cc 43 WriteBatch* batch; member in struct:leveldb::DBImpl::Writer
407 WriteBatch batch; local
416 WriteBatchInternal::SetContents(&batch, record);
422 status = WriteBatchInternal::InsertInto(&batch, mem);
428 WriteBatchInternal::Sequence(&batch) +
429 WriteBatchInternal::Count(&batch) - 1;
591 // NULL batch means just wait for earlier writes to be done
1432 WriteBatch batch; local
1438 WriteBatch batch; local
    [all...]
repair.cc 199 WriteBatch batch; local
209 WriteBatchInternal::SetContents(&batch, record);
210 status = WriteBatchInternal::InsertInto(&batch, mem);
212 counter += WriteBatchInternal::Count(&batch);
  /frameworks/native/services/sensorservice/
SensorDevice.cpp 149 // Log error. Every activate call should be preceded by a batch() call.
150 ALOGE("\t >>>ERROR: activate called without batch");
162 // Call batch for this sensor with the previously calculated best effort
164 // events, and the best effort batch parameters might have changed.
166 "\t>>> actuating h/w batch %d %d %lld %lld ", handle,
169 mSensorDevice->batch(mSensorDevice, handle,info.bestBatchParams.flags,
192 // On older devices which do not support batch, call setDelay().
203 status_t SensorDevice::batch(void* ident, int handle, int flags, int64_t samplingPeriodNs, function in class:android::SensorDevice
214 return mSensorDevice->batch(mSensorDevice, handle, flags, samplingPeriodNs,
220 errDryRun = mSensorDevice->batch(mSensorDevice, handle, flags | SENSORS_BATCH_DRY_RUN
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 27 private ArrayList<BatchArg> batch; field in class:JDBCPreparedStatement
35 this.batch = null;
386 if (batch == null) {
387 batch = new ArrayList<BatchArg>(args.length);
390 batch.add(new BatchArg(args[i], blobs[i]));
395 if (batch == null) {
398 int[] ret = new int[batch.size() / args.length];
406 BatchArg b = (BatchArg) batch.get(index++);
418 throw new BatchUpdateException("batch failed", ret);
424 if (batch != null)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 101 // For large size classes we use one of the chunks to store the batch.
105 void *batch[kMaxNumCached]; member in struct:__sanitizer::SizeClassMap::TransferBatch
306 typedef typename SizeClassMap::TransferBatch Batch;
332 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
336 Batch *b = region->free_list.Pop();
343 NOINLINE void DeallocateBatch(AllocatorStats *stat, uptr class_id, Batch *b) {
475 LFStack<Batch> free_list;
504 NOINLINE Batch* PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
507 Batch *b = region->free_list.Pop();
547 b = (Batch*)c->Allocate(this, SizeClassMap::ClassID(sizeof(Batch)))
882 void *batch[2 * SizeClassMap::kMaxNumCached]; member in struct:__sanitizer::SizeClassAllocatorLocalCache::PerClass
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
table_test.cc 367 WriteBatch batch; local
368 batch.Put(it->first, it->second);
369 ASSERT_TRUE(db_->Write(WriteOptions(), &batch).ok());
766 WriteBatch batch; local
767 WriteBatchInternal::SetSequence(&batch, 100);
768 batch.Put(std::string("k1"), std::string("v1"));
769 batch.Put(std::string("k2"), std::string("v2"));
770 batch.Put(std::string("k3"), std::string("v3"));
771 batch.Put(std::string("largekey"), std::string("vlarge"));
772 ASSERT_TRUE(WriteBatchInternal::InsertInto(&batch, memtable).ok())
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker.cc 46 SyncStatusCode WriteBatch(scoped_ptr<leveldb::WriteBatch> batch);
232 scoped_ptr<leveldb::WriteBatch> batch(new leveldb::WriteBatch);
251 batch->Delete(serialized_url);
253 // Fail to apply batch to database wouldn't have critical effect, they'll be
255 tracker_db_->WriteBatch(batch.Pass());
526 scoped_ptr<leveldb::WriteBatch> batch) {
530 leveldb::Status status = db_->Write(leveldb::WriteOptions(), batch.get());
  /external/grub/util/
grub-install.in 339 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file
429 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file
454 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_metadata_storage_unittest.cc 372 leveldb::WriteBatch batch; local
379 batch.Put("file:abcd", serialized_entry);
383 batch.Put(std::string("file:abcd") + '\0' + "CACHE", serialized_entry);
385 EXPECT_TRUE(resource_map()->Write(leveldb::WriteOptions(), &batch).ok());
414 leveldb::WriteBatch batch; local
421 batch.Put(local_id, serialized_entry);
425 batch.Put(local_id + '\0' + "CACHE", serialized_entry);
427 batch.Put('\0' + std::string("ID") + '\0' + resource_id, local_id);
429 EXPECT_TRUE(resource_map()->Write(leveldb::WriteOptions(), &batch).ok());
  /external/chromium_org/net/data/ssl/scripts/
generate-cross-signed-certs.sh 77 -batch \
  /external/kernel-headers/original/linux/
rcupdate.h 65 long cur; /* Current batch number. */
66 long completed; /* Number of the last completed batch */
67 int next_pending; /* Is the next batch already waiting? */
71 /* for current batch to proceed. */
74 /* Is batch a before batch b ? */
80 /* Is batch a after batch b ? */
89 * curlist - current batch for which quiescent cycle started if any
93 long quiescbatch; /* Batch # for grace period *
98 long batch; \/* Batch # for current RCU batch *\/ member in struct:rcu_data
    [all...]
  /hardware/invensense/65xx/libsensors_iio/
SensorBase.cpp 149 int SensorBase::batch(int handle, int flags, int64_t period_ns, int64_t timeout)
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/test/
Makefile 86 $(GDB) -batch -x script ./$$TARGET; \
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/test/
Makefile 86 $(GDB) -batch -x script ./$$TARGET; \
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/test/
Makefile 86 $(GDB) -batch -x script ./$$TARGET; \
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 131 static final class Batch {
138 Batch() {
143 Batch(Alarm seed) {
163 // narrows the batch if necessary; presumes that canHold(alarm) is true
206 // commit the new batch bounds
233 // commit the new batch bounds
260 // commit the new batch bounds
293 b.append("Batch{"); b.append(Integer.toHexString(this.hashCode()));
305 static class BatchTimeOrder implements Comparator<Batch> {
306 public int compare(Batch b1, Batch b2)
383 Batch batch = oldSet.get(batchNum); local
582 Batch batch = new Batch(a); local
586 Batch batch = mAlarmBatches.get(whichBatch); local
1028 Batch batch = mAlarmBatches.get(0); local
    [all...]

Completed in 915 milliseconds

1 2 3 45 6 7 8 910