HomeSort by relevance Sort by last modified time
    Searched refs:batch (Results 1 - 25 of 251) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_batchbuffer.h 37 i915_winsys_batchbuffer_space(struct i915_winsys_batchbuffer *batch)
39 return batch->size - (batch->ptr - batch->map);
43 i915_winsys_batchbuffer_check(struct i915_winsys_batchbuffer *batch,
46 return dwords * 4 <= i915_winsys_batchbuffer_space(batch);
50 i915_winsys_batchbuffer_dword_unchecked(struct i915_winsys_batchbuffer *batch,
53 *(unsigned *)batch->ptr = dword;
54 batch->ptr += 4;
58 i915_winsys_batchbuffer_float(struct i915_winsys_batchbuffer *batch,
    [all...]
i915_batch.h 36 (i915_winsys_batchbuffer_check(i915->batch, dwords))
39 i915_winsys_batchbuffer_dword(i915->batch, dword)
42 i915_winsys_batchbuffer_float(i915->batch, f)
45 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, false)
48 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, true)
i915_flush.c 49 if (!fence && i915->batch && (i915->batch->map == i915->batch->ptr)) {
71 struct i915_winsys_batchbuffer *batch = i915->batch; local
73 batch->iws->batchbuffer_flush(batch, fence);
  /external/mesa3d/src/gallium/drivers/i915/
i915_batchbuffer.h 37 i915_winsys_batchbuffer_space(struct i915_winsys_batchbuffer *batch)
39 return batch->size - (batch->ptr - batch->map);
43 i915_winsys_batchbuffer_check(struct i915_winsys_batchbuffer *batch,
46 return dwords * 4 <= i915_winsys_batchbuffer_space(batch);
50 i915_winsys_batchbuffer_dword_unchecked(struct i915_winsys_batchbuffer *batch,
53 *(unsigned *)batch->ptr = dword;
54 batch->ptr += 4;
58 i915_winsys_batchbuffer_float(struct i915_winsys_batchbuffer *batch,
    [all...]
i915_batch.h 36 (i915_winsys_batchbuffer_check(i915->batch, dwords))
39 i915_winsys_batchbuffer_dword(i915->batch, dword)
42 i915_winsys_batchbuffer_float(i915->batch, f)
45 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, false)
48 i915_winsys_batchbuffer_reloc(i915->batch, buf, usage, offset, true)
i915_flush.c 49 if (!fence && i915->batch && (i915->batch->map == i915->batch->ptr)) {
71 struct i915_winsys_batchbuffer *batch = i915->batch; local
73 batch->iws->batchbuffer_flush(batch, fence);
  /external/chromium_org/third_party/leveldatabase/src/db/
write_batch_internal.h 18 // Return the number of entries in the batch.
19 static int Count(const WriteBatch* batch);
21 // Set the count for the number of entries in the batch.
22 static void SetCount(WriteBatch* batch, int n);
24 // Return the seqeunce number for the start of this batch.
25 static SequenceNumber Sequence(const WriteBatch* batch);
28 // this batch.
29 static void SetSequence(WriteBatch* batch, SequenceNumber seq);
31 static Slice Contents(const WriteBatch* batch) {
32 return Slice(batch->rep_)
    [all...]
write_batch_test.cc 58 WriteBatch batch; local
59 ASSERT_EQ("", PrintContents(&batch));
60 ASSERT_EQ(0, WriteBatchInternal::Count(&batch));
64 WriteBatch batch; local
65 batch.Put(Slice("foo"), Slice("bar"));
66 batch.Delete(Slice("box"));
67 batch.Put(Slice("baz"), Slice("boo"));
68 WriteBatchInternal::SetSequence(&batch, 100);
69 ASSERT_EQ(100, WriteBatchInternal::Sequence(&batch));
70 ASSERT_EQ(3, WriteBatchInternal::Count(&batch));
78 WriteBatch batch; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/sw/
i915_sw_batchbuffer.c 25 i915_sw_batchbuffer(struct i915_winsys_batchbuffer *batch)
27 return (struct i915_sw_batchbuffer *)batch;
31 i915_sw_batchbuffer_reset(struct i915_sw_batchbuffer *batch)
33 memset(batch->base.map, 0, batch->actual_size);
34 batch->base.ptr = batch->base.map;
35 batch->base.size = batch->actual_size - BATCH_RESERVED;
36 batch->base.relocs = 0
43 struct i915_sw_batchbuffer *batch = CALLOC_STRUCT(i915_sw_batchbuffer); local
74 struct i915_sw_batchbuffer *batch = i915_sw_batchbuffer(ibatch); local
105 struct i915_sw_batchbuffer *batch = i915_sw_batchbuffer(ibatch); local
145 struct i915_sw_batchbuffer *batch = i915_sw_batchbuffer(ibatch); local
    [all...]
  /external/mesa3d/src/gallium/winsys/i915/sw/
i915_sw_batchbuffer.c 25 i915_sw_batchbuffer(struct i915_winsys_batchbuffer *batch)
27 return (struct i915_sw_batchbuffer *)batch;
31 i915_sw_batchbuffer_reset(struct i915_sw_batchbuffer *batch)
33 memset(batch->base.map, 0, batch->actual_size);
34 batch->base.ptr = batch->base.map;
35 batch->base.size = batch->actual_size - BATCH_RESERVED;
36 batch->base.relocs = 0
43 struct i915_sw_batchbuffer *batch = CALLOC_STRUCT(i915_sw_batchbuffer); local
74 struct i915_sw_batchbuffer *batch = i915_sw_batchbuffer(ibatch); local
105 struct i915_sw_batchbuffer *batch = i915_sw_batchbuffer(ibatch); local
145 struct i915_sw_batchbuffer *batch = i915_sw_batchbuffer(ibatch); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/drm/
i915_drm_batchbuffer.c 30 i915_drm_batchbuffer(struct i915_winsys_batchbuffer *batch)
32 return (struct i915_drm_batchbuffer *)batch;
36 i915_drm_batchbuffer_reset(struct i915_drm_batchbuffer *batch)
38 struct i915_drm_winsys *idws = i915_drm_winsys(batch->base.iws);
40 if (batch->bo)
41 drm_intel_bo_unreference(batch->bo);
42 batch->bo = drm_intel_bo_alloc(idws->gem_manager,
44 batch->actual_size,
47 memset(batch->base.map, 0, batch->actual_size)
57 struct i915_drm_batchbuffer *batch = CALLOC_STRUCT(i915_drm_batchbuffer); local
100 struct i915_drm_batchbuffer *batch = i915_drm_batchbuffer(ibatch); local
164 struct i915_drm_batchbuffer *batch = i915_drm_batchbuffer(ibatch); local
219 struct i915_drm_batchbuffer *batch = i915_drm_batchbuffer(ibatch); local
    [all...]
  /external/mesa3d/src/gallium/winsys/i915/drm/
i915_drm_batchbuffer.c 30 i915_drm_batchbuffer(struct i915_winsys_batchbuffer *batch)
32 return (struct i915_drm_batchbuffer *)batch;
36 i915_drm_batchbuffer_reset(struct i915_drm_batchbuffer *batch)
38 struct i915_drm_winsys *idws = i915_drm_winsys(batch->base.iws);
40 if (batch->bo)
41 drm_intel_bo_unreference(batch->bo);
42 batch->bo = drm_intel_bo_alloc(idws->gem_manager,
44 batch->actual_size,
47 memset(batch->base.map, 0, batch->actual_size)
57 struct i915_drm_batchbuffer *batch = CALLOC_STRUCT(i915_drm_batchbuffer); local
100 struct i915_drm_batchbuffer *batch = i915_drm_batchbuffer(ibatch); local
164 struct i915_drm_batchbuffer *batch = i915_drm_batchbuffer(ibatch); local
219 struct i915_drm_batchbuffer *batch = i915_drm_batchbuffer(ibatch); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_batchbuffer.c 43 struct cached_batch_item *item = intel->batch.cached_items;
51 intel->batch.cached_items = NULL;
62 * the buffer, and the kernel doesn't let us write to the batch.
64 intel->batch.workaround_bo = drm_intel_bo_alloc(intel->bufmgr,
73 if (intel->batch.last_bo != NULL) {
74 drm_intel_bo_unreference(intel->batch.last_bo);
75 intel->batch.last_bo = NULL;
77 intel->batch.last_bo = intel->batch.bo;
81 intel->batch.bo = drm_intel_bo_alloc(intel->bufmgr, "batchbuffer"
124 struct intel_batchbuffer *batch = &intel->batch; local
165 struct intel_batchbuffer *batch = &intel->batch; local
    [all...]
intel_batchbuffer.h 15 * Number of bytes to reserve for commands necessary to complete a batch.
19 * - Optional MI_NOOP for ensuring the batch length is qword aligned (4 bytes)
83 return (intel->batch.state_batch_offset - intel->batch.reserved_space)
84 - intel->batch.used*4;
94 intel->batch.map[intel->batch.used++] = dword;
109 intel->batch.is_blit != is_blit && intel->batch.used) {
113 intel->batch.is_blit = is_blit
137 struct intel_batchbuffer *batch = &intel->batch; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_batchbuffer.c 43 struct cached_batch_item *item = intel->batch.cached_items;
51 intel->batch.cached_items = NULL;
62 * the buffer, and the kernel doesn't let us write to the batch.
64 intel->batch.workaround_bo = drm_intel_bo_alloc(intel->bufmgr,
73 if (intel->batch.last_bo != NULL) {
74 drm_intel_bo_unreference(intel->batch.last_bo);
75 intel->batch.last_bo = NULL;
77 intel->batch.last_bo = intel->batch.bo;
81 intel->batch.bo = drm_intel_bo_alloc(intel->bufmgr, "batchbuffer"
124 struct intel_batchbuffer *batch = &intel->batch; local
165 struct intel_batchbuffer *batch = &intel->batch; local
    [all...]
intel_batchbuffer.h 15 * Number of bytes to reserve for commands necessary to complete a batch.
19 * - Optional MI_NOOP for ensuring the batch length is qword aligned (4 bytes)
83 return (intel->batch.state_batch_offset - intel->batch.reserved_space)
84 - intel->batch.used*4;
94 intel->batch.map[intel->batch.used++] = dword;
109 intel->batch.is_blit != is_blit && intel->batch.used) {
113 intel->batch.is_blit = is_blit
137 struct intel_batchbuffer *batch = &intel->batch; local
    [all...]
  /external/jsoncpp/src/lib_json/
json_batchallocator.h 18 * This memory allocator allocates memory for a batch of object (specified by
46 for ( BatchInfo *batch = batches_; batch; )
48 BatchInfo *nextBatch = batch->next_;
49 free( batch );
50 batch = nextBatch;
70 if ( !currentBatch_ ) // no free batch found, allocate a new one
108 BatchInfo *batch = static_cast<BatchInfo*>( malloc( mallocSize ) ); local
109 batch->next_ = 0;
110 batch->used_ = batch->buffer_
    [all...]
  /external/chromium_org/tools/gyp/tools/emacs/
run-unit-tests.sh 5 emacs --no-site-file --no-init-file --batch \
7 -f ert-run-tests-batch-and-exit
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
metadata_db_migration_util_unittest.cc 82 leveldb::WriteBatch batch; local
83 batch.Put(kDatabaseVersionKey, "4");
84 batch.Put(kServiceMetadataKey, "service_metadata");
85 batch.Put(kFileMetadataKeyPrefix, "file_metadata");
86 batch.Put(kFileTrackerKeyPrefix, "file_tracker");
87 batch.Put(kAppRootIDByAppIDKeyPrefix, "app_root_id");
88 batch.Put(kActiveTrackerIDByFileIDKeyPrefix, "active_id_by_file");
89 batch.Put(kTrackerIDByFileIDKeyPrefix, "tracker_id_by_file");
90 batch.Put(kMultiTrackerByFileIDKeyPrefix, "multi_tracker_by_file");
91 batch.Put(kActiveTrackerIDByParentAndTitleKeyPrefix, "active_id_by_path")
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_state_batch.c 43 struct intel_batchbuffer *batch = &brw->intel.batch; local
50 batch->bo->size / 32);
73 * Generate a set of aub file annotations for the current batch buffer, and
76 * The "used" section of the batch buffer (the portion containing batch
78 * batch buffer (which contains data structures pointed to by batch commands)
90 4*intel->batch.used);
101 drm_intel_bufmgr_gem_set_aub_annotations(intel->batch.bo, annotations
126 struct intel_batchbuffer *batch = &brw->intel.batch; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_batch.c 43 struct intel_batchbuffer *batch = &brw->intel.batch; local
50 batch->bo->size / 32);
73 * Generate a set of aub file annotations for the current batch buffer, and
76 * The "used" section of the batch buffer (the portion containing batch
78 * batch buffer (which contains data structures pointed to by batch commands)
90 4*intel->batch.used);
101 drm_intel_bufmgr_gem_set_aub_annotations(intel->batch.bo, annotations
126 struct intel_batchbuffer *batch = &brw->intel.batch; local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/issues/
issue178_test.cc 45 leveldb::WriteBatch batch; local
47 batch.Put(Key1(i), "value for range 1 key");
49 ASSERT_OK(db->Write(leveldb::WriteOptions(), &batch));
52 batch.Clear();
54 batch.Put(Key2(i), "value for range 2 key");
56 ASSERT_OK(db->Write(leveldb::WriteOptions(), &batch));
59 batch.Clear();
61 batch.Delete(Key2(i));
63 ASSERT_OK(db->Write(leveldb::WriteOptions(), &batch));
  /external/chromium_org/content/browser/dom_storage/
session_storage_database.cc 141 leveldb::WriteBatch batch; local
145 if (!CreateNamespace(namespace_id, kOkIfExists, &batch))
159 &map_id, &batch))
163 if (!ClearMap(map_id, &batch))
169 if (!CreateMapForArea(namespace_id, origin, &map_id, &batch))
174 WriteValuesToMap(map_id, changes, &batch);
176 leveldb::Status s = db_->Write(leveldb::WriteOptions(), &batch);
203 leveldb::WriteBatch batch; local
205 if (!CreateNamespace(new_namespace_id, kOkIfExists, &batch))
216 if (!IncreaseMapRefCount(map_id, &batch))
231 leveldb::WriteBatch batch; local
245 leveldb::WriteBatch batch; local
    [all...]
  /build/core/tasks/tools/
package-modules.mk 40 define copy-tests-in-batch
53 $(call copy-tests-in-batch,$(wordlist 1,200,$(PRIVATE_COPY_PAIRS)))
54 $(call copy-tests-in-batch,$(wordlist 201,400,$(PRIVATE_COPY_PAIRS)))
55 $(call copy-tests-in-batch,$(wordlist 401,600,$(PRIVATE_COPY_PAIRS)))
56 $(call copy-tests-in-batch,$(wordlist 601,800,$(PRIVATE_COPY_PAIRS)))
57 $(call copy-tests-in-batch,$(wordlist 801,1000,$(PRIVATE_COPY_PAIRS)))
58 $(call copy-tests-in-batch,$(wordlist 1001,1200,$(PRIVATE_COPY_PAIRS)))
59 $(call copy-tests-in-batch,$(wordlist 1201,9999,$(PRIVATE_COPY_PAIRS)))
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BatchingNamedTaskExecutor.java 61 * Instructs the executor to submit the next batch of results.
65 NamedTask[] batch = new NamedTask[0]; local
69 batch = nextTasks.toArray(batch);
71 if (DBG) Log.d(TAG, "Dispatching batch of " + count);
74 for (NamedTask task : batch) {

Completed in 1059 milliseconds

1 2 3 4 5 6 7 8 91011