| /openjdk7/jdk/test/java/io/StringWriter/ |
| H A D | NegativeBufferSize.java | 48 MyStringWriter(int bufsize){ argument 49 super(bufsize);
|
| /openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/ |
| H A D | ASCII_UCodeESC_CharStream.java | 95 int bufsize; field in class:ASCII_UCodeESC_CharStream 117 char[] newbuffer = new char[bufsize + 2048]; 118 int newbufline[] = new int[bufsize + 2048]; 119 int newbufcolumn[] = new int[bufsize + 2048]; 125 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin); 127 bufsize - tokenBegin, bufpos); 130 System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin); 131 System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos); 134 System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin); 135 System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize [all...] |
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/ |
| H A D | UUDecoderStream.java | 51 private int bufsize = 0; // size of the cache field in class:UUDecoderStream 82 if (index >= bufsize) { 111 return ((in.available() * 3)/4 + (bufsize-index)); 170 bufsize = 0; 220 while (bufsize < count) { 224 buffer[bufsize++] = (byte)(((a << 2) & 0xfc) | ((b >>> 4) & 3)); 226 if (bufsize < count) { 229 buffer[bufsize++] = 233 if (bufsize < count) { 236 buffer[bufsize [all...] |
| H A D | UUEncoderStream.java | 47 private int bufsize = 0; // size of the cache field in class:UUEncoderStream 107 buffer[bufsize++] = (byte)c; 108 if (bufsize == 45) { 111 bufsize = 0; 116 if (bufsize > 0) { // If there's unencoded characters in the buffer 156 * If bufsize if not a multiple of 3, the remaining bytes are filled 166 out.write((bufsize & 0x3f) + ' '); 168 while (i < bufsize) { 170 if (i < bufsize) { 172 if (i < bufsize) [all...] |
| H A D | BASE64DecoderStream.java | 48 private int bufsize = 0; // size of the cache field in class:BASE64DecoderStream 74 if (index >= bufsize) { 76 if (bufsize == 0) // buffer is empty 128 return ((in.available() * 3)/4 + (bufsize-index)); 158 bufsize = 0; 180 buffer[bufsize++] = (byte)(((a << 2) & 0xfc) | ((b >>> 4) & 3)); 187 buffer[bufsize++] = (byte)(((a << 4) & 0xf0) | ((b >>> 2) & 0xf)); 194 buffer[bufsize++] = (byte)(((a << 6) & 0xc0) | (b & 0x3f));
|
| H A D | BASE64EncoderStream.java | 48 private int bufsize = 0; // size of the cache field in class:BASE64EncoderStream 103 buffer[bufsize++] = (byte)c; 104 if (bufsize == 3) { // Encoding unit = 3 bytes 106 bufsize = 0; 116 if (bufsize > 0) { // If there's unencoded characters in the buffer .. 118 bufsize = 0; 154 if (bufsize == 1) { 162 } else if (bufsize == 2) {
|
| /openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/ |
| H A D | ASCII_CharStream.java | 37 int bufsize; field in class:ASCII_CharStream 58 char[] newbuffer = new char[bufsize + 2048]; 59 int newbufline[] = new int[bufsize + 2048]; 60 int newbufcolumn[] = new int[bufsize + 2048]; 66 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin); 68 bufsize - tokenBegin, bufpos); 71 System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin); 72 System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos); 75 System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin); 76 System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize [all...] |
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/ |
| H A D | UCode_UCodeESC_CharStream.java | 109 int bufsize; field in class:UCode_UCodeESC_CharStream 130 char[] newbuffer = new char[bufsize + 2048]; 131 int newbufline[] = new int[bufsize + 2048]; 132 int newbufcolumn[] = new int[bufsize + 2048]; 135 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin); 137 bufsize - tokenBegin, bufpos); 140 System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin); 141 System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos); 144 System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin); 145 System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize [all...] |
| H A D | JavaCharStream.java | 110 int bufsize; field in class:JavaCharStream 136 char[] newbuffer = new char[bufsize + 2048]; 137 int newbufline[] = new int[bufsize + 2048]; 138 int newbufcolumn[] = new int[bufsize + 2048]; 144 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin); 145 System.arraycopy(buffer, 0, newbuffer, bufsize - tokenBegin, bufpos); 148 System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin); 149 System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos); 152 System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin); 153 System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize [all...] |
| /openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ |
| H A D | BerDecoder.java | 43 public BerDecoder(byte buf[], int offset, int bufsize) { argument 46 this.bufsize = bufsize; 89 if (bufsize - offset < lengthbyte) { 126 if (offset + i > bufsize || offset + i < 0) { 137 if (bufsize - offset < 1) { 149 if (bufsize - offset < 1) { 198 } else if (len > bufsize - offset) { 250 if (len > bufsize - offset) { 311 if (len > bufsize [all...] |
| H A D | BerEncoder.java | 56 * Specify the initial bufsize. Buffer will be expanded as needed. 57 * @param bufsize The number of bytes for the buffer. 59 public BerEncoder(int bufsize) { argument 60 buf = new byte[bufsize]; 61 this.bufsize = bufsize; 416 if (bufsize - offset < len) { 417 int newsize = bufsize * BUF_GROWTH_FACTOR; 426 bufsize = newsize;
|
| H A D | Ber.java | 43 protected int bufsize; field in class:Ber
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/ |
| H A D | SimpleCharStream.java | 37 int bufsize; field in class:SimpleCharStream 63 char[] newbuffer = new char[bufsize + 2048]; 64 int newbufline[] = new int[bufsize + 2048]; 65 int newbufcolumn[] = new int[bufsize + 2048]; 71 System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin); 73 bufsize - tokenBegin, bufpos); 76 System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin); 77 System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos); 80 System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin); 81 System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize [all...] |
| /openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/ |
| H A D | vm_version_solaris_sparc.cpp | 46 size_t bufsize = sysinfo(si, &tmp, 1); local 49 guarantee(bufsize != -1, "must be supported"); 51 char* buf = (char*) malloc(bufsize); 56 if (sysinfo(si, buf, bufsize) == bufsize) { 130 size_t bufsize = sysinfo(SI_ISALIST, &tmp, 1); local 131 char* buf = (char*) malloc(bufsize); 134 if (sysinfo(SI_ISALIST, buf, bufsize) == bufsize) {
|
| /openjdk7/jdk/src/macosx/native/com/apple/resources/ |
| H A D | MacOSXResourceBundle.m | 35 GetPathFromCurrentBinary(char *buf, jint bufsize) 63 GetJREPath(char *buf, jint bufsize) 66 if (GetPathFromCurrentBinary(buf, bufsize) == JNI_TRUE) {
|
| /openjdk7/hotspot/src/share/tools/launcher/ |
| H A D | java.h | 55 GetXUsagePath(char *buf, jint bufsize); 58 GetApplicationHome(char *buf, jint bufsize);
|
| /openjdk7/jdk/src/solaris/sample/dtrace/hotspot_jni/ |
| H A D | hotspot_jni_calls_stat.d | 51 #pragma D option bufsize=16m
|
| H A D | hotspot_jni_calls_tree.d | 49 #pragma D option bufsize=16m
|
| H A D | CriticalSection.d | 58 #pragma D option bufsize=16m
|
| /openjdk7/jdk/test/java/util/zip/GZIP/ |
| H A D | Accordion.java | 56 final int bufsize = 1729; 57 final long count = bytes/bufsize;
|
| /openjdk7/jdk/src/solaris/native/sun/nio/fs/ |
| H A D | BsdNativeDispatcher.c | 88 size_t bufsize; local 115 bufsize = nentries * sizeof(struct statfs); 118 iter->buf = malloc(bufsize); 125 nentries = getfsstat(iter->buf, bufsize, MNT_WAIT);
|
| /openjdk7/jdk/src/solaris/native/java/net/ |
| H A D | net_util_md.c | 1338 int *bufsize; local 1390 int *bufsize, maxbuf; local 1432 bufsize = (int *)arg; 1433 if (*bufsize > maxbuf) { 1434 *bufsize = maxbuf; 1448 int *bufsize = (int *)arg; local 1449 if (*bufsize < 1024) { 1450 *bufsize = 1024; 1485 bufsize = (int *)arg; 1486 if (*bufsize > maxsockbu [all...] |
| /openjdk7/jdk/src/share/bin/ |
| H A D | java.h | 112 GetXUsagePath(char *buf, jint bufsize); 115 GetApplicationHome(char *buf, jint bufsize);
|
| /openjdk7/jdk/src/solaris/sample/dtrace/hotspot/ |
| H A D | method_invocation_tree.d | 58 #pragma D option bufsize=16m
|
| H A D | object_allocation_stat.d | 63 #pragma D option bufsize=16m
|