Searched refs:byte (Results 1 - 25 of 54) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1SATBCardTableModRefBS.cpp91 jbyte* byte = byte_for(field); local
92 if (*byte != dirty_card) {
93 *byte = dirty_card;
97 jt->dirty_card_queue().enqueue(byte);
101 _dcqs.shared_dirty_card_queue()->enqueue(byte);
123 jbyte* byte = byte_for(mr.start()); local
127 while (byte <= last_byte) {
128 *byte = dirty_card;
129 byte++;
135 while (byte <
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dcoding.h68 static uint parse(byte* &rp, int B, int H);
69 static uint parse_lgH(byte* &rp, int B, int H, int lgH);
70 static void parseMultiple(byte* &rp, int N, byte* limit, int B, int H);
72 uint parse(byte* &rp) {
75 void parseMultiple(byte* &rp, int N, byte* limit) {
84 int readFrom(byte* &rpVar, int* dbase);
85 void readArrayFrom(byte* &rpVar, int* dbase, int length, int* values);
86 void skipArrayFrom(byte*
[all...]
H A Dbytes.h27 typedef signed char byte ; typedef
31 byte* ptr;
33 byte* limit() { return ptr+len; }
35 void set(byte* ptr_, size_t len_) { ptr = ptr_; len = len_; }
36 void set(const char* str) { ptr = (byte*)str; len = strlen(str); }
51 byte* writeTo(byte* bp);
54 bool contains(byte c) { return indexOf(c) >= 0; }
55 int indexOf(byte c);
57 static bytes of(byte* pt
[all...]
H A Dbytes.cpp35 static byte dummy[1 << 10];
43 ptr = NEW(byte, add_size(len_, 1)); // add trailing zero byte always
58 byte* oldptr = ptr;
59 ptr = (len_ >= PSIZE_MAX) ? null : (byte*)::realloc(ptr, add_size(len_, 1));
82 int bytes::indexOf(byte c) {
83 byte* p = (byte*) memchr(ptr, c, len);
87 byte* bytes::writeTo(byte* b
[all...]
H A Dunpack.h42 byte ixTag; // type of entries (!= CONSTANT_None), plus 64 if sub-index
88 entry*& hashTabRef(byte tag, bytes& b);
109 int getCount(byte tag) {
113 cpindex* getIndex(byte tag) {
196 byte* rp; // read pointer (< rplimit <= input.limit())
197 byte* rplimit; // how much of the input block has been read?
201 // callback to read at least one byte, up to available input
219 byte* meta_rp; // read-pointer into (copy of) band_headers
225 byte* wp; // write pointer (< wplimit == output.limit())
226 byte* wpbas
[all...]
H A Dbands.h38 byte ixTag; // 0 or 1; null is coded as (nullOK?0:-1)
39 byte nullOK; // 0 or 1; null is coded as (nullOK?0:-1)
45 byte* rplimit; // end of band (encoded, transmitted)
52 byte le_kind; // EK_XXX
53 byte le_bci; // 0,EK_BCI,EK_BCD,EK_BCO
54 byte le_back; // ==EF_BACK
55 byte le_len; // 0,1,2,4 (size in classfile), or call addr
87 void setIndexByTag(byte tag);
97 byte* &curRP() { return vs[0].rp; }
98 byte* minR
[all...]
H A Dbands.cpp118 byte XB_byte = (byte) XB;
119 byte* XB_ptr = &XB_byte;
123 NOT_PRODUCT(byte* meta_rp0 = u->meta_rp);
125 // Scribble the initial byte onto the band.
126 byte* save_meta_rp = --u->meta_rp;
127 byte save_meta_xb = (*save_meta_rp);
128 (*save_meta_rp) = (byte) XB;
184 void band::setIndexByTag(byte tag) {
453 assert((byte*)
[all...]
H A Dcoding.cpp82 if (B == 1 && H != 256) return null; // 1-byte coding must be fixed-size
83 if (B >= 5 && H == 256) return null; // no 5-byte fixed-size coding
186 uint coding::parse(byte* &rp, int B, int H) {
188 byte* ptr = rp;
208 uint coding::parse_lgH(byte* &rp, int B, int H, int lgH) {
211 byte* ptr = rp;
233 void coding::parseMultiple(byte* &rp, int N, byte* limit, int B, int H) {
238 byte* ptr = rp;
254 // end of encoding at B bytes, regardless of byte valu
[all...]
H A Dunpack.cpp72 static const byte TAGS_IN_ORDER[] = {
124 byte tag;
127 byte bits;
198 bool tagMatches(byte tag2) {
344 byte* rpgoal = (want >= remaining)? input.limit(): rplimit + (size_t)want;
391 byte* wp0 = which->grow(size);
398 byte* unpacker::put_space(size_t size) {
399 byte* wp0 = wp;
400 byte* wp1 = wp0 + size;
411 void unpacker::putu2_at(byte* w
[all...]
/openjdk7/jdk/src/share/instrument/
H A DEncodingSupport.c42 unsigned byte; local
44 byte = (unsigned char)string[i];
45 if ( (byte & 0x80) == 0 ) { /* 1byte encoding */
47 if ( byte == 0 ) {
48 new_length++; /* We gain one byte in length on NULL bytes */
50 } else if ( (byte & 0xE0) == 0xC0 ) { /* 2byte encoding */
55 i++; /* Skip next byte */
57 } else if ( (byte
[all...]
/openjdk7/hotspot/test/gc/6941923/
H A Dtest6941923.sh66 Vector< byte[] > v = new Vector< byte[] >(cap);
68 byte[] g = new byte[fix_size];
75 v = new Vector< byte[] >(cap);
/openjdk7/jdk/test/java/nio/Buffer/
H A DgenBasic.sh32 gen byte Byte Byte
H A DgenCopyDirectMemory.sh32 gen byte Byte Byte
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.hpp92 jbyte* byte = byte_for(field); local
93 *byte = youngergen_card;
/openjdk7/jdk/src/solaris/native/java/io/
H A DFileOutputStream_md.c63 Java_java_io_FileOutputStream_write(JNIEnv *env, jobject this, jint byte, jboolean append) { argument
64 writeSingle(env, this, byte, append, fos_fd);
/openjdk7/jdk/src/windows/native/java/io/
H A DFileOutputStream_md.c64 Java_java_io_FileOutputStream_write(JNIEnv *env, jobject this, jint byte, jboolean append) { argument
65 writeSingle(env, this, byte, append, fos_fd);
/openjdk7/jdk/src/share/npt/
H A Dutf.c146 unsigned byte; local
148 byte = (unsigned char)string[i];
149 if ( (byte & 0x80) == 0 ) { /* 1byte encoding */
151 if ( byte == 0 ) {
152 newLength++; /* We gain one byte in length on NULL bytes */
154 } else if ( (byte & 0xE0) == 0xC0 ) { /* 2byte encoding */
159 i++; /* Skip next byte */
161 } else if ( (byte
412 unsigned byte; local
[all...]
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_MidiUtils.c268 UInt8 byte; local
283 byte = *data++;
284 packedMsg = byte;
286 if (byte >= 0xF8) {
287 // Each RealTime Category message (ie, Status of 0xF8 to 0xFF) consists of only 1 byte, the Status.
297 if (byte == 0xFD) {
303 if (byte < 0x80) {
304 // Not a status byte -- check our history.
306 CFDataAppendBytes(handle->readingSysExData, &byte, 1);
309 pendingData[pendingDataIndex] = byte;
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableRS.hpp122 jbyte* byte = _ct_bs->byte_for(field); local
123 *byte = youngergen_card;
/openjdk7/jdk/test/com/sun/jdi/
H A DEvalArgs.sh55 static byte jjbyte = 1;
106 static String ffbyte(byte p1) {
147 static String ffoverload(byte p1) {
148 return "ffoverload: byte p1 = " + p1;
/openjdk7/jdk/test/java/util/Formatter/
H A DgenBasic.sh38 gen byte Byte prim "" dec ""
/openjdk7/jdk/test/sun/security/tools/jarsigner/
H A Demptymanifest.sh63 System.out.write(new byte[] {'\r', '\n'});
/openjdk7/jdk/src/share/native/java/io/
H A DRandomAccessFile.c78 Java_java_io_RandomAccessFile_write0(JNIEnv *env, jobject this, jint byte) { argument
79 writeSingle(env, this, byte, JNI_FALSE, raf_fd);
H A Dio_util.c130 writeSingle(JNIEnv *env, jobject this, jint byte, jboolean append, jfieldID fid) { argument
131 // Discard the 24 high-order bits of byte. See OutputStream#write(int)
132 char c = (char) byte;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DlinkResolver.hpp151 static void resolve_field(FieldAccessInfo& result, constantPoolHandle pool, int index, Bytecodes::Code byte, bool check_only, TRAPS);
153 static void resolve_field(FieldAccessInfo& result, constantPoolHandle pool, int index, Bytecodes::Code byte, bool check_only, bool update_pool, TRAPS);
187 static void resolve_invoke (CallInfo& result, Handle recv, constantPoolHandle pool, int index, Bytecodes::Code byte, TRAPS);

Completed in 137 milliseconds

123