Searched refs:_buf (Results 1 - 14 of 14) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.hpp36 char* _buf; member in class:FormatBufferBase
37 inline FormatBufferBase(char* buf) : _buf(buf) {}
39 operator const char *() const { return _buf; }
58 char* buffer() { return _buf; }
73 jio_vsnprintf(_buf, bufsz, format, argp);
79 _buf[0] = '\0';
86 jio_vsnprintf(_buf, bufsz, format, argp);
92 jio_vsnprintf(_buf, bufsz, format, argp);
98 // _buf is already initialized.
99 size_t len = strlen(_buf);
[all...]
H A Devents.hpp142 return stringStream(_buf, size());
H A Ddebug.cpp98 jio_vsnprintf(_buf, RES_BUFSZ, format, argp);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DptrQueue.cpp45 _qset(qset), _buf(NULL), _index(0), _active(active),
50 if (!_perm && _buf != NULL) {
53 qset()->deallocate_buffer(_buf);
57 _buf[byte_index_to_index((int)i)] = NULL;
59 qset()->enqueue_complete_buffer(_buf);
61 _buf = NULL;
78 assert(_index == 0 || _buf != NULL, "invariant");
86 _buf[byte_index_to_index((int)_index)] = ptr;
163 if (_buf != NULL) {
177 // (_buf an
[all...]
H A DdirtyCardQueue.hpp67 void **get_buf() { return _buf;}
68 void set_buf(void **buf) {_buf = buf;}
70 void reinitialize() { _buf = 0; _sz = 0; _index = 0;}
H A DptrQueue.hpp50 void** _buf; member in class:VALUE_OBJ_CLASS_SPEC
80 void reset() { if (_buf != NULL) _index = _sz; }
103 return _buf == NULL ? 0 : _sz - _index;
107 return _buf == NULL || _sz == _index;
115 if (!b && _buf != NULL) {
117 } else if (b && _buf != NULL) {
140 return byte_offset_of(PtrQueue, _buf);
H A DsatbQueue.cpp62 void** buf = _buf;
134 assert(_buf != NULL, "pre-condition");
147 if (_buf != NULL) {
148 apply_closure_to_buffer(cl, _buf, _index, _sz);
153 if (_buf != NULL) {
154 apply_closure_to_buffer(cl, _buf, _index, _sz);
175 print(name, _buf, _index, _sz);
188 if (_buf == NULL) return;
190 oop obj = (oop)_buf[byte_index_to_index((int)i)];
H A DdirtyCardQueue.cpp50 if (_buf != NULL) {
51 res = apply_closure_to_buffer(cl, _buf, _index, _sz,
/openjdk7/hotspot/src/share/vm/adlc/
H A Dfilebuff.hpp55 char *_buf; // The buffer itself. member in class:FileBuff
83 long getoff(const char* s) { return _bufoff + (long)(s - _buf); }
H A Dfilebuff.cpp54 _buf = _bigbuf+1; // Skip sentinel
55 _bufmax = _buf; // Buffer is empty
60 _bufmax += fread(_buf, 1, _bufferSize-2, _fp->_fp); // Fill buffer & set end value
61 if (_bufmax == _buf) {
H A Dadlparse.hpp270 FileBuff &_buf; // File buffer to be parsed member in class:ADLParser
280 int linenum() { return _buf.linenum(); }
H A Dadlparse.cpp32 : _buf(buffer), _AD(archDesc),
61 fprintf(stderr,"%s: Found %d syntax error", _buf._fp->_name, _AD._syntax_errs);
66 fprintf(stderr,"%s: Found %d semantic error", _buf._fp->_name, _AD._semantic_errs);
71 fprintf(stderr,"%s: Found %d warning", _buf._fp->_name, _AD._warnings);
4694 _buf.set_linenum(line);
4949 _curline = _buf.get_line();
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DNativeUnpack.java81 private byte[] _buf = new byte[1<<14]; field in class:NativeUnpack
121 int readlen = _buf.length;
124 int nr = in.read(_buf, 0, readlen);
129 pbuf.put(_buf, 0, nr);
267 if (_buf.length < size) {
269 while (newSize < _buf.length) {
276 _buf = new byte[newSize];
278 assert(_buf.length >= size);
283 data0.get(_buf, fillp, size0);
288 data1.get(_buf, fill
[all...]
/openjdk7/jdk/src/share/native/sun/awt/giflib/
H A Ddgif_lib.c71 #define READ(_gif,_buf,_len) \
73 (size_t)((GifFilePrivateType*)_gif->Private)->Read(_gif,_buf,_len) : \
74 fread(_buf,1,_len,((GifFilePrivateType*)_gif->Private)->File))

Completed in 90 milliseconds