Searched refs:wbuf (Results 1 - 6 of 6) sorted by relevance

/openjdk7/langtools/test/tools/javac/6330997/
H A DT6330997.java76 ByteBuffer wbuf = ByteBuffer.allocate(2);
77 wbuf.putShort(0, (short)(rbuf.getShort(0) + delta));
78 fc.write(wbuf, 6);
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DInflaterOutputStream.java52 private final byte[] wbuf = new byte[1]; field in class:InflaterOutputStream
203 wbuf[0] = (byte) b;
204 write(wbuf, 0, 1);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_TextComponent.cpp402 LPTSTR wbuf; local
406 wbuf = new TCHAR[wlen + 1];
407 GetText(wbuf, wlen + 1);
409 wlen = RemoveCR(wbuf);
413 if (wbuf[cur] == _T('\r') && wbuf[cur + 1] == _T('\n')) {
418 delete[] wbuf;
427 LPTSTR wbuf; local
431 wbuf = new TCHAR[wlen + 1];
432 GetText(wbuf, wle
[all...]
H A Dawt_TextArea.cpp631 LPTSTR wbuf; local
635 wbuf = new TCHAR[wlen + 1];
636 GetText(wbuf, wlen + 1);
638 wlen = RemoveCR(wbuf);
642 if (wbuf[cur] == _T('\r') && wbuf[cur + 1] == _T('\n')) {
648 delete[] wbuf;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java241 byte[] wbuf = new byte[1];
242 wbuf[0] = (byte)b;
243 write(wbuf, 0, 1);
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.cpp104 address reg_win = (address)&win->wbuf[i];

Completed in 118 milliseconds