Searched refs:byteCount (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/macosx/native/apple/applescript/
H A DAS_NS_ConversionUtils.m159 + (id) jaseNumberWithSignedIntP:(void *)int_p byteCount:(int)bytes;
160 + (id) jaseNumberWithUnsignedIntP:(void *)int_p byteCount:(int)bytes;
161 + (id) jaseNumberWithFloatP:(void *)float_p byteCount:(int)bytes;
330 -(id)jaseDescriptorValueWithFloatP:(void *)float_p byteCount:(int)bytes {
359 -(id)jaseDescriptorValueWithSignedIntP:(void *)int_p byteCount:(int)bytes {
377 return [self jaseDescriptorValueWithFloatP:&val byteCount:sizeof(val)];
380 -(id)jaseDescriptorValueWithUnsignedIntP:(void *)int_p byteCount:(int)bytes {
394 return [self jaseDescriptorValueWithFloatP:&val byteCount:sizeof(val)];
410 return [self jaseDescriptorValueWithSignedIntP:&val byteCount:sizeof(val)];
415 return [self jaseDescriptorValueWithSignedIntP:&val byteCount
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DBerEncoder.java222 * Put an <CODE>ANY</CODE> value. Only the first <CODE>byteCount</CODE> are considered.
225 * @param byteCount The number of bytes of the encoding.
228 public void putAny(byte[] s, int byteCount) { argument
229 java.lang.System.arraycopy(s,0,bytes,start-byteCount,byteCount);
230 start -= byteCount;
231 // for (int i = byteCount - 1 ; i >= 0 ; i--) {
H A DSnmpMessage.java148 public void decodeMessage(byte[] inputBytes, int byteCount) argument
151 BerDecoder bdec = new BerDecoder(inputBytes/*, byteCount */) ; // FIXME
H A DSnmpMsg.java137 public abstract void decodeMessage(byte[] inputBytes, int byteCount) argument
H A DSnmpV3Message.java175 public void decodeMessage(byte[] inputBytes, int byteCount) argument
/openjdk7/corba/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java65 int byteCount = finput.available();
66 if ( byteCount <= 0 ) {
70 contents = new byte[byteCount];
72 if ( byteCount != bytesRead ) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/internal/
H A DSnmpIncomingRequest.java117 int byteCount,
116 decodeMessage(byte[] inputBytes, int byteCount, InetAddress address, int port) argument
H A DSnmpIncomingResponse.java94 int byteCount,
93 decodeMessage(byte[] inputBytes, int byteCount, InetAddress address, int port) argument
/openjdk7/jdk/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java65 int byteCount = finput.available();
66 if ( byteCount <= 0 ) {
70 contents = new byte[byteCount];
72 if ( byteCount != bytesRead ) {
/openjdk7/jdk/make/tools/src/build/tools/compileproperties/
H A DCompileProperties.java124 int byteCount = finput.available();
125 if ( byteCount <= 0 ) {
129 contents = new byte[byteCount];
131 if ( byteCount != bytesRead ) {
/openjdk7/langtools/make/tools/CompileProperties/
H A DCompileProperties.java160 int byteCount = finput.available();
161 if ( byteCount <= 0 ) {
165 contents = new byte[byteCount];
167 if ( byteCount != bytesRead ) {
/openjdk7/jdk/src/share/back/
H A DVirtualMachineImpl.c398 int byteCount; local
407 byteCount = inStream_readInt(in);
412 if ( byteCount <= 0 ) {
417 bytes = (unsigned char *)jvmtiAllocate(byteCount);
423 (void)inStream_readBytes(in, byteCount, (jbyte *)bytes);
430 classDefs[i].class_byte_count = byteCount;
/openjdk7/hotspot/agent/src/os/bsd/
H A DMacosxDebuggerLocal.m159 uint byteCount;
178 &pages[i], &byteCount);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DInterOperableNamingImpl.java386 int byteCount = 0;
/openjdk7/jdk/src/macosx/native/sun/font/
H A DCGGlyphImages.m352 size_t byteCount = bytesPerRow * height;
359 canvas->image->data = (void *)calloc(byteCount, sizeof(UInt32));
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_io.c1866 write_raw_from_file(int fd, jlong byteCount, void (*raw_interface)(void *,int)) argument
1881 left = (int)byteCount;

Completed in 79 milliseconds