Searched defs:buffer (Results 326 - 350 of 352) sorted by relevance

<<1112131415

/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java963 transient int[] buffer; field in class:Pattern
1655 buffer = new int[32];
1690 buffer = null;
2197 return newSingle(buffer[0]);
2199 return newSlice(buffer, first, hasSupplementary);
2204 if (len >= buffer.length) {
2206 System.arraycopy(buffer, 0, tmp, 0, len);
2207 buffer = tmp;
2209 buffer[len] = ch;
3840 int[] buffer; field in class:Pattern.SliceNode
5282 int[] buffer; field in class:Pattern.BnM
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.hpp65 static void set_value( oop string, typeArrayOop buffer) { argument
67 string->obj_field_put(value_offset, (oop)buffer);
H A DclassFileParser.cpp247 assert(utf8_buffer != NULL, "null utf8 buffer");
1648 int ClassFileParser::skip_annotation(u1* buffer, int limit, int index) { argument
1653 int nmem = Bytes::get_Java_u2(buffer+index-2);
1656 index = skip_annotation_value(buffer, limit, index);
1662 int ClassFileParser::skip_annotation_value(u1* buffer, int limit, int index) { argument
1672 u1 tag = buffer[index-1];
1684 int nval = Bytes::get_Java_u2(buffer+index-2);
1686 index = skip_annotation_value(buffer, limit, index);
1691 index = skip_annotation(buffer, limit, index);
1701 void ClassFileParser::parse_annotations(u1* buffer, in argument
4267 verify_legal_utf8(const unsigned char* buffer, int length, TRAPS) argument
[all...]
H A DjavaClasses.cpp187 typeArrayOop buffer; local
189 buffer = oopFactory::new_permanent_charArray(length, CHECK_NH);
191 buffer = oopFactory::new_charArray(length, CHECK_NH);
196 set_value(obj, buffer);
207 typeArrayOop buffer = value(h_obj()); local
209 buffer->char_at_put(index, unicode[index]);
327 // Create new UNICODE buffer. Must handlize value because GC
1157 // Print stack trace element to resource allocated buffer
1173 // Allocate temporary buffer with extra space for formatting and line number
1176 // Print stack trace line in buffer
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp1933 void nmethod::copy_scopes_data(u_char* buffer, int size) { argument
1935 memcpy(scopes_data_begin(), buffer, size); local
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectorPolicy.cpp186 char buffer[128]; local
187 jio_snprintf(buffer, sizeof(buffer), "%sPLABSize should be at most "SIZE_FORMAT,
189 vm_exit_during_initialization(buffer);
259 char buffer[256]; local
260 jio_snprintf(buffer, 256,
264 vm_exit_during_initialization(buffer);
1377 static char buffer[64]; local
1380 sprintf(buffer, "%7.2lfMB", mbs);
1381 return buffer;
[all...]
H A DconcurrentMark.cpp3554 oop buffer[global_stack_transfer_size]; local
3559 buffer[n] = obj;
3568 if (!_cm->mark_stack_push(buffer, n)) {
3596 oop buffer[global_stack_transfer_size]; local
3598 _cm->mark_stack_pop(buffer, global_stack_transfer_size, &n);
3610 bool success = _task_queue->push(buffer[i]);
3741 gclog_or_tty->print_cr("[%d] processed an SATB buffer", _task_id);
3750 gclog_or_tty->print_cr("[%d] processed an SATB buffer", _task_id);
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp201 // area if a buffer is not provided by the caller.
750 CompressedLineNumberWriteStream(u_char* buffer, int initial_size) : CompressedWriteStream(buffer, initial_size), _bci(0), _line(0) {} argument
799 CompressedLineNumberReadStream(u_char* buffer);
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp31 ADLParser::ADLParser(FileBuff& buffer, ArchDesc& archDesc) argument
32 : _buf(buffer), _AD(archDesc),
36 _curline = _ptr = NULL; // No pointers into buffer yet
90 // Iterate over the lines in the file buffer parsing Level 1 objects
4263 // Looks for an identifier in the buffer, and turns it into a null terminated
4264 // string(still inside the file buffer). Returns a pointer to the string or
4327 // Looks for an identifier in the buffer, and returns a duplicate
4342 // Looks for an identifier in the buffer, or a parenthesized expression.
4364 // Leave nil terminator in buffer
4403 // given a pointer into a line of the buffer
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp2169 char buffer[JVM_MAXPATHLEN]; local
2189 os::dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(), agent);
2190 library = os::dll_load(buffer, ebuf, sizeof ebuf);
2194 os::dll_build_name(buffer, sizeof(buffer), ns, agent);
2195 library = os::dll_load(buffer, ebuf, sizeof ebuf);
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp183 char buffer[bufsz]; local
191 jio_snprintf(buffer, bufsz, "1." UINT32_FORMAT, spec_version);
196 new SystemProperty("java.vm.specification.version", buffer, false));
261 assert(version != NULL, "Must provide a version buffer");
661 // CommandLineFlags made its own copy, so I must delete my own temp. buffer.
1626 char buffer[1024]; local
1627 sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
1628 add_property(buffer);
2819 char buffer[256]; local
2820 strcpy(buffer, "jav
2849 char buffer[OPTION_BUFFER_SIZE]; local
2858 "Picked up %s: %s\\n", name, buffer); local
[all...]
H A DsharedRuntime.cpp2421 BufferBlob* buf = buffer_blob(); // the temporary code buffer in CodeCache
2423 CodeBuffer buffer(buf);
2425 buffer.insts()->initialize_shared_locs((relocInfo*)buffer_locs,
2427 MacroAssembler _masm(&buffer);
2439 assert(shared_entry->compare_code(buf->code_begin(), buffer.insts_size(), total_args_passed, sig_bt),
2445 entry->save_code(buf->code_begin(), buffer.insts_size(), total_args_passed, sig_bt);
2450 B = AdapterBlob::create(&buffer);
2451 NOT_PRODUCT(insts_size = buffer.insts_size());
2536 void AdapterHandlerEntry::save_code(unsigned char* buffer, int length, int total_args_passed, BasicType* sig_bt) { argument
2539 memcpy(_saved_code, buffer, lengt
2546 compare_code(unsigned char* buffer, int length, int total_args_passed, BasicType* sig_bt) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.cpp710 * Note: the buffer MUST be unsigned, or VC++ will sign
713 unsigned char* buffer = NULL; local
716 buffer = (unsigned char *)
718 int buflen = (buffer[0] << 24) | (buffer[1] << 16) |
719 (buffer[2] << 8) | buffer[3];
727 char* offsetBuffer = (char *)(buffer + 4);
738 if (buffer != NULL) {
739 env->ReleasePrimitiveArrayCritical(convertedBytes, buffer,
[all...]
H A Dawt_Window.cpp2291 TCHAR *buffer = new TCHAR[length + 1]; local
2292 env->GetStringRegion(title, 0, length, reinterpret_cast<jchar*>(buffer));
2293 buffer[length] = L'\0';
2294 VERIFY(::SetWindowText(w->GetHWnd(), buffer));
2295 delete[] buffer;
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c443 cmsBool BuildAbsolutePath(const char *relPath, const char *basePath, char *buffer, cmsUInt32Number MaxLen) argument
451 strncpy(buffer, relPath, MaxLen);
452 buffer[MaxLen-1] = 0;
457 strncpy(buffer, basePath, MaxLen);
458 buffer[MaxLen-1] = 0;
460 tail = strrchr(buffer, DIR_CHAR);
463 len = (cmsUInt32Number) (tail - buffer);
2684 const char* CMSEXPORT cmsIT8GetPatchName(cmsHANDLE hIT8, int nPatch, char* buffer) argument
2696 if (!buffer) return Data;
2698 strncpy(buffer, Dat
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp490 void LIRGenerator::nio_range_check(LIR_Opr buffer, LIR_Opr index, LIR_Opr result, CodeEmitInfo* info) { argument
493 cmp_mem_int(lir_cond_belowEqual, buffer, java_nio_Buffer::limit_offset(), index->as_jint(), info);
496 cmp_reg_mem(lir_cond_aboveEqual, index, buffer,
1831 // the buffer is non-null (because checkIndex is package-private and
1832 // only called from within other methods in the buffer).
2188 // the value that is being returned in an SATB log buffer.
2658 // to the OSR buffer.
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java82 public void putValueInBuffer(final ByteBuffer buffer) { argument
83 buffer.putDouble(doubleValue);
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c1810 (JNIEnv *env, jclass clazz, jlong display, jlong buffer)
1813 return XdbeDeallocateBackBufferName((Display*) jlong_to_ptr(display), (XdbeBackBuffer) buffer);
1809 Java_sun_awt_X11_XlibWrapper_XdbeDeallocateBackBufferName(JNIEnv *env, jclass clazz, jlong display, jlong buffer) argument
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c715 VerifyClassForMajorVersion(JNIEnv *env, jclass cb, char *buffer, jint len, argument
731 context->message = buffer;
860 VerifyClass(JNIEnv *env, jclass cb, char *buffer, jint len) argument
867 return VerifyClassForMajorVersion(env, cb, buffer, len,
1976 char buffer[257]; /* for holding manufactured argument lists */ local
1996 char *ip = buffer;
2007 stack_operands = buffer;
2022 char *ip = buffer;
2036 if (ip >= buffer + sizeof(buffer)
2645 char buffer[5], *p; /* actually [2] is big enough */ local
2862 int buffer[2]; /* default value for successors */ local
3718 char *buffer = buffer_space; local
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXlibWrapper.java489 static native int XdbeDeallocateBackBufferName(long display, long buffer); argument
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp3612 Node* buffer = __ load(__ ctrl(), buffer_adr, TypeRawPtr::NOTNULL, T_ADDRESS, Compile::AliasIdxRaw); local
3620 // Now get the buffer location we will log the previous value into and store it
3621 Node *log_addr = __ AddP(no_base, buffer, next_index);
3628 // logging buffer is full, call the runtime
3648 Node* buffer,
3662 Node* log_addr = __ AddP(no_base, buffer, next_index);
3727 Node* buffer = __ load(__ ctrl(), buffer_adr, TypeRawPtr::NOTNULL, T_ADDRESS, Compile::AliasIdxRaw); local
3761 g1_mark_card(ideal, card_adr, oop_store, alias_idx, index, index_adr, buffer, tf);
3767 g1_mark_card(ideal, card_adr, oop_store, alias_idx, index, index_adr, buffer, tf);
3642 g1_mark_card(IdealKit& ideal, Node* card_adr, Node* oop_store, uint oop_alias_idx, Node* index, Node* index_adr, Node* buffer, const TypeFunc* tf) argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp589 // Ring buffer jumps
1756 char buffer[64]; local
1759 snprintf(buffer, sizeof(buffer), "verify_oop at %d", offset());
1760 block_comment(buffer);
4336 // Load the index into the SATB buffer. PtrQueue::_index is a size_t
4369 // We need the value of O0 above (for the write into the buffer), so we
4551 // Load the index into the update buffer. PtrQueue::_index is
4574 // We need the value of O3 above (for the write into the buffer), so we
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp832 // access or because of reading/writing non-exist memory (e.g. buffer
882 // gives us a one-page buffer if alloca() allocates slightly more memory.
1898 void os::dll_build_name(char* buffer, size_t buflen, argument
1903 // Quietly truncate on buffer overflow. Should be an error.
1905 *buffer = '\0';
1910 snprintf(buffer, buflen, JNI_LIB_PREFIX "%s" JNI_LIB_SUFFIX, fname);
1919 snprintf(buffer, buflen, "%s/" JNI_LIB_PREFIX "%s" JNI_LIB_SUFFIX,
1921 if (file_exists(buffer)) {
1935 snprintf(buffer, buflen, "%s/" JNI_LIB_PREFIX "%s" JNI_LIB_SUFFIX, pname, fname);
2508 assert(false, "must use a large-enough buffer");
6070 get_core_path(char* buffer, size_t bufferSize) argument
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp706 // access or because of reading/writing non-exist memory (e.g. buffer
756 // gives us a one-page buffer if alloca() allocates slightly more memory.
1660 void os::dll_build_name(char* buffer, size_t buflen, argument
1665 // Quietly truncate on buffer overflow. Should be an error.
1667 *buffer = '\0';
1672 snprintf(buffer, buflen, "lib%s.so", fname);
1681 snprintf(buffer, buflen, "%s/lib%s.so", pelements[i], fname);
1682 if (file_exists(buffer)) {
1696 snprintf(buffer, buflen, "%s/lib%s.so", pname, fname);
2331 assert(false, "must use a large-enough buffer");
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp715 bool os::getenv(const char* name, char* buffer, int len) { argument
719 if (len > 0) buffer[0] = 0; // return a null string
722 strcpy( buffer, val );
846 // determine search path count and required buffer size
851 // allocate new buffer and initialize
943 // callee copies into its own buffer
1899 void os::dll_build_name(char* buffer, size_t buflen, argument
1903 // Quietly truncate on buffer overflow. Should be an error.
1905 *buffer = '\0';
1910 snprintf(buffer, bufle
6834 get_core_path(char* buffer, size_t bufferSize) argument
[all...]

Completed in 323 milliseconds

<<1112131415