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.java1175 static final int BATCH_UNIT = 1 << 10; // batch array size increment
1176 static final int MAX_BATCH = 1 << 25; // max batch array size;
1181 int batch; // batch size for splits field in class:LinkedList.LLSpliterator
1210 int n = batch + BATCH_UNIT;
1219 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/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java3689 * Computes initial batch value for bulk tasks. The returned value
4883 int batch; // split control field in class:ConcurrentHashMap.BulkTask
4887 this.batch = b;
4982 for (int i = baseIndex, f, h; batch > 0 &&
4986 (this, batch >>>= 1, baseLimit = h, f, tab,
5009 for (int i = baseIndex, f, h; batch > 0 &&
5013 (this, batch >>>= 1, baseLimit = h, f, tab,
5036 for (int i = baseIndex, f, h; batch > 0 &&
5040 (this, batch >>>= 1, baseLimit = h, f, tab,
5063 for (int i = baseIndex, f, h; batch >
[all...]
H A DConcurrentLinkedQueue.java816 static final int MAX_BATCH = 1 << 25; // max batch array size;
819 int batch; // batch size for splits field in class:ConcurrentLinkedQueue.CLQSpliterator
828 int b = batch;
844 batch = i;
H A DLinkedBlockingQueue.java830 static final int MAX_BATCH = 1 << 25; // max batch array size;
833 int batch; // batch size for splits field in class:LinkedBlockingQueue.LBQSpliterator
846 int b = batch;
872 batch = i;
H A DConcurrentLinkedDeque.java1441 static final int MAX_BATCH = 1 << 25; // max batch array size;
1444 int batch; // batch size for splits field in class:ConcurrentLinkedDeque.CLDSpliterator
1453 int b = batch;
1471 batch = i;
H A DLinkedBlockingDeque.java1131 static final int MAX_BATCH = 1 << 25; // max batch array size;
1134 int batch; // batch size for splits field in class:LinkedBlockingDeque.LBDSpliterator
1147 int b = batch;
1174 batch = i;
H A DLinkedTransferQueue.java1022 static final int MAX_BATCH = 1 << 25; // max batch array size;
1024 int batch; // batch size for splits field in class:LinkedTransferQueue.LTQSpliterator
1030 int b = batch;
1047 batch = i;

Completed in 178 milliseconds