Searched refs:lengths (Results 1 - 15 of 15) sorted by relevance

/openjdk10/hotspot/test/gc/stress/gcbasher/
H A DBytecode.java44 private static final int lengths[] = { field in class:Bytecode
251 if ((bc < 0) || (bc >= lengths.length)) {
254 return lengths[bc];
/openjdk10/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DTokenList.java237 protected int[] lengths; field in class:TokenList
240 // Layout of lengths:
250 int[] lengths = this.lengths;
253 if (lengths == null || lengths[MODC] != modCount) {
255 lengths = new int[END0 + size + (size == 0 ? 1 : 0)];
256 lengths[MODC] = modCount;
258 lengths[BEG0] = end;
262 lengths[END
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/imageio/plugins/jpeg/
H A DJPEGHuffmanTable.java152 private short[] lengths; field in class:JPEGHuffmanTable
160 * @param lengths an array of {@code short}s where {@code lengths[k]}
165 * @throws IllegalArgumentException if {@code lengths} or
166 * {@code values} are null, the length of {@code lengths} is
168 * if any value in {@code lengths} or {@code values} is less
171 public JPEGHuffmanTable(short[] lengths, short[] values) { argument
172 if (lengths == null || values == null ||
173 lengths.length == 0 || values.length == 0 ||
174 lengths
204 JPEGHuffmanTable(short[] lengths, short[] values, boolean copy) argument
[all...]
/openjdk10/jdk/test/java/util/TimSort/
H A DSortPerf.java28 private static final int[] lengths = { 10, 100, 1000, 10000, 1000000 }; field in class:SortPerf
44 for (int n : lengths) {
/openjdk10/jdk/test/sun/security/pkcs11/ec/
H A DTestECGenSpec.java66 int[] lengths = {256, 192, 163, 233, 239};
69 int len = lengths[i];
/openjdk10/hotspot/src/share/vm/classfile/
H A DsymbolTable.hpp127 const char** names, int* lengths, int* cp_indices,
132 const char** name, int* lengths,
135 add(loader_data, cp, names_count, name, lengths, cp_indices, hashValues, THREAD);
201 const char** names, int* lengths, int* cp_indices,
130 new_symbols(ClassLoaderData* loader_data, const constantPoolHandle& cp, int names_count, const char** name, int* lengths, int* cp_indices, unsigned int* hashValues, TRAPS) argument
H A DsymbolTable.cpp422 const char** names, int* lengths, int* cp_indices,
428 bool added = table->basic_add(loader_data, cp, names_count, names, lengths,
435 Symbol* sym = table->basic_add(index, (u1*)names[i], lengths[i], hashValues[i], c_heap, CHECK);
503 const char** names, int* lengths,
509 if (lengths[i] > Symbol::max_length()) {
523 hashValue = hash_symbol(names[i], lengths[i]);
530 Symbol* test = lookup(index, names[i], lengths[i], hashValue);
540 Symbol* sym = allocate_symbol((const u1*)names[i], lengths[i], c_heap, CHECK_(false));
541 assert(sym->equals(names[i], lengths[i]), "symbol must be properly initialized"); // why wouldn't it be???
420 add(ClassLoaderData* loader_data, const constantPoolHandle& cp, int names_count, const char** names, int* lengths, int* cp_indices, unsigned int* hashValues, TRAPS) argument
501 basic_add(ClassLoaderData* loader_data, const constantPoolHandle& cp, int names_count, const char** names, int* lengths, int* cp_indices, unsigned int* hashValues, TRAPS) argument
H A DclassFileParser.cpp137 int lengths[SymbolTable::symbol_alloc_batch_size]; local
295 lengths[names_count] = utf8_length;
303 lengths,
341 lengths,
/openjdk10/jdk/test/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/
H A DBuffersTestingKit.java161 (lengths) -> {
164 for (int len : lengths) {
/openjdk10/hotspot/src/share/vm/opto/
H A Dparse3.cpp373 Node* Parse::expand_multianewarray(ciArrayKlass* array_klass, Node* *lengths, int ndimensions, int nargs) { argument
374 Node* length = lengths[0];
385 Node* elem = expand_multianewarray(array_klass_1, &lengths[1], ndimensions-1, nargs);
406 // get the lengths from the stack (first dimension is on top)
413 // It is often the case that the lengths are small (except the last).
H A Dparse.hpp535 Node* expand_multianewarray(ciArrayKlass* array_klass, Node* *lengths, int ndimensions, int nargs);
/openjdk10/jdk/test/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/
H A DTestSupport.java241 (lengths) -> {
244 for (int len : lengths) {
/openjdk10/jdk/src/java.base/share/native/libverify/
H A Dcheck_code.c952 int* lengths; local
956 lengths = malloc(sizeof(int) * num_methods);
957 check_and_push(context, lengths, VM_MALLOC_BLK);
962 *(lengths_addr) = lengths;
966 lengths[i] = JVM_GetMethodIxByteCodeLength(context->env, cb, i);
967 if (lengths[i] > 0) {
968 code[i] = malloc(sizeof(unsigned char) * (lengths[i] + 1));
987 pop_and_free(context); /* lengths */
/openjdk10/jdk/test/java/util/Arrays/
H A DSorting.java44 // Array lengths used in a long run (default)
48 // Array lengths used in a short run
72 private static void testAndCheck(int[] lengths, long[] randoms) { argument
81 for (int length : lengths) {
87 for (int length : lengths) {
H A DParallelSorting.java51 // Array lengths used in a long run (default)
55 // Array lengths used in a short run
79 private static void testAndCheck(int[] lengths, long[] randoms) { argument
88 for (int length : lengths) {
94 for (int length : lengths) {

Completed in 150 milliseconds