Searched refs:start (Results 1 - 25 of 2335) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/memory/
H A DmemRegion.cpp34 HeapWord* res_start = MAX2(start(), mr2.start());
46 if (mr2.is_empty()) return MemRegion(start(), end());
49 assert(((start() <= mr2.start()) && (end() >= mr2.start())) ||
50 ((mr2.start() <= start()) && (mr2.end() >= start())),
53 HeapWord* res_start = MIN2(start(), mr
[all...]
H A DbarrierSet.cpp31 void BarrierSet::static_write_ref_array_pre(HeapWord* start, size_t count) { argument
35 start, count);
38 Universe::heap()->barrier_set()->write_ref_array_pre((narrowOop*)start, (int)count, false);
40 Universe::heap()->barrier_set()->write_ref_array_pre( (oop*)start, (int)count, false);
45 void BarrierSet::static_write_ref_array_post(HeapWord* start, size_t count) { argument
47 Universe::heap()->barrier_set()->write_ref_array(start, count);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinffast.h35 void inflate_fast OF((z_streamp strm, unsigned start));
/openjdk7/langtools/test/tools/javac/generics/
H A DT6751514.java41 int start = foo.x;
42 equals(foo.x += 1, start + 1);
43 equals(foo.x++, start + 1);
44 equals(++foo.x, start + 3);
45 equals(foo.x--, start + 3);
46 equals(foo.x -= 1, start + 1);
47 equals(--foo.x, start);
51 int start = foo.x;
52 equals((foo.x) += 1, start + 1);
53 equals((foo.x)++, start
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSSampleLoop.java37 long start; field in class:DLSSampleLoop
49 return start;
52 public void setStart(long start) { argument
53 this.start = start;
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiRun.java60 int start; /* first logical position of the run */ field in class:BidiRun
69 * Note that members start and limit of a run instance have different
74 * - start is the first logical position of the run in the source text.
77 * - start is the first logical position of the run in the source text.
88 BidiRun(int start, int limit, byte embeddingLevel) argument
90 this.start = start;
100 this.start = run.start;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/
H A DPrimitiveTypeContentHandler.java83 * @param start the start position in the array
88 public void booleans(boolean [] b, int start, int length) throws SAXException; argument
107 * @param start the start position in the array
112 public void bytes(byte[] b, int start, int length) throws SAXException; argument
125 * @param start the start position in the array
130 public void shorts(short[] s, int start, int length) throws SAXException; argument
143 * @param start th
148 ints(int [] i, int start, int length) argument
166 longs(long [] l, int start, int length) argument
184 floats(float [] f, int start, int length) argument
202 doubles(double [] d, int start, int length) argument
222 uuids(long[] msblsb, int start, int length) argument
[all...]
H A DRestrictedAlphabetContentHandler.java34 public void numericCharacters(char ch[], int start, int length) throws SAXException; argument
36 public void dateTimeCharacters(char ch[], int start, int length) throws SAXException; argument
38 public void alphabetCharacters(String alphabet, char ch[], int start, int length) throws SAXException; argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DTextRecord.java38 public int start; field in class:TextRecord
43 public void init(char[] text, int start, int limit, int min, int max) { argument
45 this.start = start;
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCSDecoderMapping.java42 * every string has 0x10*(end-start+1) characters.
46 protected int start; field in class:DBCSDecoderMapping
52 int start, int end) {
55 this.start = start;
70 || ((byte2 < start) || (byte2 > end)))
73 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
51 DBCSDecoderMapping(short[] index1, String[] index2, int start, int end) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DBerEncoder.java36 * NOTE : the buffer is filled from end to start. This means the caller
56 start = b.length ;
65 * filled from end to start. The encoded data must be shift before
75 final int result = bytes.length - start ;
77 // for (int i = start ; i < bytes.length ; i++) {
78 // bytes[i-start] = bytes[i] ;
81 java.lang.System.arraycopy(bytes,start,bytes,0,result);
83 start = bytes.length ;
229 java.lang.System.arraycopy(s,0,bytes,start-byteCount,byteCount);
230 start
466 protected int start = -1 ; field in class:BerEncoder
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DMinimumEscapeHandler.java44 public void escape(char[] ch, int start, int length, boolean isAttVal, Writer out) throws IOException { argument
48 int limit = start+length;
49 for (int i = start; i < limit; i++) {
52 if(i!=start)
53 out.write(ch,start,i-start);
54 start = i+1;
72 if( start!=limit )
73 out.write(ch,start,limit-start);
[all...]
/openjdk7/jdk/test/demo/jvmti/mtrace/
H A DJFrameCreateTime.java40 long start, end;
42 start = System.currentTimeMillis();
46 System.out.println("JFrame first creation took " + (end - start) + " ms");
48 start = System.currentTimeMillis();
52 System.out.println("JFrame second creation took " + (end - start) + " ms");
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DBasicLogEvent.java36 protected final double start; field in class:BasicLogEvent
40 BasicLogEvent(double start, String id) { argument
41 this.start = start;
42 this.end = start;
47 return start;
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DLocalSeqNumber.java43 public LocalSeqNumber(int start) { argument
44 init(start);
47 public LocalSeqNumber(Integer start) { argument
48 init(start.intValue());
73 public synchronized void init(int start) { argument
74 lastSeqNumber = start;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DCharArray.java32 public int start; field in class:CharArray
47 start = 0;
52 start = _start;
60 System.arraycopy(ch, start, _ch, 0, length);
62 start = 0;
66 return new String(ch, start, length);
73 for (int i = start; i < start + length; i++) {
80 public static final int hashCode(char[] ch, int start, int length) { argument
84 for (int i = start;
110 equalsCharArray(char[] ch, int start, int length) argument
155 subSequence(int start, int end) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatchResult.java43 * Returns the start index of the match.
51 public int start(); method in interface:MatchResult
54 * Returns the start index of the subsequence captured by the given group
59 * the expression <i>m.</i><tt>start(0)</tt> is equivalent to
60 * <i>m.</i><tt>start()</tt>. </p>
77 public int start(int group); method in interface:MatchResult
121 * <i>s.</i><tt>substring(</tt><i>m.</i><tt>start(),</tt>&nbsp;<i>m.</i><tt>end())</tt>
143 * <i>s.</i><tt>substring(</tt><i>m.</i><tt>start(</tt><i>g</i><tt>),</tt>&nbsp;<i>m.</i><tt>end(</tt><i>g</i><tt>))</tt>
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleTextSequence.java45 * start and end indicies/offsets into a larger body of text that the
52 /* The start index of the text sequence */
65 * @param start the beginning index of the span of text
71 public AccessibleTextSequence(int start, int end, String txt) { argument
72 startIndex = start;
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DSecurityCtx.java47 byte[] wrap(byte[] dest, int start, int len) argument
55 byte[] unwrap(byte[] outgoing, int start, int len) argument
/openjdk7/hotspot/src/share/vm/prims/
H A Dforte.hpp32 static void register_stub(const char* name, address start, address end);
/openjdk7/jdk/test/sun/misc/URLClassPath/
H A Dtestclasses.jar ... =%3Cinit%3E" <init> () public void start () } fo o.class fooo.java package public fo
/openjdk7/langtools/test/tools/javadoc/6176978/
H A DX.java27 public static boolean start(RootDoc root) { method in class:X
28 System.out.println("X.start");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DPage.java87 requested is greater than the page size, or if the start address
112 requested is greater than the page size, or if the start address
136 int start = (int) address - (int) baseAddress;
139 (((data[start + 1] & 0xFF)) |
140 ((data[start] & 0xFF) << 8));
143 (((data[start + 1] & 0xFF) << 8) |
144 ((data[start] & 0xFF)));
153 int start = (int) address - (int) baseAddress;
156 ((data[start + 3] & 0xFF)) |
157 ((data[start
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DBitSieve.java107 int start = 0;
109 int step = smallSieve.sieveSearch(smallSieve.length, start);
117 start = b.divideOneWord(convertedStep, q);
120 start = convertedStep - start;
121 if (start%2 == 0)
122 start += convertedStep;
123 sieveSingle(searchLen, (start-1)/2, convertedStep);
163 * array that occurs at or after start. It will not search past the
166 private int sieveSearch(int limit, int start) { argument
184 sieveSingle(int limit, int start, int step) argument
[all...]
/openjdk7/hotspot/test/compiler/6982370/
H A DTest6982370.java51 int start = i & 7;
52 int end = start + ((i >> 4) & 7);
55 Arrays.fill(a, start, end, value);
57 for (int j = start; j < end; j++) {
70 int start = i & 7;
71 int end = start + ((i >> 4) & 7);
74 Arrays.fill(a, start, end, value);
76 for (int j = start; j < end; j++) {
88 int start = i & 7;
89 int end = start
[all...]

Completed in 35 milliseconds

1234567891011>>