Searched defs:initSize (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DGenerationSpec.java62 public long initSize() { method in class:GenerationSpec
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/pool/
H A DPool.java92 final private int initSize; // initial number of identical conn to create field in class:Pool
95 public Pool(int initSize, int prefSize, int maxSize) { argument
99 this.initSize = initSize;
132 conns = new Connections(id, initSize, prefSize, maxSize,
212 out.println("initial pool size: " + initSize);
H A DConnections.java81 * @param initSize the number of connections to create initially
91 Connections(Object id, int initSize, int prefSize, int maxSize, argument
96 // prefSize and initSize cannot exceed specified maxSize
98 initSize = Math.min(initSize, maxSize);
108 d("init size=", initSize);
114 for (int i = 0; i < initSize; i++) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapPoolManager.java112 private static final int initSize; // initial num of identical conns/pool field in class:LdapPoolManager
125 initSize = getInteger(INIT_POOL_SIZE, DEFAULT_INIT_POOL_SIZE);
143 pools[p] = new Pool(initSize, prefSize, maxSize);
338 out.println("initial pool size: " + initSize);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDOMAdapter.java421 public DOM getResultTreeFrag(int initSize, int rtfType) argument
424 return _enhancedDOM.getResultTreeFrag(initSize, rtfType);
427 return _dom.getResultTreeFrag(initSize, rtfType);
434 public DOM getResultTreeFrag(int initSize, int rtfType, argument
438 return _enhancedDOM.getResultTreeFrag(initSize, rtfType,
442 return _dom.getResultTreeFrag(initSize, rtfType, addToManager);
H A DMultiDOM.java633 public DOM getResultTreeFrag(int initSize, int rtfType) argument
635 return _main.getResultTreeFrag(initSize, rtfType);
638 public DOM getResultTreeFrag(int initSize, int rtfType, boolean addToManager) argument
640 return _main.getResultTreeFrag(initSize, rtfType, addToManager);
H A DAdaptiveResultTreeImpl.java107 DTMWSFilter wsfilter, int initSize,
113 _initSize = initSize;
106 AdaptiveResultTreeImpl(XSLTCDTMManager dtmManager, int documentID, DTMWSFilter wsfilter, int initSize, boolean buildIdIndex) argument
H A DSAXImpl.java1793 public DOM getResultTreeFrag(int initSize, int rtfType) argument
1795 return getResultTreeFrag(initSize, rtfType, true);
1801 * @param initSize The initial size of the DOM.
1806 public DOM getResultTreeFrag(int initSize, int rtfType, boolean addToManager) argument
1825 m_wsfilter, initSize, m_buildIdIndex);
1832 m_wsfilter, initSize, m_buildIdIndex);
1838 initSize, m_buildIdIndex);

Completed in 54 milliseconds