Searched refs:istart (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DShortEncodingAlgorithm.java112 public final void decodeFromBytesToShortArray(short[] sdata, int istart, byte[] b, int start, int length) { argument
115 sdata[istart++] = (short) (((b[start++] & 0xFF) << 8) |
161 public final void encodeToBytesFromShortArray(short[] sdata, int istart, int ilength, byte[] b, int start) { argument
162 final int iend = istart + ilength;
163 for (int i = istart; i < iend; i++) {
H A DIntEncodingAlgorithm.java107 public final void decodeFromBytesToIntArray(int[] idata, int istart, byte[] b, int start, int length) { argument
110 idata[istart++] = ((b[start++] & 0xFF) << 24) |
162 public final void encodeToBytesFromIntArray(int[] idata, int istart, int ilength, byte[] b, int start) { argument
163 final int iend = istart + ilength;
164 for (int i = istart; i < iend; i++) {
H A DLongEncodingAlgorithm.java106 public final void decodeFromBytesToLongArray(long[] ldata, int istart, byte[] b, int start, int length) { argument
109 ldata[istart++] =
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c298 TableIndex istart; local
310 istart = BV_CHUNK_ROUND(ltable->freed_start);
314 for( ; istart < ltable->next_index ; istart += BV_CHUNK_BITSIZE ) {
315 chunk = BV_CHUNK(p, istart);
321 HPROF_ASSERT(chunk==BV_CHUNK(p,istart));
322 HPROF_ASSERT(istart < ltable->next_index);
325 for( i = istart ; i < (istart+BV_CHUNK_BITSIZE) ; i++) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DBasisLibrary.java274 int istart = (int)Math.round(start) - 1;
276 if (istart > strlen)
278 if (istart < 1)
279 istart = 0;
281 return value.substring(istart);
298 int istart = (int)Math.round(start) - 1;
303 isum = istart + (int)Math.round(length);
306 if (isum < 0 || istart > strlen)
309 if (istart < 0)
310 istart
[all...]

Completed in 676 milliseconds