Searched defs:start (Results 251 - 275 of 865) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DbufferingOopClosure.hpp61 double start = os::elapsedTime(); local
71 _closure_app_seconds += (os::elapsedTime() - start);
160 double start = os::elapsedTime(); local
179 _closure_app_seconds += (os::elapsedTime() - start);
H A DheapRegionSeq.cpp160 uint start = _next_search_index; local
161 uint res = find_contiguous_from(start, num);
162 if (res == G1_NULL_HRS_INDEX && start > 0) {
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskThread.cpp63 void GCTaskThread::start() { function in class:GCTaskThread
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpCounter64.java126 * @param start The position in the index array.
129 * available at the start position.
131 public static SnmpOid toOid(long[] index, int start) throws SnmpStatusException { argument
133 return new SnmpOid(index[start]) ;
144 * @param start The position in the index array.
147 * available at the start position.
149 public static int nextOid(long[] index, int start) throws SnmpStatusException { argument
150 if (start >= index.length) {
154 return start + 1 ;
H A DSnmpInt.java172 * @param start The position in the index array.
175 * available at the start position.
177 public static SnmpOid toOid(long[] index, int start) throws SnmpStatusException { argument
179 return new SnmpOid(index[start]) ;
190 * @param start The position in the index array.
193 * available at the start position.
195 public static int nextOid(long[] index, int start) throws SnmpStatusException { argument
196 if (start >= index.length) {
200 return start + 1 ;
H A DSnmpIpAddress.java133 * @param start The position in the index array.
136 * available at the start position.
138 public static SnmpOid toOid(long[] index, int start) throws SnmpStatusException { argument
139 if (start + 4 <= index.length) {
142 index[start],
143 index[start+1],
144 index[start+2],
145 index[start+3]) ;
160 * @param start The position in the index array.
163 * available at the start positio
165 nextOid(long[] index, int start) argument
[all...]
H A DSnmpString.java172 * @param start The position in the index array.
175 * available at the start position.
177 public static SnmpOid toOid(long[] index, int start) throws SnmpStatusException { argument
179 if (index[start] > Integer.MAX_VALUE) {
182 int strLen = (int)index[start++] ;
185 ids[i] = index[start + i] ;
198 * @param start The position in the index array.
201 * available at the start position.
203 public static int nextOid(long[] index, int start) throws SnmpStatusException { argument
205 if (index[start] > Intege
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DSaslInputStream.java87 public int read(byte[] inBuf, int start, int count) throws IOException { argument
104 System.arraycopy(buf, bufPos, inBuf, start, avail);
110 System.arraycopy(buf, bufPos, inBuf, start, count);
205 private static int networkByteOrderToInt(byte[] buf, int start, int count) { argument
214 answer |= ((int)buf[start+i] & 0xff);
H A DSaslOutputStream.java124 private static void intToNetworkByteOrder(int num, byte[] buf, int start, argument
131 buf[start+i] = (byte)(num & 0xff);
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpServer.java151 public abstract void start () ; method in class:HttpServer
155 * Executor must be established before {@link #start()} is called.
157 * If this method is not called (before start()) or if it is
160 * which was created by the {@link #start()} method.
182 * thread created by start() exits, and the method returns.
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Base.java65 public byte[] unwrap(byte[] incoming, int start, int len) argument
78 byte[] answer = secCtx.unwrap(incoming, start, len, msgProp);
81 incoming, start, len);
91 public byte[] wrap(byte[] outgoing, int start, int len) throws SaslException { argument
104 byte[] answer = secCtx.wrap(outgoing, start, len, msgProp);
107 outgoing, start, len);
/openjdk7/jdk/src/share/classes/java/awt/
H A DLinearGradientPaint.java38 * interpolation between each color. The user also specifies start and end
61 * takes when it is filling the space outside the start and end points by
65 * colors between the start and end points.
80 * Point2D start = new Point2D.Float(0, 0);
85 * new LinearGradientPaint(start, end, dist, colors);
107 /** Gradient start and end points. */
108 private final Point2D start, end; field in class:LinearGradientPaint
114 * @param startX the X coordinate of the gradient axis start point
116 * @param startY the Y coordinate of the gradient axis start point
130 * if start an
209 LinearGradientPaint(Point2D start, Point2D end, float[] fractions, Color[] colors) argument
241 LinearGradientPaint(Point2D start, Point2D end, float[] fractions, Color[] colors, CycleMethod cycleMethod) argument
281 LinearGradientPaint(Point2D start, Point2D end, float[] fractions, Color[] colors, CycleMethod cycleMethod, ColorSpaceType colorSpace, AffineTransform gradientTransform) argument
[all...]
H A DLinearGradientPaintContext.java69 * @param dStart gradient start point, in user space
83 Point2D start,
103 float startx = (float)start.getX();
104 float starty = (float)start.getY();
108 float dx = endx - startx; // change in x from start to end
109 float dy = endy - starty; // change in y from start to end
147 // initialize current value to be start
77 LinearGradientPaintContext(LinearGradientPaint paint, ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform t, RenderingHints hints, Point2D start, Point2D end, float[] fractions, Color[] colors, CycleMethod cycleMethod, ColorSpaceType colorSpace) argument
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DLineBreakMeasurer.java59 * start of the next text segment. Initially, this position is the
60 * start of text. Paragraphs are assigned an overall direction (either
251 private int start; field in class:LineBreakMeasurer
312 this.pos = this.start = text.getBeginIndex();
314 charIter = new CharArrayIterator(measurer.getChars(), this.start);
364 else if (Character.isWhitespace(measurer.getChars()[charAtMaxAdvance-start])) {
475 if (newPosition < start || newPosition > limit) {
490 * than the start of <code>newParagraph</code> or greater than
502 pos = start = newParagraph.getBeginIndex();
516 * less than the start o
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DSupplementaryCharacterData.java83 public void appendElement(int start, int end, byte value) { argument
93 tempTable[dataCount++] = ((((long)start<<24) + end)<<8) + value;
131 int start = (int)((long)(data>>32)) & CODEPOINT_MASK;
135 * Add an entry if the first start code point in tempTable is not
138 if (start != Character.MIN_SUPPLEMENTARY_CODE_POINT) {
142 newTempTable[new_index++] = composeEntry(start, (int)data);
148 * If the previous end code point is not equal to the previous start
149 * code point and is not consecutive with the next start code point,
150 * insert a filler entry before an entry for the next start code
153 if (end != start
[all...]
/openjdk7/jdk/make/tools/swing-beans/
H A DGenDocletBeanInfo.java118 public static boolean start(RootDoc doc) { method in class:GenDocletBeanInfo
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.hpp110 void start() function in class:TraceVmCreationTime
H A DmemTrackWorker.cpp75 void MemTrackWorker::start() { function in class:MemTrackWorker
181 // we need to increment _tail to start a new generation.
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6890943.java80 int fallLeft = fall(digDown, start(q));
83 if (fallLeft <= f) addToM(calcWalkingRange(digDown+fallLeft, start(q)), m.getValue());
94 for (int p = start(q) + fallLeftDelta ; p <= end(q) - fallRightDelta ; p++) {
96 for (int digSpot = p ; digSpot > start(q) +fallLeftDelta ; digSpot--) {
147 return start(q) == end(q);
154 private int start(int q) { method in class:Test6890943
/openjdk7/jaxp/src/org/xml/sax/
H A DContentHandler.java50 * basic document-related events like the start and end of elements
167 * start/endPrefixMapping event supplies the information
171 * <p>Note that start/endPrefixMapping events are not
181 * <p>There should never be start/endPrefixMapping events for the
348 * @param start the start position in the array
355 public void characters (char ch[], int start, int length) argument
378 * @param start the start position in the array
384 public void ignorableWhitespace (char ch[], int start, in argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DIntArrayData.java41 * This class holds int[] as a triplet of (data,start,len)
42 * where 'start' and 'len' represents the start position of the
50 private int start; field in class:IntArrayData
59 public IntArrayData(int[] data, int start, int len) { argument
60 set(data, start, len);
75 public void set(int[] data, int start, int len) { argument
77 this.start = start;
90 public CharSequence subSequence(int start, in argument
[all...]
H A DIntData.java83 public CharSequence subSequence(int start, int end) { argument
84 return toString().substring(start,end);
H A DScope.java121 public void start( Accessor<BeanT,PropT> acc, Lister<BeanT,PropT,ItemT,PackT> lister) throws SAXException{ method in class:Scope
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DBuiltInEncodingAlgorithm.java43 public abstract void encodeToBytes(Object array, int astart, int alength, byte[] b, int start); argument
46 public void word(int start, int end); argument
54 s = m.start();
64 public StringBuffer removeWhitespace(char[] ch, int start, int length) { argument
69 if (Character.isWhitespace(ch[idx + start])) {
71 buf.append(ch, firstNonWS + start, idx - firstNonWS);
77 buf.append(ch, firstNonWS + start, idx - firstNonWS);
H A DHexadecimalEncodingAlgorithm.java67 public final Object decodeFromBytes(byte[] b, int start, int length) throws EncodingAlgorithmException { argument
69 System.arraycopy(b, start, data, 0, length);
86 public final Object convertFromCharacters(char[] ch, int start, int length) { argument
91 StringBuffer encodedValue = removeWhitespace(ch, start, length);
136 public final void encodeToBytes(Object array, int astart, int alength, byte[] b, int start) { argument
137 System.arraycopy((byte[])array, astart, b, start, alength);

Completed in 72 milliseconds

<<11121314151617181920>>