Lines Matching defs:start

36  * 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 -= byteCount;
232 // bytes[--start] = s[i] ;
243 stackBuf[stackTop++] = start ;
263 putLength(end - start) ;
293 bytes[--start] = (byte)tag ;
297 bytes[--start] = (byte)(tag & 127) ;
315 bytes[--start] = (byte)length ;
318 bytes[--start] = (byte)length ;
319 bytes[--start] = (byte)0x81 ;
322 bytes[--start] = (byte)(length) ;
323 bytes[--start] = (byte)(length >> 8) ;
324 bytes[--start] = (byte)0x82 ;
327 bytes[--start] = (byte)(length) ;
328 bytes[--start] = (byte)(length >> 8) ;
329 bytes[--start] = (byte)(length >> 16) ;
330 bytes[--start] = (byte)0x83 ;
333 bytes[--start] = (byte)(length) ;
334 bytes[--start] = (byte)(length >> 8) ;
335 bytes[--start] = (byte)(length >> 16) ;
336 bytes[--start] = (byte)(length >> 24) ;
337 bytes[--start] = (byte)0x84 ;
349 final int end = start ;
365 bytes[--start] = (byte)v ;
368 putLength(end - start) ;
379 final int end = start ;
395 bytes[--start] = (byte)v ;
398 putLength(end - start) ;
410 java.lang.System.arraycopy(s,0,bytes,start-datalen,datalen);
411 start -= datalen;
413 // bytes[--start] = s[i] ;
427 final int end = start ;
440 bytes[--start] = (byte)c ;
443 bytes[--start] = (byte)(c & 127) ;
446 bytes[--start] = (byte)(c | 128) ;
451 bytes[--start] = (byte)(s[0] * 40 + s[1]) ;
452 putLength(end - start) ;
466 protected int start = -1 ;