Searched refs:batch (Results 1 - 10 of 10) sorted by relevance

/libcore/support/src/test/java/tests/resources/x509/
H A Dcreate.sh25 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch > /tmp/cert-rsa-req.pem
40 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -extfile "$DIR/default.cnf" -extensions keyUsage_extraLong_cert -req -signkey "$DIR/privkey.pem" -outform d > "$DIR/cert-keyUsage-extraLong.der"
42 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -extfile "$DIR/default.cnf" -extensions extendedKeyUsage_cert -req -signkey "$DIR/privkey.pem" -outform d > "$DIR/cert-extendedKeyUsage.der"
44 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -extfile "$DIR/default.cnf" -extensions ca_cert -req -signkey "$DIR/privkey.pem" -outform d > "$DIR/cert-ca.der"
46 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -extfile "$DIR/default.cnf" -extensions userWithPathLen_cert -req -signkey "$DIR/privkey.pem" -outform d > "$DIR/cert-userWithPathLen.der"
48 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -extfile "$DIR/default.cnf" -extensions caWithPathLen_cert -req -signkey "$DIR/privkey.pem" -outform d > "$DIR/cert-caWithPathLen.der"
50 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -extfile "$DIR/default.cnf" -extensions alt_other_cert -req -signkey "$DIR/privkey.pem" -outform d > "$DIR/cert-alt-other.der"
52 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -extfile "$DIR/default.cnf" -extensions alt_email_cert -req -signkey "$DIR/privkey.pem" -outform d > "$DIR/cert-alt-email.der"
54 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -extfile "$DIR/default.cnf" -extensions alt_dns_cert -req -signkey "$DIR/privkey.pem" -outform d > "$DIR/cert-alt-dns.der"
56 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openss
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DSpliterators.java1257 static final int BATCH_UNIT = 1 << 10; // batch array size increment
1258 static final int MAX_BATCH = 1 << 25; // max batch array size;
1261 private int batch; // batch size for splits field in class:Spliterators.AbstractSpliterator
1297 * Split into arrays of arithmetically increasing batch
1312 int n = batch + BATCH_UNIT;
1320 batch = j;
1384 private int batch; // batch size for splits field in class:Spliterators.AbstractIntSpliterator
1422 int n = batch
1494 private int batch; // batch size for splits field in class:Spliterators.AbstractLongSpliterator
1604 private int batch; // batch size for splits field in class:Spliterators.AbstractDoubleSpliterator
1698 private int batch; // batch size for splits field in class:Spliterators.IteratorSpliterator
1849 private int batch; // batch size for splits field in class:Spliterators.IntIteratorSpliterator
1943 private int batch; // batch size for splits field in class:Spliterators.LongIteratorSpliterator
2037 private int batch; // batch size for splits field in class:Spliterators.DoubleIteratorSpliterator
[all...]
H A DLinkedList.java1176 static final int BATCH_UNIT = 1 << 10; // batch array size increment
1177 static final int MAX_BATCH = 1 << 25; // max batch array size;
1182 int batch; // batch size for splits field in class:LinkedList.LLSpliterator
1211 int n = batch + BATCH_UNIT;
1220 batch = j;
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java63 int batch = BUFFER_LEN - mPos;
64 if (batch > length) {
65 batch = length;
67 str.getChars(i, i + batch, mText, mPos);
68 i += batch;
69 length -= batch;
70 mPos += batch;
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java3660 * Computes initial batch value for bulk tasks. The returned value
4854 int batch; // split control field in class:ConcurrentHashMap.BulkTask
4858 this.batch = b;
4953 for (int i = baseIndex, f, h; batch > 0 &&
4957 (this, batch >>>= 1, baseLimit = h, f, tab,
4980 for (int i = baseIndex, f, h; batch > 0 &&
4984 (this, batch >>>= 1, baseLimit = h, f, tab,
5007 for (int i = baseIndex, f, h; batch > 0 &&
5011 (this, batch >>>= 1, baseLimit = h, f, tab,
5034 for (int i = baseIndex, f, h; batch >
[all...]
H A DConcurrentLinkedQueue.java787 static final int MAX_BATCH = 1 << 25; // max batch array size;
790 int batch; // batch size for splits field in class:ConcurrentLinkedQueue.CLQSpliterator
799 int b = batch;
815 batch = i;
H A DLinkedBlockingQueue.java801 static final int MAX_BATCH = 1 << 25; // max batch array size;
804 int batch; // batch size for splits field in class:LinkedBlockingQueue.LBQSpliterator
817 int b = batch;
843 batch = i;
H A DConcurrentLinkedDeque.java1412 static final int MAX_BATCH = 1 << 25; // max batch array size;
1415 int batch; // batch size for splits field in class:ConcurrentLinkedDeque.CLDSpliterator
1424 int b = batch;
1442 batch = i;
H A DLinkedBlockingDeque.java1102 static final int MAX_BATCH = 1 << 25; // max batch array size;
1105 int batch; // batch size for splits field in class:LinkedBlockingDeque.LBDSpliterator
1118 int b = batch;
1145 batch = i;
H A DLinkedTransferQueue.java993 static final int MAX_BATCH = 1 << 25; // max batch array size;
995 int batch; // batch size for splits field in class:LinkedTransferQueue.LTQSpliterator
1001 int b = batch;
1018 batch = i;

Completed in 358 milliseconds