Searched defs:bufptr (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dmain.cpp88 char* bufptr = (char*) buf; local
96 nr = (int)fread(bufptr, 1, readlen, u->infileptr);
100 nr = (int)read(u->infileno, bufptr, readlen);
102 nr = (int)fread(bufptr, 1, readlen, stdin);
111 bufptr += nr;
H A Dzip.cpp434 char* bufptr = (char*) buf; local
444 zs.next_out = (uchar*) bufptr;
457 bufptr += nr;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DXMLGregorianCalendarImpl.java3048 private int print2Number( char[] out, int bufptr, int number ) { argument
3049 out[bufptr++] = (char) ('0'+(number/10));
3050 out[bufptr++] = (char) ('0'+(number%10));
3051 return bufptr;
3060 private int print4Number( char[] out, int bufptr, int number ) { argument
3061 out[bufptr+3] = (char) ('0'+(number%10));
3063 out[bufptr+2] = (char) ('0'+(number%10));
3065 out[bufptr+1] = (char) ('0'+(number%10));
3067 out[bufptr ] = (char) ('0'+(number%10));
3068 return bufptr
[all...]

Completed in 58 milliseconds