Searched refs:buf (Results 126 - 150 of 1249) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeLookupswitch.java81 StringBuffer buf = new StringBuffer();
82 buf.append("lookupswitch");
83 buf.append(spaces);
84 buf.append("default: ");
85 buf.append(Integer.toString(bci() + defaultOffset()));
86 buf.append(comma);
90 buf.append("case ");
91 buf.append(Integer.toString(pair.match()));
92 buf.append(':');
93 buf
[all...]
H A DBytecodeTableswitch.java87 StringBuffer buf = new StringBuffer();
88 buf.append("tableswitch");
89 buf.append(spaces);
90 buf.append("default: ");
91 buf.append(Integer.toString(bci() + defaultOffset()));
92 buf.append(comma);
97 buf.append("case ");
98 buf.append(Integer.toString(lo + i));
99 buf.append(':');
100 buf
[all...]
H A DBytecodeInvoke.java119 StringBuffer buf = new StringBuffer();
120 buf.append(getJavaBytecodeName());
121 buf.append(spaces);
122 buf.append('#');
123 buf.append(Integer.toString(indexForFieldOrMethod()));
125 buf.append('(');
126 buf.append(Integer.toString(getSecondaryIndex()));
127 buf.append(')');
129 buf.append(" [Method ");
132 buf
[all...]
H A DBytecodeIinc.java69 StringBuffer buf = new StringBuffer();
70 buf.append("iinc");
71 buf.append(spaces);
72 buf.append('#');
73 buf.append(Integer.toString(getLocalVarIndex()));
74 buf.append(" by ");
75 buf.append(Integer.toString(getIncrement()));
76 return buf.toString();
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.hpp41 virtual bool demangle(const char* symbol, char* buf, int buflen);
42 virtual bool decode(address pc, char* buf, int buflen, int* offset,
44 virtual bool decode(address pc, char* buf, int buflen, int* offset, argument
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder_elf.hpp44 bool demangle(const char* symbol, char *buf, int buflen);
45 bool decode(address addr, char *buf, int buflen, int* offset, const char* filepath = NULL);
46 bool decode(address addr, char *buf, int buflen, int* offset, const void *base) { argument
H A Ddecoder.hpp48 virtual bool decode(address pc, char* buf, int buflen, int* offset,
50 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) = 0;
53 virtual bool demangle(const char* symbol, char* buf, int buflen) = 0;
82 virtual bool decode(address pc, char* buf, int buflen, int* offset, argument
87 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) { argument
91 virtual bool demangle(const char* symbol, char* buf, int buflen) { argument
103 static bool decode(address pc, char* buf, int buflen, int* offset, const char* modulepath = NULL);
104 static bool decode(address pc, char* buf, int buflen, int* offset, const void* base);
105 static bool demangle(const char* symbol, char* buf, int buflen);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DDatatypeWriter.java57 void print(DT dt, NamespaceResolver resolver, StringBuilder buf); argument
66 public void print(String s, NamespaceResolver resolver, StringBuilder buf) {
67 buf.append(s);
74 public void print(Integer i, NamespaceResolver resolver, StringBuilder buf) {
75 buf.append(i);
82 public void print(Float f, NamespaceResolver resolver, StringBuilder buf) {
83 buf.append(f);
90 public void print(Double d, NamespaceResolver resolver, StringBuilder buf) {
91 buf.append(d);
98 public void print(QName qn, NamespaceResolver resolver, StringBuilder buf) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DBerEncoder.java44 // When buf is full, expand its size by the following factor.
60 buf = new byte[bufsize];
74 buf[--offset] = 0;
102 return buf;
163 buf[seqOffset[curSeqIndex]] = (byte) len;
166 buf[seqOffset[curSeqIndex]] = (byte) 0x81;
167 buf[seqOffset[curSeqIndex] + 1] = (byte) len;
169 buf[seqOffset[curSeqIndex]] = (byte) 0x82;
170 buf[seqOffset[curSeqIndex] + 1] = (byte) (len >> 8);
171 buf[seqOffse
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/org/relaxng/datatype/
H A DDatatypeStreamingValidator.java57 void addCharacters( char[] buf, int start, int len ); argument
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfoFile.java539 char[] buf = new char[] { 'G', 'M', 'T', sign, '0', '0', ':', '0', '0' };
541 buf[4] += hh / 10;
543 buf[5] += hh % 10;
545 buf[7] += mm / 10;
546 buf[8] += mm % 10;
548 return new String(buf);
596 byte[] buf = readZoneInfoFile(getFileName(id));
597 if (buf == null) {
602 int filesize = buf.length;
613 if (buf[inde
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DInputRecord.java121 return buf[0];
155 box.decrypt(buf, headerSize, cipheredLength, tagLen);
195 buf, headerSize, contentLen, signer, false)) {
214 if (remainingLen > buf.length) {
224 checkMacTags(contentType(), buf, 0, remainingLen, signer, true);
329 hashInternal(buf, lastHashed, len);
373 System.arraycopy(buf, pos, buf, headerSize, len);
381 * Grow "buf" if needed
384 if (buf
685 writeBuffer(OutputStream s, byte [] buf, int off, int len) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DReadAllStream.java112 byte[] buf = new byte[8192];
114 while((len=in.read(buf)) != -1) {
115 fileOut.write(buf, 0, len);
148 private void add(byte[] buf, int len) { argument
150 tail = tail.createNext(buf, 0, len);
152 head = tail = new Chunk(buf, 0, len);
168 byte[] buf = new byte[8192];
169 int read = fill(in, buf);
172 add(buf, read);
173 if (read != buf
180 fill(InputStream in, byte[] buf) argument
224 final byte[] buf; field in class:ReadAllStream.MemoryStream.Chunk
228 Chunk(byte[] buf, int off, int len) argument
234 createNext(byte[] buf, int off, int len) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DContext.java97 RenderBuffer buf = rq.getBuffer();
99 buf.putInt(SET_SCRATCH_SURFACE);
100 buf.putInt(d3dc.getDevice().getScreen());
119 buf.putInt(SAVE_STATE);
135 buf.putInt(RESTORE_STATE);
173 StringBuffer buf = new StringBuffer(super.toString());
175 buf.append("CAPS_LCD_SHADER|");
178 buf.append("CAPS_BIOP_SHADER|");
181 buf.append("CAPS_AA_SHADER|");
184 buf
[all...]
/openjdk7/jdk/test/java/awt/image/
H A DIncorrectSampleMaskTest.java87 DataBuffer buf = createDataBuffer(dataType);
89 WritableRaster wr = Raster.createWritableRaster(sm, buf, null);
98 byte[] buf = new byte[w * h];
99 return new DataBufferByte(buf, buf.length);
102 short[] buf = new short[w * h];
103 return new DataBufferUShort(buf, buf.length);
106 int[] buf = new int[w * h];
107 return new DataBufferInt(buf, bu
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DSerializerTraceWriter.java68 private byte buf[]; field in class:SerializerTraceWriter
83 buf = new byte[size + 3];
122 chars[i] = (char) buf[i];
191 buf[count++] = (byte) (c);
195 buf[count++] = (byte) (0xc0 + (c >> 6));
196 buf[count++] = (byte) (0x80 + (c & 0x3f));
200 buf[count++] = (byte) (0xe0 + (c >> 12));
201 buf[count++] = (byte) (0x80 + ((c >> 6) & 0x3f));
202 buf[count++] = (byte) (0x80 + (c & 0x3f));
250 buf[coun
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJNarrowedClass.java78 StringBuilder buf = new StringBuilder();
79 buf.append(basis.name());
80 buf.append('<');
86 buf.append(',');
87 buf.append(c.name());
89 buf.append('>');
90 return buf.toString();
94 StringBuilder buf = new StringBuilder();
95 buf.append(basis.fullName());
96 buf
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DDiagnosticSource.java83 buf = null;
99 if (buf[bp] == '\t' && expandTabs) {
109 buf = null;
121 while (lineEnd < bufLen && buf[lineEnd] != CR && buf[lineEnd] != LF)
125 return new String(buf, lineStart, lineEnd - lineStart);
127 buf = null;
150 if (buf == null && refBuf != null)
151 buf = refBuf.get();
153 if (buf
208 protected char[] buf; field in class:DiagnosticSource
[all...]
/openjdk7/jdk/src/share/native/java/io/
H A Dio_util.c81 char *buf = NULL; local
97 buf = malloc(len);
98 if (buf == NULL) {
103 buf = stackBuf;
111 nread = (jint)IO_Read(fd, buf, len);
113 (*env)->SetByteArrayRegion(env, bytes, off, nread, (jbyte *)buf);
123 if (buf != stackBuf) {
124 free(buf);
157 char *buf = NULL; local
173 buf
216 char buf[256]; local
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCSpecialLoadInstruction.java64 StringBuffer buf = new StringBuffer();
65 buf.append(getName());
66 buf.append(spaces);
67 buf.append(addr);
68 buf.append(comma);
70 buf.append("creg" + cregNum);
72 buf.append(getSpecialRegisterName(specialReg));
74 return buf.toString();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86FPArithmeticInstruction.java45 StringBuffer buf = new StringBuffer();
46 buf.append(getPrefixString());
47 buf.append(getName());
48 buf.append(spaces);
50 buf.append(getOperandAsString(operand1));
53 buf.append(comma);
54 buf.append(getOperandAsString(operand2));
56 return buf.toString();
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DUnsyncByteArrayOutputStream.java38 private byte[] buf; field in class:UnsyncByteArrayOutputStream
43 buf = (byte[])bufCache.get();
51 System.arraycopy(arg0, 0, buf, pos, arg0.length);
60 System.arraycopy(arg0, arg1, buf, pos, arg2);
69 buf[pos++] = (byte)arg0;
74 System.arraycopy(buf, 0, result, 0, pos);
88 System.arraycopy(buf, 0, newBuf, 0, pos);
89 buf = newBuf;
/openjdk7/hotspot/src/os/linux/vm/
H A Ddecoder_linux.cpp30 bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) { argument
35 // Don't pass buf to __cxa_demangle. In case of the 'buf' is too small,
37 // may use different malloc/realloc mechanism that allocates 'buf'.
39 jio_snprintf(buf, buflen, "%s", result);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DPcdata.java70 public void writeTo(char[] buf, int start) { argument
71 toString().getChars(0,length(),buf,start);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DGifDataContentHandler.java80 byte buf[] = new byte[1024];
82 while ((count = is.read(buf, pos, buf.length - pos)) != -1) {
84 if (pos >= buf.length) {
85 int size = buf.length;
91 System.arraycopy(buf, 0, tbuf, 0, pos);
92 buf = tbuf;
96 return tk.createImage(buf, 0, pos);

Completed in 91 milliseconds

1234567891011>>