Searched refs:entries (Results 51 - 75 of 316) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/runtime/NMT/
H A DMallocSiteHashOverflow.java45 // Size of entries based on malloc tracking header defined in mallocTracker.hpp
47 long entries = 257;
65 for (int i = 0; i < entries; i++) {
70 // We free memory here since it doesn't affect pseudo malloc alloc site hash table entries
73 if (i == entries) {
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLookupTables.h85 const LookupSingle *lookupSingle(const LETableReference &base, const LookupSingle *entries, LEGlyphID glyph, LEErrorCode &success) const;
108 LookupSingle entries[ANY_NUMBER]; member in struct:SingleTableLookupTable
110 LE_VAR_ARRAY(SingleTableLookupTable, entries)
/openjdk10/jdk/src/java.base/linux/classes/sun/nio/fs/
H A DLinuxFileSystem.java76 * Returns object to iterate over the mount entries in the given fstab file.
79 ArrayList<UnixMountEntry> entries = new ArrayList<>();
88 entries.add(entry);
97 return entries;
101 * Returns object to iterate over the mount entries in /etc/mtab
/openjdk10/jdk/src/java.base/macosx/classes/sun/nio/fs/
H A DBsdFileSystem.java73 * Returns object to iterate over mount entries
77 ArrayList<UnixMountEntry> entries = new ArrayList<UnixMountEntry>();
86 entries.add(entry);
95 return entries;
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DAbstractLdapNamingEnumeration.java49 private Vector<LdapEntry> entries = null; field in class:AbstractLdapNamingEnumeration
57 * Record the next set of entries and/or referrals.
88 entries = answer.entries;
89 limit = (entries == null) ? 0 : entries.size(); // handle empty set
126 * Retrieve the next set of entries and/or referrals.
136 entries = res.entries;
137 limit = (entries
[all...]
/openjdk10/jdk/test/java/util/zip/ZipFile/
H A DManyEntries.java26 * @summary open zip files with more than 64k entries
83 Enumeration entries = zip.entries();
87 if (! (entries.hasMoreElements()))
89 ZipEntry e = (ZipEntry)entries.nextElement();
101 if (entries.hasMoreElements())
H A DAssortment.java26 * @summary test a variety of zip file entries
231 List<Entry> entries = new ArrayList<Entry>();
234 entries.add(new Entry("meta-iNf/ManIfEst.Mf",
241 entries.add(new Entry("", ZipEntry.STORED, null, null, ""));
248 entries.add(new Entry(uniquify(name), method, data,
257 for (Entry e : entries)
265 for (Entry e : entries)
274 for (Entry e : entries)
279 // Verify zip file contents using ZipFile.entries()
282 Enumeration<? extends ZipEntry> en = f.entries();
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.util/src/org/graalvm/util/impl/
H A DEconomicMapImpl.java38 * when iterating over keys. Particularly efficient when number of entries is 0 or smaller equal
42 * values at odd indices. If the map has smaller or equal to {@link #HASH_THRESHOLD} entries, there
50 * {@link #entries} array. The hash array is interpreted as an actual byte array if the indices fit
55 * the place of the values in the {@link #entries} array.
57 * Removing entries will put {@code null} into the {@link #entries} array. If the occupation of the
64 * Initial number of key/value pair entries that is allocated in the first entries array.
69 * Maximum number of entries that are moved linearly forward if a key is removed.
74 * Minimum number of key/value pair entries adde
117 private Object[] entries; field in class:EconomicMapImpl
[all...]
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DLegalNoticeFilePlugin.java89 // process all legal notices/licenses entries
92 .flatMap(ResourcePoolModule::entries)
96 in.entries()
110 List<ResourcePoolEntry> entries =
113 Optional<ResourcePoolEntry> otarget = entries.stream()
122 entries.stream().filter(e -> e.linkedTarget() == null)
130 entries.add(entry);
132 entries.add(ResourcePoolEntry.createSymLink(entry.path(),
/openjdk10/jdk/test/java/security/cert/CertPathBuilder/selfIssued/
H A DDisableRevocation.java163 Collection entries = new HashSet();
172 entries.add(cert);
176 entries.add(cert);
180 entries.add(cert);
184 entries.add(cert);
188 entries.add(cert);
191 new CollectionCertStoreParameters(entries));
/openjdk10/jdk/test/sun/security/tools/jarsigner/
H A DEntriesOrder.java50 String[] entries = {
60 // We will create a jar containing entries above. Try all permutations
88 for (String s: entries) {
95 for (List<String> perm: Permute(entries)) {
107 // Open with JarFile, number of signed entries should be 3.
110 Enumeration<JarEntry> jes = jf.entries();
136 // entries is not documented. Just test impl.
162 static Iterable<List<String>> Permute(String[] entries) { argument
165 int s = entries.length;
185 Arrays.asList(entries));
[all...]
/openjdk10/jdk/test/javax/security/auth/login/LoginContext/
H A DConfigConstructor.java143 AppConfigurationEntry[] entries = new AppConfigurationEntry[1];
150 entries[0] = entry;
156 entries[0] = entry;
162 entries[0] = entry;
168 entries[0] = entry;
174 entries[0] = entry;
180 entries[0] = entry;
186 entries[0] = entry;
188 entries = null;
190 return entries;
[all...]
/openjdk10/hotspot/test/compiler/c2/
H A DTest6661247.java137 int entries = 1000;
138 boolean[] src = new boolean[entries * 64];
139 long[] dest = new long[entries];
140 long[] result = new long[entries];
143 for (int i = 0; i < entries; i++) {
152 for (int i = 0; i < entries; i++) {
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DReceiverTypeData.java124 int entries = 0;
126 if (receiver(row) != null) entries++;
128 st.println("count(" + count() + ") entries(" + entries + ")");
H A DRetData.java101 int entries = 0;
103 if (bci(row) != noBci) entries++;
105 st.println("count(" + count() + ") entries(" + entries + ")");
/openjdk10/jdk/src/java.base/solaris/classes/sun/nio/fs/
H A DSolarisFileSystem.java98 * Returns object to iterate over entries in /etc/mnttab
102 ArrayList<UnixMountEntry> entries = new ArrayList<>();
112 entries.add(entry);
120 return entries;
/openjdk10/jdk/src/java.security.jgss/windows/classes/sun/security/krb5/internal/tools/
H A DKlist.java41 * This class can execute as a command-line tool to list entries in
183 KeyTabEntry[] entries = table.getEntries();
184 if (entries.length == 0) {
186 ", " + " 0 entries found.\n");
188 if (entries.length == 1)
190 ", " + entries.length + " entry found.\n");
193 entries.length + " entries found.\n");
194 for (int i = 0; i < entries.length; i++) {
197 entries[
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DStackMapTable_attribute.java50 entries = new stack_map_frame[number_of_entries];
52 entries[i] = stack_map_frame.read(cr);
55 public StackMapTable_attribute(ConstantPool constant_pool, stack_map_frame[] entries) argument
57 this(constant_pool.getUTF8Index(Attribute.StackMapTable), entries);
60 public StackMapTable_attribute(int name_index, stack_map_frame[] entries) { argument
61 super(name_index, length(entries));
62 this.number_of_entries = entries.length;
63 this.entries = entries;
70 static int length(stack_map_frame[] entries) { argument
78 public final stack_map_frame entries[]; field in class:StackMapTable_attribute
[all...]
/openjdk10/nashorn/test/script/basic/es6/
H A Diterator.js70 testIterator(set.entries(), setEntries);
77 testIterator(map.entries(), mapEntries);
86 testIterator(array.entries(), arrayEntries);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/
H A DPropagateDeoptimizeProbabilityPhase.java93 MapCursor<ControlSplitNode, EconomicSet<AbstractBeginNode>> entries = reachableSplits.getEntries();
94 while (entries.advance()) {
95 ControlSplitNode controlSplitNode = entries.getKey();
96 EconomicSet<AbstractBeginNode> value = entries.getValue();
/openjdk10/jdk/src/java.base/share/classes/java/security/acl/
H A DAcl.java37 * entries. Each ACL entry, of interface type AclEntry, contains a
49 * entries are not allowed for any principal. Each entry specifies
70 * interfaces to the ACL and related data structures (ACL entries,
207 * Returns an enumeration of the entries in this ACL. Each element in
210 * @return an enumeration of the entries in this ACL.
212 public Enumeration<AclEntry> entries(); method in interface:Acl
/openjdk10/jdk/test/java/security/cert/CertPathValidator/indirectCRL/
H A DCircularCRLOneLevelRevoked.java160 Collection entries = new HashSet();
161 entries.addAll(crls);
162 entries.addAll(certs);
165 new CollectionCertStoreParameters(entries));
H A DCircularCRLOneLevel.java159 Collection entries = new HashSet();
160 entries.addAll(crls);
161 entries.addAll(certs);
164 new CollectionCertStoreParameters(entries));
/openjdk10/test/lib/jdk/test/lib/util/
H A DJarUtils.java89 Enumeration<JarEntry> entries = srcJarFile.entries();
90 while (entries.hasMoreElements()) {
91 JarEntry entry = entries.nextElement();
/openjdk10/jdk/test/java/util/zip/
H A DTestZipError.java28 * iterating entries of an invalid zip file
50 // Create a zip file with two entries.
70 // Re-create zip file, with different entries than earlier. However,
83 Enumeration<? extends ZipEntry> entries = zf.entries();
85 while (entries.hasMoreElements()) {
86 ze = entries.nextElement();

Completed in 226 milliseconds

1234567891011>>