HomeSort by relevance Sort by last modified time
    Searched refs:batch (Results 26 - 50 of 65) sorted by null

12 3

  /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
  /external/grub/util/
grub-image 131 cat <<EOF | $grub_shell --batch --device-map=/dev/null
grub-image.in 131 cat <<EOF | $grub_shell --batch --device-map=/dev/null
grub-install 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
mkbimage 386 ${GRUB_PATH}grub --device-map=$device_map --batch<<EOT
  /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);
  /sdk/avdlauncher/
Android.mk 8 # Eventually it should simply replace the batch file.
  /sdk/sdklauncher/
Android.mk 8 # Eventually it should simply replace the batch file.
  /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/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/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...]
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...]
  /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...]
  /external/openssl/crypto/threads/
netware.bat 2 rem batch file to build multi-thread test ( mttest.nlm )
  /sdk/find_java/
find_java.bat 16 rem This script is called by the other batch files to find a suitable Java.exe
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
run_webkit_tests_unittest.py 194 batch_tests_run = get_tests_run(['--batch-size', '2'])
195 for batch in batch_tests_run:
196 self.assertTrue(len(batch) <= 2, '%s had too many tests' % ', '.join(batch))
328 for batch in batch_tests_run:
329 self.assertEquals(len(batch), 1, '%s had too many tests' % ', '.join(batch))
  /external/openssh/regress/
Makefile 43 sftp-batch \
  /external/valgrind/main/drd/scripts/
run-splash2 212 psep=' ' run_test ${SPLASH2}/codes/apps/radiosity/RADIOSITY -batch -room -ae 5000.0 -en 0.050 -bf 0.10
  /external/bison/djgpp/
djunpack.bat 6 Rem This batch file unpacks the Bison distribution while simultaneously
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/bin/
i686-linux-gccbug 159 BATCH=
178 -b | --batch) BATCH=true ;;
475 [ $CNT -lt 6 -a -z "$BATCH" ] &&
479 if [ -z "$BATCH" ]; then
491 if [ -z "$BATCH" ]; then
552 if [ -z "$BATCH" ]; then
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
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/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNodeCluster.java 109 batchNode.batch();
TestBatchNodeTower.java 91 BatchNode batchNode = new BatchNode("batch Node");
125 batchNode.batch();

Completed in 899 milliseconds

12 3