Searched defs:res (Results 276 - 300 of 362) sorted by relevance

<<1112131415

/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.c162 int res; local
165 res = md_write(fd, buf, len);
166 if (res < 0 || res!=len) {
167 system_error("write", res, errno);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngget.c223 png_fixed_point res; local
230 if (png_muldiv(&res, (png_int_32)info_ptr->y_pixels_per_unit, PNG_FP_1,
232 return res;
/openjdk7/jdk/src/share/demo/jvmti/heapTracker/
H A DheapTracker.c902 jint res; local
918 res = (*vm)->GetEnv(vm, (void **)&jvmti, JVMTI_VERSION_1);
919 if (res != JNI_OK) {
926 JVMTI_VERSION_1, res);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java296 private static boolean IS_CLIPPED(int res) { argument
297 return res == CRES_MIN_CLIPPED || res == CRES_MAX_CLIPPED;
307 int res = CRES_NOT_CLIPPED;
313 res = CRES_MIN_CLIPPED;
319 res = CRES_MAX_CLIPPED;
325 return res;
332 int res = CRES_NOT_CLIPPED;
338 res = CRES_MIN_CLIPPED;
344 res
[all...]
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp963 jlongArray res = env->NewLongArray(NPRGREG); local
966 jlong* ptr = env->GetLongArrayElements(res, &isCopy);
970 env->ReleaseLongArrayElements(res, ptr, JNI_COMMIT);
971 return res;
1237 int res = Plookup_by_addr((struct ps_prochandle*) p_ps_prochandle, (uintptr_t) address, local
1239 if (res != 0) { // failed
1259 jstring res = 0; local
1261 res = env->NewStringUTF(buf);
1263 res = name;
1266 return res;
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp2332 bool res = state->apply_one_bytecode(&str); local
2341 if (res) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionRemSet.cpp185 PerRegionTable* res = (PerRegionTable*) Atomic::cmpxchg_ptr(prt, &_free_list, fl); local
186 if (res == fl) {
202 PerRegionTable* res = local
205 if (res == fl) {
243 size_t res = 0; local
245 res += sizeof(PerRegionTable);
248 return res;
503 bool res = _sparse_table.delete_entry(from_hrs_ind); local
504 assert(res, "It should have been there.");
868 jint res
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.cpp556 bool res = work_q->push(obj_to_scan); local
557 assert(res, "Empty queue should have room for a push.");
1467 bool res; local
1470 res = par_scan_state->take_from_overflow_stack();
1473 res = take_from_overflow_list_work(par_scan_state);
1475 return res;
/openjdk7/hotspot/src/share/vm/memory/
H A DgenCollectedHeap.cpp319 size_t res = 0; local
321 res += _gens[i]->capacity();
323 return res;
327 size_t res = 0; local
329 res += _gens[i]->used();
331 return res;
347 size_t res = 0; local
349 res += _gens[i]->max_capacity();
351 return res;
415 HeapWord* res; local
999 Space* res = _gens[i]->space_containing(addr); local
1002 Space* res = perm_gen()->space_containing(addr); local
1135 ScratchBlock* res = NULL; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp1126 SafePointScalarObjectNode* res = (SafePointScalarObjectNode*)Node::clone(); local
1127 res->_first_index += jvms_adj;
1128 sosn_map->Insert((void*)this, (void*)res);
1129 return res;
H A Descape.cpp1713 Node *res = optimize_ptr_compare(n); local
1714 if (res != NULL) {
1717 tty->print_cr("++++ Replaced: %d %s(%d,%d) --> %s", n->_idx, (n->Opcode() == Op_CmpP ? "CmpP" : "CmpN"), n->in(1)->_idx, n->in(2)->_idx, (res == _pcmp_eq ? "EQ" : "NotEQ"));
1723 igvn->replace_node(n, res);
H A Dparse2.cpp649 Node* res = _gvn.transform(new (C) ProjNode(c, TypeFunc::Parms + 0)); local
651 push(res);
678 Node* res = _gvn.transform(new (C) ProjNode(c, TypeFunc::Parms + 0)); local
680 push(res);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapClient.java154 LdapResult res = null;
191 res = ldapBind(name=null, (byte[])(pw=null), ctls, null,
193 if (res.status == LdapClient.LDAP_SUCCESS) {
205 res = new LdapResult();
206 res.status = LdapClient.LDAP_SUCCESS;
213 res = ldapBind(name, encodedPw, ctls, null, false);
214 if (res.status == LdapClient.LDAP_SUCCESS) {
235 res = LdapSasl.saslBind(this, conn, conn.host, name, pw,
237 if (res.status == LdapClient.LDAP_SUCCESS) {
255 (res
570 clearSearchReply(LdapResult res, Control[] ctls) argument
596 getSearchReply(int batchSize, LdapResult res, Hashtable binaryAttrs) argument
610 getSearchReply(LdapRequest req, int batchSize, LdapResult res, Hashtable binaryAttrs) argument
762 parseResult(BerDecoder replyBer, LdapResult res, boolean isLdapv3) argument
831 parseExtResponse(BerDecoder replyBer, LdapResult res) argument
882 processReply(LdapRequest req, LdapResult res, int responseType) argument
[all...]
H A DLdapCtx.java1153 LdapNamingEnumeration res =
1156 res.setNamingException(
1158 return res;
1161 LdapNamingEnumeration res =
1164 res.setNamingException(
1166 return res;
1220 LdapBindingEnumeration res =
1223 res.setNamingException(
1225 return res;
1228 LdapBindingEnumeration res
1905 getSearchReply(LdapClient eClnt, LdapResult res) argument
2848 processReturnCode(LdapResult res, Name resolvedName, Object resolvedObj, Name remainName, Hashtable envprops, String fullDN) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java413 * @param res a valid <code>ResultSet</code> object
418 public JdbcRowSetImpl(ResultSet res) throws SQLException { argument
430 rs = res;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp49 LIR_Opr res = result(); local
51 if (!res->is_virtual() || !_gen->is_vreg_flag_set(res, LIRGenerator::byte_reg)) {
56 __ move(res, reg);
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Dlibjvm_db.c1517 int i = 0, res; local
1526 res = Jlookup_by_regs(J, gregs, buf, sizeof(buf), &jframe);
1527 if (res != PS_OK)
1531 res = func(cld, gregs, buf, (jframe.locinf)? jframe.bci : -1,
1533 if (res != 0) {
1535 return (res);
1539 res = func(cld, gregs, buf, (jframe.locinf)? jframe.bci : -1,
1541 if (res != 0) {
1543 return (res);
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dlibjvm_db.c1517 int i = 0, res; local
1526 res = Jlookup_by_regs(J, gregs, buf, sizeof(buf), &jframe);
1527 if (res != PS_OK)
1531 res = func(cld, gregs, buf, (jframe.locinf)? jframe.bci : -1,
1533 if (res != 0) {
1535 return (res);
1539 res = func(cld, gregs, buf, (jframe.locinf)? jframe.bci : -1,
1541 if (res != 0) {
1543 return (res);
/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c914 int res; local
1005 if ((res = JLI_ParseManifest(operand, &info)) != 0) {
1006 if (res == -1)
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp319 void* res = c->arena()->Amalloc(size); local
320 ((Instruction*)res)->_id = c->get_next_id();
321 return res;
1567 void* res = c->arena()->Amalloc(size);
1568 ((BlockBegin*)res)->_id = c->get_next_id();
1569 ((BlockBegin*)res)->_block_id = c->get_next_block_id();
1570 return res;
H A Dc1_LIR.cpp1272 void LIR_List::idiv(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) { argument
1278 res,
1283 void LIR_List::idiv(LIR_Opr left, int right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) { argument
1289 res,
1294 void LIR_List::irem(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) { argument
1300 res,
1305 void LIR_List::irem(LIR_Opr left, int right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) { argument
1311 res,
/openjdk7/jdk/src/share/bin/
H A Djava.c738 int res; local
829 if ((res = JLI_ParseManifest(operand, &info)) != 0) {
830 if (res == -1)
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp936 jvmtiError res = compare_and_normalize_class_versions(the_class, local
938 if (res != JVMTI_ERROR_NONE) {
939 return res;
969 res = merge_cp_and_rewrite(the_class, scratch_class, THREAD);
970 if (res != JVMTI_ERROR_NONE) {
971 return res;
H A DmethodHandles.cpp245 oop res = init_method_MemberName(mname_oop, m(), (vmindex >= 0), defc()); local
246 assert(res == NULL || (java_lang_invoke_MemberName::vmindex(res) == vmindex), "");
247 return Handle(THREAD, res);
1159 int res = MethodHandles::find_MemberNames(k(), name, sig, mflags, local
1162 return res;
/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.cpp816 jlong res = (jlong)low->get_int(); local
820 jlong res = jlong_from((jint)low->get_int(), (jint)value->get_int()); local
822 jlong res = jlong_from((jint)value->get_int(), (jint)low->get_int()); local
825 _obj->long_field_put(offset, res);
867 jlong res = (jlong)low->get_int(); local
871 jlong res = jlong_from((jint)low->get_int(), (jint)value->get_int()); local
873 jlong res = jlong_from((jint)value->get_int(), (jint)low->get_int()); local
876 obj->long_at_put(index, res);

Completed in 192 milliseconds

<<1112131415