Searched refs:nbytes (Results 51 - 60 of 60) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DByteInterleavedRaster.java632 int nbytes = width*pixelStride;
635 data, dstOffset, nbytes);
/openjdk7/jdk/src/share/javavm/export/
H A Djvm.h1145 * nbytes the number of bytes to read.
1150 JVM_Read(jint fd, char *buf, jint nbytes);
1157 * nbytes the number of bytes to write.
1162 JVM_Write(jint fd, char *buf, jint nbytes);
/openjdk7/jdk/src/share/back/
H A DthreadControl.c1148 newArray(jint length, size_t nbytes) argument
1151 ptr = jvmtiAllocate(length*(jint)nbytes);
1153 (void)memset(ptr, 0, length*nbytes);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp650 static int recvfrom(int fd, char* buf, size_t nbytes, uint flags,
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.h1290 * nbytes the number of bytes to read.
1295 JVM_Read(jint fd, char *buf, jint nbytes);
1302 * nbytes the number of bytes to write.
1307 JVM_Write(jint fd, char *buf, jint nbytes);
H A Djvm.cpp2574 JVM_LEAF(jint, JVM_Read(jint fd, char *buf, jint nbytes))
2578 return (jint)os::restartable_read(fd, buf, nbytes);
2582 JVM_LEAF(jint, JVM_Write(jint fd, char *buf, jint nbytes))
2586 return (jint)os::write(fd, buf, nbytes);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DBandStructure.java1361 long nbytes = outputCounter.getCount();
1362 Utils.log.info("Wrote total of "+nbytes+" bytes.");
1363 assert(nbytes == archiveSize0+archiveSize1);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDS.cpp1609 ULONG nbytes = pcbRead->LowPart = (ULONG)(ovrflow ? rem : cb.LowPart);
1611 HRESULT res = pstm->Write((const void *)(m_buffer + m_off), nbytes, &written);
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_core.c537 static bool core_handle_prstatus(struct ps_prochandle* ph, const char* buf, size_t nbytes) { argument
539 // assert(nbytes == sizeof(prstaus_t), "size mismatch on prstatus_t");
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_core.c531 static bool core_handle_prstatus(struct ps_prochandle* ph, const char* buf, size_t nbytes) { argument
533 // assert(nbytes == sizeof(prstaus_t), "size mismatch on prstatus_t");

Completed in 86 milliseconds

123