/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/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/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/jmonkeyengine/engine/src/core/com/jme3/scene/ |
SimpleBatchNode.java | 43 for (Batch batch : batches.values()) { 44 batch.geometry.setTransformRefresh(); 53 public void batch() { method in class:SimpleBatchNode
|
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
metadata_database.h | 354 leveldb::WriteBatch* batch); 355 void MakeTrackerActive(int64 tracker_id, leveldb::WriteBatch* batch); 356 void MakeTrackerInactive(int64 tracker_id, leveldb::WriteBatch* batch); 357 void MakeAppRootDisabled(int64 tracker_id, leveldb::WriteBatch* batch); 358 void MakeAppRootEnabled(int64 tracker_id, leveldb::WriteBatch* batch); 361 leveldb::WriteBatch* batch); 363 leveldb::WriteBatch* batch); 367 leveldb::WriteBatch* batch); 370 leveldb::WriteBatch* batch); 374 leveldb::WriteBatch* batch); [all...] |
/external/chromium_org/content/browser/dom_storage/ |
session_storage_database.cc | 96 leveldb::WriteBatch batch; 100 if (!CreateNamespace(namespace_id, kOkIfExists, &batch)) 114 &map_id, &batch)) 118 if (!ClearMap(map_id, &batch)) 124 if (!CreateMapForArea(namespace_id, origin, &map_id, &batch)) 129 WriteValuesToMap(map_id, changes, &batch); 131 leveldb::Status s = db_->Write(leveldb::WriteOptions(), &batch); 157 leveldb::WriteBatch batch; 159 if (!CreateNamespace(new_namespace_id, kOkIfExists, &batch)) 170 if (!IncreaseMapRefCount(map_id, &batch)) 184 leveldb::WriteBatch batch; local 197 leveldb::WriteBatch batch; local [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/batching/ |
TestBatchNode.java | 33 BatchNode batch; field in class:TestBatchNode 38 batch = new BatchNode("theBatchNode"); 65 batch.attachChild(cube); 66 batch.attachChild(cube2); 67 // batch.setMaterial(mat); 68 batch.batch(); 69 rootNode.attachChild(batch); 93 batch.setLocalRotation(new Quaternion().fromAngleAxis(time, Vector3f.UNIT_Z));
|
/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) {
|