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

1 2

  /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
BatchNode.java 57 * usage is like any other node except you have to call the {@link #batch()} method once all geoms have been attached to the sub scene graph and theire material set
62 * Sub geoms can be added after the batch() method has been called but won't be batched and will be rendered as normal geometries.
63 * To integrate them in the batch you have to call the batch() method again on the batchNode.
66 * TODO more automagic (batch when needed in the updateLigicalState)
75 protected Map<Material, Batch> batches = new HashMap<Material, Batch>();
120 for (Batch batch : batches.values()) {
121 if (batch.needMeshUpdate)
144 Batch batch = batches.get(bg.getMaterial()); local
174 public void batch() { method in class:BatchNode
204 Batch batch = new Batch(); local
    [all...]
Geometry.java 306 * Batch this geometry, should only be called by the BatchNode.
310 protected void batch(BatchNode node, int startIndex) { method in class:Geometry
  /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...]
JDBCStatement.java 12 private ArrayList<String> batch; field in class:JDBCStatement
18 this.batch = null;
177 if (batch == null) {
178 batch = new ArrayList<String>(1);
180 batch.add(sql);
184 if (batch == null) {
187 int[] ret = new int[batch.size()];
194 execute((String) batch.get(i));
201 throw new BatchUpdateException("batch failed", ret);
207 if (batch != null)
    [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));
TestBatchNodeTower.java 91 BatchNode batchNode = new BatchNode("batch Node");
125 batchNode.batch();
TestBatchNodeCluster.java 109 batchNode.batch();
  /external/iproute2/ip/
ip.c 43 " ip [ -force ] -batch filename\n"
98 static int batch(const char *name) function
211 } else if (matches(opt, "-batch") == 0) {
244 return batch(batch_file);
  /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) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 33 void *batch[kSize]; member in struct:__sanitizer::QuarantineBatch
99 PREFETCH(b->batch[i]);
101 PREFETCH(b->batch[i + kPrefetch]);
102 cb.Recycle((Node*)b->batch[i]);
129 b->batch[b->count++] = ptr;
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
303 typedef typename SizeClassMap::TransferBatch Batch;
329 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
333 Batch *b = region->free_list.Pop();
340 NOINLINE void DeallocateBatch(AllocatorStats *stat, uptr class_id, Batch *b) {
474 LFStack<Batch> free_list;
502 NOINLINE Batch* PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
505 Batch *b = region->free_list.Pop();
545 b = (Batch*)c->Allocate(this, SizeClassMap::ClassID(sizeof(Batch)))
861 void *batch[2 * SizeClassMap::kMaxNumCached]; member in struct:__sanitizer::SizeClassAllocatorLocalCache::PerClass
    [all...]
  /external/iproute2/tc/
tc.c 215 " tc [-force] -batch filename\n"
249 static int batch(const char *name) function
325 } else if (matches(argv[1], "-batch") == 0) {
339 return batch(batchfile);
  /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...]
mmzone.h 73 int batch; /* chunk size for buddy add/remove */ member in struct:per_cpu_pages
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SelectionManager.java 157 int batch = 50; local
161 int count = index + batch < total
162 ? batch
172 index += batch;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppService.java 597 * Add info into a batch. The logic is
599 * 2) If there is no batch, create a batch and insert this transfer into batch,
600 * then run the batch
601 * 3) If there is existing batch and timestamp match, insert transfer into batch
602 * 4) If there is existing batch and timestamp does not match, create a new batch and
624 if (V) Log.v(TAG, "Service create new Batch " + newBatch.mI
729 BluetoothOppBatch batch = mBatchs.get(i); local
737 BluetoothOppBatch batch = mBatchs.get(i); local
782 BluetoothOppBatch batch = mBatchs.get(i); local
    [all...]
  /frameworks/base/libs/androidfw/
InputTransport.cpp 417 ALOGD("channel '%s' consumer ~ consumed batch event, seq=%u",
445 Batch& batch = mBatches.editItemAt(batchIndex); local
446 if (canAddSample(batch, &mMsg)) {
447 batch.samples.push(mMsg);
449 ALOGD("channel '%s' consumer ~ appended to batch event",
454 // We cannot append to the batch in progress, so we need to consume
455 // the previous batch right now and defer the new message until later.
458 batch, batch.samples.size(), outSeq, outEvent)
476 Batch& batch = mBatches.editTop(); local
512 Batch& batch = mBatches.editItemAt(i); local
859 const Batch& batch = mBatches.itemAt(i); local
    [all...]
  /hardware/libhardware/include/hardware/
sensors.h 58 * flags for (*batch)()
60 * see (*batch)() documentation for details
104 * otherwise noted (batch mode, sensor particularities, ...), enabled sensors'
111 * save power, unless batch mode is active, in which case they must
112 * continue fill their internal FIFO (see the documentation of batch() to
113 * learn how suspend interacts with batch mode).
115 * In batch mode, and only when the flag SENSORS_BATCH_WAKE_UPON_FIFO_FULL is
1150 int (*batch)(struct sensors_poll_device_1* dev, member in struct:sensors_poll_device_1
    [all...]
  /external/openssl/apps/
req.c 154 static int batch=0; variable
322 else if (strcmp(*argv,"-batch") == 0)
323 batch=1;
438 BIO_printf(bio_err," -batch do not ask anything during request generation\n");
1217 if(!batch)
    [all...]
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...]
  /ndk/sources/host-tools/make-3.81/
job.c 708 DB (DB_JOBS, (_("Cleaning up temp batch file %s\n"),
2781 FILE* batch = NULL; local
    [all...]
  /prebuilts/misc/common/ecj/
ecj.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
org.apache.jasper_5.5.17.v201004212143.jar 

Completed in 1720 milliseconds

1 2