Searched defs:byte (Results 1 - 18 of 18) sorted by relevance

/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/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/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.hpp92 jbyte* byte = byte_for(field); local
93 *byte = youngergen_card;
/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/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/libadt/
H A Dport.hpp174 typedef unsigned char byte; typedef
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableRS.hpp122 jbyte* byte = _ct_bs->byte_for(field); local
123 *byte = youngergen_card;
H A DcardTableModRefBS.hpp165 // The card table byte one after the card marking array
333 jbyte* byte = byte_for((void*)field); local
334 *byte = dirty_card;
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsSelectorImpl.c190 /* Write one byte into the pipe */
191 const char byte = 1; local
192 send(scoutFd, &byte, 1, 0);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
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 Ddefines.h93 // bytes and byte arrays
114 typedef signed char byte; typedef
/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/share/back/
H A DoutStream.c140 jbyte byte = (val != 0) ? 1 : 0; local
141 return writeBytes(stream, &byte, sizeof(byte));
/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/interpreter/
H A DlinkResolver.cpp588 void LinkResolver::resolve_field(FieldAccessInfo& result, constantPoolHandle pool, int index, Bytecodes::Code byte, bool check_only, TRAPS) { argument
589 resolve_field(result, pool, index, byte, check_only, true, CHECK);
592 void LinkResolver::resolve_field(FieldAccessInfo& result, constantPoolHandle pool, int index, Bytecodes::Code byte, bool check_only, bool update_pool, TRAPS) { argument
593 assert(byte == Bytecodes::_getstatic || byte == Bytecodes::_putstatic ||
594 byte == Bytecodes::_getfield || byte == Bytecodes::_putfield, "bad bytecode");
596 bool is_static = (byte == Bytecodes::_getstatic || byte == Bytecodes::_putstatic);
597 bool is_put = (byte
1129 resolve_invoke(CallInfo& result, Handle recv, constantPoolHandle pool, int index, Bytecodes::Code byte, TRAPS) argument
[all...]
/openjdk7/jdk/src/solaris/native/java/net/
H A DNetworkInterface.c1245 * return puts the data in buf, and returns the length, in byte, of the
1593 * return puts the data in buf, and returns the length, in byte, of the
1779 int byte, bit, plen = 0; local
1781 for (byte = 0; byte < size; byte++, plen += 8)
1782 if (name[byte] != 0xff)
1784 if (byte == size)
1787 if (!(name[byte] & (1 << bit)))
1790 if (name[byte]
[all...]

Completed in 60 milliseconds