Searched refs:jbyte (Results 1 - 25 of 302) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/back/
H A DeventHelper.h32 void eventHelper_initialize(jbyte sessionID);
33 void eventHelper_reset(jbyte sessionID);
37 jbyte suspendPolicy, struct bag *eventBag);
39 void eventHelper_recordFrameEvent(jint id, jbyte suspendPolicy, EventIndex ei,
46 jbyte eventHelper_reportEvents(jbyte sessionID, struct bag *eventBag);
47 void eventHelper_reportInvokeDone(jbyte sessionID, jthread thread);
48 void eventHelper_reportVMInit(JNIEnv *env, jbyte sessionID, jthread thread, jbyte suspendPolicy);
49 void eventHelper_suspendThread(jbyte sessionI
[all...]
H A Dinvoker.h42 jbyte invokeType;
43 jbyte options;
63 jvmtiError invoker_requestInvoke(jbyte invokeType, jbyte options, jint id,
H A DoutStream.h39 jbyte *data;
44 jbyte *current;
51 jbyte initialSegment[INITIAL_SEGMENT_SIZE];
56 jbyte flags, jbyte commandSet, jbyte command);
60 jbyte outStream_command(PacketOutputStream *stream);
63 jdwpError outStream_writeByte(PacketOutputStream *stream, jbyte val);
76 jdwpError outStream_writeByteArray(PacketOutputStream*stream, jint length, jbyte *bytes);
79 jbyte typeKe
[all...]
H A DinStream.h35 jbyte *current;
45 jbyte inStream_command(PacketInputStream *stream);
48 jbyte inStream_readByte(PacketInputStream *stream);
49 jbyte* inStream_readBytes(PacketInputStream *stream,
50 int length, jbyte *buf);
72 jvalue inStream_readValue(struct PacketInputStream *in, jbyte *typeKeyPtr);
/openjdk7/jdk/src/macosx/javavm/export/
H A Djni_md.h39 typedef signed char jbyte; typedef
/openjdk7/jdk/src/solaris/javavm/export/
H A Djni_md.h40 typedef signed char jbyte; typedef
/openjdk7/jdk/src/share/npt/
H A Dutf.h47 (struct UtfInst *ui, jbyte *utf8,
51 jbyte *output, int outputMaxLen);
53 (struct UtfInst *ui, jbyte *utf8, int len,
57 jbyte *output, int outputMaxLen);
60 jbyte *output, int outputMaxLen);
62 (struct UtfInst *ui, jbyte *string, int length);
64 (struct UtfInst *ui, jbyte *string, int length,
65 jbyte *new_string, int new_length);
67 (struct UtfInst *ui, jbyte *string, int length);
69 (struct UtfInst *ui, jbyte *strin
[all...]
H A Dnpt.h63 (struct UtfInst *utf, jbyte *utf8, int len,
67 jbyte *output, int outputMaxLen);
69 (struct UtfInst *utf, jbyte *utf8, int len,
73 jbyte *output, int outputMaxLen);
76 jbyte *output, int outputMaxLen);
78 (struct UtfInst *utf, jbyte *string, int length);
80 (struct UtfInst *utf, jbyte *string, int length,
81 jbyte *newString, int newLength);
83 (struct UtfInst *utf, jbyte *string, int length);
85 (struct UtfInst *utf, jbyte *strin
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DaltHashing.cpp61 jint AltHashing::murmur3_32(jint seed, const jbyte* data, int len) {
211 jint AltHashing::murmur3_32(const jbyte* data, int len) {
221 static const jbyte ONE_BYTE[] = { (jbyte) 0x80};
222 static const jbyte TWO_BYTE[] = { (jbyte) 0x80, (jbyte) 0x81};
224 static const jbyte THREE_BYTE[] = { (jbyte) 0x80, (jbyte)
[all...]
H A DaltHashing.hpp50 static jint murmur3_32(const jbyte* data, int len);
58 static jint murmur3_32(jint seed, const jbyte* data, int len);
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableRS.hpp44 static jbyte clean_card_val() {
53 card_is_dirty_wrt_gen_iter(jbyte cv) {
82 jbyte* _last_cur_val_in_gen;
84 jbyte _cur_youngergen_card_val;
88 jbyte cur_youngergen_card_val() {
91 void set_cur_youngergen_card_val(jbyte v) {
94 bool is_prev_youngergen_card_val(jbyte v) {
101 jbyte find_unused_youngergenP_card_value();
122 jbyte* byte = _ct_bs->byte_for(field);
155 jbyte* byte_fo
[all...]
H A DcardTableModRefBS.hpp79 static bool card_is_dirty_wrt_gen_iter(jbyte cv) {
86 virtual bool card_will_be_scanned(jbyte cv) {
92 virtual bool card_may_have_been_dirty(jbyte cv) {
105 jbyte* _byte_map; // the card marking array
154 jbyte* byte_for(const void* p) const {
159 jbyte* result = &byte_map_base[uintptr_t(p) >> card_shift];
168 jbyte* byte_after(const void* p) const {
210 typedef jbyte* CardPtr;
223 jbyte**& lowest_non_clean,
247 jbyte** lowest_non_clea
[all...]
/openjdk7/jdk/src/windows/javavm/export/
H A Djni_md.h35 typedef signed char jbyte; typedef
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfMemory.hpp63 jbyte byte_order; // byte order of the buffer
64 jbyte major_version; // major and minor version numbers
65 jbyte minor_version;
66 jbyte accessible; // ready to access
84 jbyte data_type; // type of the data item -
86 jbyte flags; // flags indicating misc attributes
87 jbyte data_units; // unit of measure for the data type
88 jbyte data_variability; // variability classification of data type
94 jbyte[name_length] data_name; // name of the data item
95 jbyte[pad_lengt
[all...]
H A Datomic.cpp70 jbyte Atomic::cmpxchg(jbyte exchange_value, volatile jbyte* dest, jbyte compare_value) {
71 assert(sizeof(jbyte) == 1, "assumption.");
76 jbyte* cur_as_bytes = (jbyte*)(&cur);
78 jbyte* new_val_as_bytes = (jbyte*)(&new_val);
H A Datomic.hpp39 static void store (jbyte store_value, jbyte* dest);
47 static void store (jbyte store_value, volatile jbyte* dest);
86 static jbyte cmpxchg (jbyte exchange_value, volatile jbyte* dest, jbyte compare_value);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dutf8.hpp54 static const jbyte* strrchr(const jbyte* base, int length, jbyte c);
55 static bool equal(const jbyte* base1, int length1, const jbyte* base2,int length2);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CardCounts.hpp59 const jbyte* _ct_bot;
79 size_t ptr_2_card_num(const jbyte* card_ptr) {
85 size_t card_num = pointer_delta(card_ptr, _ct_bot, sizeof(jbyte));
91 jbyte* card_num_2_ptr(size_t card_num) {
94 return (jbyte*) (_ct_bot + card_num);
102 return MIN2(_reserved_max_card_num, committed_size / sizeof(jbyte));
120 uint add_card_count(jbyte* card_ptr);
H A Dg1HotCardCache.hpp60 jbyte** _hot_cache;
98 jbyte* insert(jbyte* card_ptr);
H A Dg1HotCardCache.cpp41 _hot_cache = NEW_C_HEAP_ARRAY(jbyte*, _hot_cache_size, mtGC);
59 FREE_C_HEAP_ARRAY(jbyte*, _hot_cache, mtGC);
63 jbyte* G1HotCardCache::insert(jbyte* card_ptr) {
72 jbyte* res = NULL;
112 jbyte* card_ptr = _hot_cache[i];
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DobjectStartArray.hpp46 jbyte* _raw_base;
47 jbyte* _offset_base;
64 jbyte* block_for_addr(void* p) const {
67 jbyte* result = &_offset_base[uintptr_t(p) >> block_shift];
74 HeapWord* addr_for_block(jbyte* p) {
77 size_t delta = pointer_delta(p, _offset_base, sizeof(jbyte));
87 HeapWord* offset_addr_for_block (jbyte* p) const {
100 size_t delta = pointer_delta(p, _offset_base, sizeof(jbyte));
124 jbyte* block = block_for_addr(p);
130 *block = (jbyte)offse
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Djni_sparc.h43 typedef signed char jbyte; typedef
/openjdk7/hotspot/src/cpu/zero/vm/
H A Djni_zero.h38 typedef signed char jbyte; typedef
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTrace.hpp60 static jbyte _trace_flags[];
61 static jbyte _event_trace_flags[];
82 static jbyte trace_flags(int num) { return _trace_flags[num]; }
83 static jbyte event_trace_flags(int num) { return _event_trace_flags[num]; }
/openjdk7/jdk/src/share/native/sun/security/ec/
H A DECC_JNI.cpp80 jbyte* pSeedBuffer = NULL;
98 pSeedBuffer = new jbyte[jSeedLength];
124 (jbyte *) params_item.data, JNI_ABORT);
155 env->SetByteArrayRegion(jEncodedBytes, 0, s->len, (jbyte *)s->data);
172 jbyte* pDigestBuffer = NULL;
177 jbyte* pSignedDigestBuffer = NULL;
181 jbyte* pSeedBuffer = NULL;
184 pDigestBuffer = new jbyte[jDigestLength];
213 pSignedDigestBuffer = new jbyte[ecparams->order.len * 2];
218 pSeedBuffer = new jbyte[jSeedLengt
[all...]

Completed in 85 milliseconds

1234567891011>>