Searched defs:nBytes (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/font/
H A DXMap.java66 int nBytes = SINGLE_BYTE;
85 nBytes = DOUBLE_BYTE;
98 nBytes = DOUBLE_BYTE;
121 nBytes = DOUBLE_BYTE;
124 nBytes = DOUBLE_BYTE;
127 nBytes = DOUBLE_BYTE;
130 nBytes = DOUBLE_BYTE;
133 nBytes = DOUBLE_BYTE;
136 nBytes = DOUBLE_BYTE;
139 nBytes
168 XMap(String className, int minU, int maxU, int nBytes, boolean addAscii, boolean lowPartOnly) argument
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.inline.hpp97 inline size_t os::read(int fd, void *buf, unsigned int nBytes) { argument
98 return ::read(fd, buf, nBytes);
101 inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) { argument
102 return ::read(fd, buf, nBytes);
105 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) { argument
106 return ::write(fd, buf, nBytes);
H A Dos_windows.cpp4994 int os::recvfrom(int fd, char *buf, size_t nBytes, uint flags, argument
4997 return ::recvfrom(fd, buf, (int)nBytes, flags, from, fromlen);
5000 int os::recv(int fd, char* buf, size_t nBytes, uint flags) { argument
5001 return ::recv(fd, buf, (int)nBytes, flags);
5004 int os::send(int fd, char* buf, size_t nBytes, uint flags) { argument
5005 return ::send(fd, buf, (int)nBytes, flags);
5008 int os::raw_send(int fd, char* buf, size_t nBytes, uint flags) { argument
5009 return ::send(fd, buf, (int)nBytes, flags);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Clipboard.cpp225 jint nBytes = env->GetArrayLength(bytes); local
235 HENHMETAFILE hemf = ::SetEnhMetaFileBits(nBytes, lpbEmfBuffer);
252 HMETAFILE hmf = ::SetMetaFileBitsEx(nBytes - sizeof(METAFILEPICT),
286 HGLOBAL hglobal = ::GlobalAlloc(GALLOCFLG, nBytes + ((format == CF_HDROP)
301 env->GetByteArrayRegion(bytes, 0, nBytes, (jbyte *)dataout);
H A Dawt_DnDDS.cpp810 jint nBytes = env->GetArrayLength(bytes); local
813 ADSIStreamProxy *istream = new ADSIStreamProxy(this, bytes, nBytes);
829 HGLOBAL copy = ::GlobalAlloc(GALLOCFLG, nBytes +
850 env->GetByteArrayRegion(bytes, 0, nBytes, (jbyte *)dataout);
867 HENHMETAFILE hemf = ::SetEnhMetaFileBits(nBytes, lpbEmfBuffer);
890 HMETAFILE hmf = ::SetMetaFileBitsEx(nBytes - sizeof(METAFILEPICT),
975 jint nBytes = env->GetArrayLength(bytes); local
983 HRESULT res = pmedium->pstm->Write((const void *)bBytes, (ULONG)nBytes,
999 if (nBytes + ((matchedFormatEtc.cfFormat == CF_HDROP)
1017 env->GetByteArrayRegion(bytes, 0, nBytes, (jbyt
[all...]
H A Dawt_Font.cpp1458 DWORD nBytes = local
1460 DASSERT(nBytes != GDI_ERROR);
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_impl.c311 static int readFile(void* pStream, void* pData, int nBytes) { argument
313 return fread(pData, 1, nBytes, f);
331 static int readMem(void* pStream, void* pData, int nBytes) { argument
334 if (nBytes > pSrcEnd - pSrc) {
335 nBytes = pSrcEnd - pSrc;
337 if (nBytes>0) {
338 memcpy(pData, pSrc, nBytes);
339 pSrc += nBytes;
342 return nBytes;
/openjdk7/jdk/src/solaris/transport/socket/
H A Dsocket_md.c88 dbgsysRecvFrom(int fd, char *buf, int nBytes, argument
92 rv = recvfrom(fd, buf, nBytes, flags, from, fromlen);
110 dbgsysRecv(int fd, char *buf, int nBytes, int flags) { argument
113 rv = recv(fd, buf, nBytes, flags);
120 dbgsysSend(int fd, char *buf, int nBytes, int flags) { argument
123 rv = send(fd, buf, nBytes, flags);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp177 inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) { argument
179 RESTARTABLE( (size_t) ::read(fd, buf, (size_t) nBytes), res);
183 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) { argument
185 RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
201 inline int os::recv(int fd, char* buf, size_t nBytes, uint flags) { argument
202 RESTARTABLE_RETURN_INT(::recv(fd, buf, nBytes, flags));
205 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) { argument
206 RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, flags));
209 inline int os::raw_send(int fd, char* buf, size_t nBytes, uint flags) { argument
210 return os::send(fd, buf, nBytes, flag
258 recvfrom(int fd, char* buf, size_t nBytes, uint flags, sockaddr* from, socklen_t* fromlen) argument
[all...]
H A Dos_bsd.cpp3591 size_t os::read(int fd, void *buf, unsigned int nBytes) { argument
3592 RESTARTABLE_RETURN_INT(::read(fd, buf, nBytes));
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp181 inline size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) { argument
183 RESTARTABLE( (size_t) ::read(fd, buf, (size_t) nBytes), res);
187 inline size_t os::write(int fd, const void *buf, unsigned int nBytes) { argument
189 RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
205 inline int os::recv(int fd, char* buf, size_t nBytes, uint flags) { argument
206 RESTARTABLE_RETURN_INT(::recv(fd, buf, nBytes, flags));
209 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) { argument
210 RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, flags));
213 inline int os::raw_send(int fd, char* buf, size_t nBytes, uint flags) { argument
214 return os::send(fd, buf, nBytes, flag
263 recvfrom(int fd, char* buf, size_t nBytes, uint flags, sockaddr* from, socklen_t* fromlen) argument
[all...]
H A Dos_linux.cpp3512 size_t os::read(int fd, void *buf, unsigned int nBytes) { argument
3513 return ::read(fd, buf, nBytes);
/openjdk7/jdk/src/windows/transport/socket/
H A Dsocket_md.c179 dbgsysRecvFrom(int fd, char *buf, int nBytes, argument
181 return recvfrom(fd, buf, nBytes, flags, from, fromlen);
191 dbgsysRecv(int fd, char *buf, int nBytes, int flags) { argument
192 return recv(fd, buf, nBytes, flags);
196 dbgsysSend(int fd, char *buf, int nBytes, int flags) { argument
197 return send(fd, buf, nBytes, flags);
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmspack.c3227 cmsUInt32Number CMSEXPORT cmsFormatterForColorspaceOfProfile(cmsHPROFILE hProfile, cmsUInt32Number nBytes, cmsBool lIsFloat) argument
3236 return FLOAT_SH(Float) | COLORSPACE_SH(ColorSpaceBits) | BYTES_SH(nBytes) | CHANNELS_SH(nOutputChans);
3240 cmsUInt32Number CMSEXPORT cmsFormatterForPCSOfProfile(cmsHPROFILE hProfile, cmsUInt32Number nBytes, cmsBool lIsFloat) argument
3249 return FLOAT_SH(Float) | COLORSPACE_SH(ColorSpaceBits) | BYTES_SH(nBytes) | CHANNELS_SH(nOutputChans);
H A Dcmstypes.c4615 cmsUInt16Number nChannels, nElems, nBytes; local
4627 if (!_cmsReadUInt16Number(io, &nBytes)) goto Error;
4630 if (nElems == 256 && nBytes == 1 && SizeOfTag == 1576)
4631 nBytes = 2;
4641 switch (nBytes) {
4661 cmsSignalError(self->ContextID, cmsERROR_UNKNOWN_EXTENSION, "Unsupported bit depth for VCGT '%d'", nBytes * 8);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp3647 size_t os::read(int fd, void *buf, unsigned int nBytes) { argument
3648 INTERRUPTIBLE_RETURN_INT_VM(::read(fd, buf, nBytes), os::Solaris::clear_interrupted);
3651 size_t os::restartable_read(int fd, void *buf, unsigned int nBytes) { argument
3652 INTERRUPTIBLE_RETURN_INT(::read(fd, buf, nBytes), os::Solaris::clear_interrupted);
6714 size_t os::write(int fd, const void *buf, unsigned int nBytes) { argument
6715 INTERRUPTIBLE_RETURN_INT(::write(fd, buf, nBytes), os::Solaris::clear_interrupted);
6726 int os::recv(int fd, char* buf, size_t nBytes, uint flags) { argument
6727 INTERRUPTIBLE_RETURN_INT((int)::recv(fd, buf, nBytes, flags), os::Solaris::clear_interrupted);
6730 int os::send(int fd, char* buf, size_t nBytes, uint flags) { argument
6731 INTERRUPTIBLE_RETURN_INT((int)::send(fd, buf, nBytes, flag
6734 raw_send(int fd, char* buf, size_t nBytes, uint flags) argument
6804 recvfrom(int fd, char* buf, size_t nBytes, uint flags, sockaddr* from, socklen_t* fromlen) argument
[all...]

Completed in 148 milliseconds