Searched refs:new_value (Results 1 - 25 of 28) sorted by relevance

12

/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/doubleconv/
H A DDiyFp.java164 void setF(final long new_value) { f_ = new_value; } argument
165 void setE(final int new_value) { e_ = new_value; } argument
/openjdk10/hotspot/src/share/vm/services/
H A DwriteableFlags.cpp298 jvalue new_value = *(jvalue*)value; local
300 bool bvalue = (new_value.z == JNI_TRUE ? true : false);
303 int ivalue = (int)new_value.j;
306 uint uvalue = (uint)new_value.j;
309 intx ivalue = (intx)new_value.j;
312 uintx uvalue = (uintx)new_value.j;
315 uint64_t uvalue = (uint64_t)new_value.j;
318 size_t svalue = (size_t)new_value.j;
321 oop str = JNIHandles::resolve_external_guard(new_value.l);
H A Djmm.h313 jvalue new_value);
H A Dmanagement.cpp1592 JVM_ENTRY(void, jmm_SetVMGlobal(JNIEnv *env, jstring flag_name, jvalue new_value))
1603 int succeed = WriteableFlags::set_flag(name, new_value, Flag::MANAGEMENT, error_msg);
/openjdk10/hotspot/src/share/vm/runtime/
H A Datomic.hpp402 jint new_value = Atomic::add(add_value << 16, (volatile jint*)(dest-1));
405 jint new_value = Atomic::add(add_value << 16, (volatile jint*)(dest));
407 return (jshort)(new_value >> 16); // preserves sign
505 D* new_value = exchange_value;
509 return PlatformCmpxchg<sizeof(D*)>()(new_value, dest, old_value, order);
573 uint32_t new_value = cur;
575 reinterpret_cast<uint8_t*>(&new_value)[offset] = canon_exchange_value;
577 uint32_t res = cmpxchg(new_value, aligned_dest, cur, order);
H A Dglobals.cpp991 static void trace_flag_changed(const char* name, const T old_value, const T new_value, const Flag::Flags origin) { argument
995 e.set_newValue(new_value);
1000 static Flag::Error apply_constraint_and_check_range_bool(const char* name, bool new_value, bool verbose) { argument
1004 status = constraint->apply_bool(new_value, verbose);
1043 static Flag::Error apply_constraint_and_check_range_int(const char* name, int new_value, bool verbose) { argument
1047 status = range->check_int(new_value, verbose);
1052 status = constraint->apply_int(new_value, verbose);
1092 static Flag::Error apply_constraint_and_check_range_uint(const char* name, uint new_value, bool verbose) { argument
1096 status = range->check_uint(new_value, verbose);
1101 status = constraint->apply_uint(new_value, verbos
1149 apply_constraint_and_check_range_intx(const char* name, intx new_value, bool verbose) argument
1198 apply_constraint_and_check_range_uintx(const char* name, uintx new_value, bool verbose) argument
1247 apply_constraint_and_check_range_uint64_t(const char* name, uint64_t new_value, bool verbose) argument
1296 apply_constraint_and_check_range_size_t(const char* name, size_t new_value, bool verbose) argument
1346 apply_constraint_and_check_range_double(const char* name, double new_value, bool verbose) argument
1401 char* new_value = NULL; local
1420 char* new_value = os::strdup_check_oom(value); local
[all...]
H A Darguments.cpp760 static bool append_to_string_flag(const char* name, const char* new_value, Flag::Flags origin) { argument
764 size_t new_len = strlen(new_value);
768 value = new_value;
775 jio_snprintf(buf, length, "%s\n%s", old_value, new_value);
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp763 Value new_value, existing_value; local
782 for_each_local_value(new_state, index, new_value) {
783 if (!liveness.at(index) || new_value->type()->is_illegal()) {
793 for_each_stack_value(new_state, index, new_value) {
800 for_each_local_value(new_state, index, new_value) {
801 bool requires_phi = requires_phi_function.at(index) || (new_value->type()->is_double_word() && requires_phi_function.at(index + 1));
828 Value new_value = new_state->local_at(index); local
829 if (new_value == NULL || new_value->type()->tag() != existing_value->type()->tag()) {
851 Value new_value local
862 Value new_value = new_state->local_at(index); local
[all...]
H A Dc1_LIR.cpp1432 void LIR_List::cas_long(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, argument
1434 append(new LIR_OpCompareAndSwap(lir_cas_long, addr, cmp_value, new_value, t1, t2, result));
1437 void LIR_List::cas_obj(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, argument
1439 append(new LIR_OpCompareAndSwap(lir_cas_obj, addr, cmp_value, new_value, t1, t2, result));
1442 void LIR_List::cas_int(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, argument
1444 append(new LIR_OpCompareAndSwap(lir_cas_int, addr, cmp_value, new_value, t1, t2, result));
1780 new_value()->print(out); out->print(" ");
H A Dc1_LIR.hpp1860 LIR_OpCompareAndSwap(LIR_Code code, LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, argument
1865 , _new_value(new_value)
1871 LIR_Opr new_value() const { return _new_value; } function in class:LIR_OpCompareAndSwap
2145 void cas_long(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value,
2147 void cas_obj(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value,
2149 void cas_int(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value,
/openjdk10/hotspot/src/os_cpu/solaris_sparc/vm/
H A Datomic_solaris_sparc.hpp72 D new_value = old_value + add_value; local
73 D result = cmpxchg(new_value, dest, old_value);
/openjdk10/hotspot/src/share/vm/oops/
H A Dsymbol.cpp222 short new_value = Atomic::add(short(-1), &_refcount); local
224 if (new_value == -1) { // we have transitioned from 0 -> -1
229 (void)new_value;
/openjdk10/hotspot/src/share/vm/shark/
H A DsharkState.cpp186 void SharkState::replace_all(SharkValue* old_value, SharkValue* new_value) { argument
190 set_local(i, new_value);
196 set_stack(i, new_value);
H A DsharkState.hpp159 void replace_all(SharkValue* old_value, SharkValue* new_value);
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1RootProcessor.cpp48 uint new_value = (uint)Atomic::add(1, &_n_workers_discovered_strong_classes); local
49 if (new_value == n_workers()) {
/openjdk10/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A DeventHelper.c326 evinfo->u.field_modification.new_value);
805 if ( evinfo->u.field_modification.new_value.l != NULL ) {
806 pobject = &(evinfo->u.field_modification.new_value.l);
858 if ( evinfo->u.field_modification.new_value.l != NULL ) {
859 tossGlobalRef(env, &(evinfo->u.field_modification.new_value.l));
H A Dutil.h222 jvalue new_value; member in struct:__anon1359::__anon1360::__anon1362
H A DeventHandler.c962 char signature_type, jvalue new_value)
979 info.u.field_modification.new_value = new_value;
959 cbFieldModification(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field, char signature_type, jvalue new_value) argument
/openjdk10/jdk/src/java.management/share/native/include/
H A Djmm.h313 jvalue new_value);
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dc1_LIRAssembler_ppc.cpp2624 Register cmp_value = noreg, new_value = noreg; local
2629 new_value = op->new_value()->as_register_lo();
2633 new_value = op->new_value()->as_register();
2639 new_value = __ encode_heap_oop(t2, new_value);
2649 __ cmpxchgd(BOOL_RESULT, /*current_value=*/R0, cmp_value, new_value, addr,
2654 __ cmpxchgw(BOOL_RESULT, /*current_value=*/R0, cmp_value, new_value, addr,
/openjdk10/hotspot/src/share/vm/utilities/
H A DbitMap.cpp394 // new_value has the new trailing bits of the map in the low tail_bits.
397 // bits in new_value.
398 inline bm_word_t merge_tail_of_map(bm_word_t new_value,
402 return (new_value & mask) | (old_value & ~mask);
/openjdk10/hotspot/src/cpu/s390/vm/
H A Dc1_LIRAssembler_s390.cpp2622 Register new_value_lo = op->new_value()->as_register_lo();
2628 Register new_value = op->new_value()->as_register(); local
2633 assert_different_registers(cmp_value, new_value, addr, t1_cmp, t2_new);
2635 __ oop_encoder(t2_new, new_value, true /*maybe null*/);
2639 __ z_csg(t1_cmp, new_value, 0, addr);
2643 __ z_cs(t1_cmp, new_value, 0, addr);
/openjdk10/test/fmw/gtest/include/gtest/
H A Dgtest.h483 void SetValue(const std::string& new_value) { argument
484 value_ = new_value;
/openjdk10/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp2600 Register new_value_lo = op->new_value()->as_register_lo();
2601 Register new_value_hi = op->new_value()->as_register_hi();
2614 Register new_value = op->new_value()->as_register(); local
2618 __ mov(new_value, t2);
/openjdk10/hotspot/src/share/vm/memory/
H A Dmetaspace.cpp1511 size_t new_value = capacity_until_GC + v;
1513 if (new_value < capacity_until_GC) {
1514 // The addition wrapped around, set new_value to aligned max value.
1515 new_value = align_down(max_uintx, Metaspace::commit_alignment());
1519 intptr_t actual = Atomic::cmpxchg_ptr((intptr_t) new_value, &_capacity_until_GC, expected);
1526 *new_cap_until_GC = new_value;

Completed in 238 milliseconds

12