Searched refs:get_byte (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/opt/
H A DMethodAccessor_Byte.java44 return ((Bean)bean).get_byte();
H A DBean.java59 public byte get_byte() { throw new UnsupportedOperationException(); } method in class:Bean
H A DTransducedAccessor_method_Byte.java44 return DatatypeConverterImpl._printByte( ((Bean)o).get_byte() );
56 // w.leafElement(tagName, ((Bean)o).get_byte(), fieldName );
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dgzio.c102 local int get_byte OF((gz_stream *s));
285 local int get_byte(s) function
347 method = get_byte(s);
348 flags = get_byte(s);
355 for (len = 0; len < 6; len++) (void)get_byte(s);
358 len = (uInt)get_byte(s);
359 len += ((uInt)get_byte(s))<<8;
361 while (len-- != 0 && get_byte(s) != EOF) ;
364 while ((c = get_byte(s)) != 0 && c != EOF) ;
367 while ((c = get_byte(
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp55 int get_byte() { return *(jbyte*) _next_pc++; } // signed function in class:BytecodePrinter
388 st->print_cr(" " INT32_FORMAT, get_byte());
425 jint offset = is_wide() ? get_short(): get_byte();
542 get_byte(); // ignore zero byte
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp1092 virtual void get_byte () = 0;
1112 inline void do_byte() { if (!is_return_type()) get_byte(); }
1133 inline void get_byte() { _arguments->push_int(va_arg(_ap, jint)); } // byte is coerced to int when using va_arg function in class:JNI_ArgumentPusherVaArg
1215 inline void get_byte() { _arguments->push_int((jint)(_ap++)->b); } function in class:JNI_ArgumentPusherArray
1255 get_byte();

Completed in 59 milliseconds