Searched defs:res (Results 326 - 350 of 362) sorted by relevance

<<1112131415

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/res/
H A DXSLTErrorResources_sv.java23 package com.sun.org.apache.xalan.internal.res;
H A DXSLTErrorResources_zh_CN.java23 package com.sun.org.apache.xalan.internal.res;
H A DXSLTErrorResources_zh_TW.java23 package com.sun.org.apache.xalan.internal.res;
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp321 PcDesc* res; local
324 res = _pc_descs[0];
325 if (res == NULL) return NULL; // native method; no PcDescs at all
326 if (match_desc(res, pc_offset, approximate)) {
328 return res;
333 res = _pc_descs[i];
334 if (res->pc_offset() < 0) break; // optimization: skip empty cache
335 if (match_desc(res, pc_offset, approximate)) {
337 return res;
1944 PcDesc* res local
1970 PcDesc* res = _pc_desc_cache.find_pc_desc(pc_offset, approximate); local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp408 size_t res = _dictionary->max_chunk_size(); local
409 res = MAX2(res, MIN2(_smallLinearAllocBlock._word_size,
412 // should one, pesimally for the rare cases when res
414 // just return res calculated above? My reasoning was that
417 // Note: do not change the loop test i >= res + IndexSetStride
418 // to i > res below, because i is unsigned and res may be zero.
419 for (size_t i = IndexSetSize - 1; i >= res + IndexSetStride;
426 return res;
578 size_t res = 0; local
1001 size_t res = fc->size(); local
1016 size_t res = o->size_given_klass(k->klass_part()); local
1044 size_t res = fc->size(); local
1060 size_t res = o->size_given_klass(k->klass_part()); local
1214 HeapWord* res = NULL; local
1245 HeapWord* res = NULL; local
1267 HeapWord* res = NULL; local
1447 HeapWord* res = allocate(adjustObjectSize(obj_size)); local
1472 HeapWord* res = NULL; local
1537 HeapWord* res = NULL; local
1880 FreeChunk* res = getFromListGreater(fl, numWords); local
2355 size_t res; local
2630 FreeChunk* res; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.cpp569 Node* res = alloc->result_cast(); local
571 if (res == NULL) {
573 } else if (!res->is_CheckCastPP()) {
577 res_type = _igvn.type(res)->isa_oopptr();
590 if (can_eliminate && res != NULL) {
591 for (DUIterator_Fast jmax, j = res->fast_outs(jmax);
593 Node* use = res->fast_out(j);
619 if (sfpt->is_Call() && sfpt->as_Call()->has_non_debug_use(res)) {
658 if (res == NULL)
661 res
692 Node* res = alloc->result_cast(); local
853 Node* res = alloc->result_cast(); local
[all...]
H A Dtype.cpp3389 jint res = cache; local
3390 if (res == 0) {
3400 cache = res = arrayOopDesc::max_array_length(etype);
3402 return res;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp1792 FloatRegister lreg, rreg, res; local
1798 res = dest->as_float_reg();
1803 res = dest->as_double_reg();
1807 case lir_add: __ fadd(w, lreg, rreg, res); break;
1808 case lir_sub: __ fsub(w, lreg, rreg, res); break;
1810 case lir_mul_strictfp: __ fmul(w, lreg, rreg, res); break;
1812 case lir_div_strictfp: __ fdiv(w, lreg, rreg, res); break;
1859 Register res = dest->as_register(); local
1862 case lir_add: __ add (lreg, rreg, res); break;
1863 case lir_sub: __ sub (lreg, rreg, res); brea
1873 Register res = dest->as_register(); local
1884 Register res = dest->as_register_lo(); local
[all...]
H A Dinterp_masm_sparc.cpp897 // Check that index is in range for array, then shift index by index_shift, and put arrayOop + shifted_index into res
898 // Note: res is still shy of address by array offset into object.
900 void InterpreterMacroAssembler::index_check_without_pop(Register array, Register index, int index_shift, Register tmp, Register res) { argument
920 else delayed()->add(array, index, res); // addr - const offset in index
926 if (index_shift > 0) add(array, index, res); // addr - const offset in index
930 void InterpreterMacroAssembler::index_check(Register array, Register index, int index_shift, Register tmp, Register res) { argument
937 index_check_without_pop(array, index, index_shift, tmp, res);
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp2014 const Form *res = pipeline._resdict[ident]; local
2015 if (res != NULL) {
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp1078 Value res = new ArithmeticOp(code, x, y, method()->is_strict(), state_before); local
1080 res = append(res);
1082 res = round_fp(res);
1084 push(type, res);
1312 Instruction* res = append(new TableSwitch(ipop(), sux, sw.low_key(), state_before, has_bb));
1314 if (res->as_Goto()) {
1316 if (sux->at(i) == res->as_Goto()->sux_at(0)) {
1317 assert(res
[all...]
H A Dc1_LIRGenerator.cpp1159 LIR_Opr res = x->operand(); local
1160 if (!res->is_valid()) {
1161 res = LIR_OprFact::value_type(x->type());
1163 if (res->is_constant()) {
1165 __ move(res, reg);
1167 set_result(x, res);
2401 SwitchRangeList* res = new SwitchRangeList(); local
2416 res->append(range);
2422 if (res->length() == 0 || res
2430 SwitchRangeList* res = new SwitchRangeList(); local
[all...]
H A Dc1_LinearScan.cpp1037 LIR_Opr res = move->result_opr(); local
1038 bool result_in_memory = res->is_virtual() && gen()->is_vreg_flag_set(res->vreg_number(), LIRGenerator::must_start_in_memory);
1073 LIR_Opr res = move->result_opr(); local
1074 bool result_in_memory = res->is_virtual() && gen()->is_vreg_flag_set(res->vreg_number(), LIRGenerator::must_start_in_memory);
2191 LIR_Opr res = operand_for_interval(interval); local
2199 if (res->is_fpu_register()) {
2202 res = res
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp4061 bool res = register_native(h_k, name, signature, variable
4063 if (!res) {
5219 jint res = JNI_ERR; local
5220 DT_RETURN_MARK(DestroyJavaVM, jint, (const jint&)res);
5223 res = JNI_ERR;
5224 return res;
5233 res = vm->AttachCurrentThread((void **)&env, (void *)&destroyargs);
5234 if (res != JNI_OK) {
5235 return res;
5244 res
[all...]
H A Djvm.cpp1436 objArrayOop res = oopFactory::new_objArray(SystemDictionary::Class_klass(), members, CHECK_NULL); variable
1438 res->obj_at_put(i, result->obj_at(i));
1440 return (jobjectArray)JNIHandles::make_local(env, res);
1663 oop res = oopFactory::new_objArray(SystemDictionary::reflect_Field_klass(), 0, CHECK_NULL); local
1664 return (jobjectArray) JNIHandles::make_local(env, res);
1726 oop res = oopFactory::new_objArray(SystemDictionary::reflect_Method_klass(), 0, CHECK_NULL); local
1727 return (jobjectArray) JNIHandles::make_local(env, res);
1778 oop res = oopFactory::new_objArray(SystemDictionary::reflect_Constructor_klass(), 0 , CHECK_NULL); local
1779 return (jobjectArray) JNIHandles::make_local(env, res);
1938 jobject res local
1949 jobject res = get_method_at_helper(cp, index, false, CHECK_NULL); local
1985 jobject res = get_field_at_helper(cp, index, true, CHECK_NULL); local
1996 jobject res = get_field_at_helper(cp, index, false, CHECK_NULL); local
4160 jobject res = JNIHandles::make_local(env, result); variable
4182 jobject res = JNIHandles::make_local(env, result); variable
4199 jlong res; variable
[all...]
H A DjvmtiEnv.cpp546 JavaValue res(T_VOID);
547 JavaCalls::call_special(&res,
2447 jvmtiError res = allocate(cpool_size, &cpool_bytes); local
2448 if (res != JVMTI_ERROR_NONE) {
2449 return res;
H A DjvmtiTagMap.cpp1173 jint res = (*cb)(JVMTI_HEAP_REFERENCE_STATIC_FIELD, local
1180 if (res & JVMTI_VISIT_ABORT) {
1182 return res;
1226 jint res = (*cb)(JVMTI_HEAP_REFERENCE_FIELD, local
1233 if (res & JVMTI_VISIT_ABORT) {
1234 return res;
1430 jint res = (*cb)(wrapper.klass_tag(), local
1435 if (check_flags_for_abort(res)) return;
1440 jint res; local
1443 res
1460 jint res = invoke_string_value_callback( local
1472 jint res = invoke_array_primitive_value_callback( local
2134 jint res = (*cb)(ref_kind, local
2199 int res = (*cb)(ref_kind, local
2269 int res = (*cb)(ref_kind, local
2327 int res = invoke_array_primitive_value_callback(context->array_primitive_value_callback(), local
2356 int res = invoke_string_value_callback(context->string_primitive_value_callback(), local
2401 int res = (*cb)(ref_kind, local
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp1374 HDC res = ::ResetDC(printDC, devmode); local
H A Dawt_Toolkit.cpp382 jint res = jvm->AttachCurrentThreadAsDaemon((void **)&env, &attachArgs); local
383 if (res < 0) {
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp495 void* res = must_malloc((int)size); local
496 (temp ? &tmallocs : &mallocs)->add(res);
497 return res;
1569 unpacker::attr_definitions::parseIntLayout(const char* lp, band* &res, argument
1595 res = b;
1600 unpacker::attr_definitions::parseNumeral(const char* lp, int &res) { argument
1603 if (*lp == '0') { res = 0; return lp+1; } // special case '0'
1624 res = con;
1636 band** res = U_NEW(band*, add_size(nb, 1)); local
1640 res[
1648 parseLayout(const char* lp, band** &res, int curCble) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c543 int x, res; local
548 res = cmsstrcasecmp(id, TabKeys[x-1].id);
549 if (res == 0) return TabKeys[x-1].sy;
550 if (res < 0) r = x - 1;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c348 mp_err res; local
360 if ((res = s_mp_mul_d(mp, (UCHAR_MAX + 1))) != MP_OKAY)
361 return res;
363 res = s_mp_add_d(mp, (mp_digit)((v >> (ix * CHAR_BIT)) & UCHAR_MAX));
364 if (res != MP_OKAY)
365 return res;
382 mp_err res; local
394 if ((res = s_mp_mul_d(mp, (UCHAR_MAX + 1))) != MP_OKAY)
395 return res;
397 res
422 mp_err res; local
466 mp_err res; local
510 mp_err res; local
534 mp_err res; local
559 mp_err res; local
618 mp_err res; local
638 mp_err res; local
689 mp_err res; local
714 mp_err res; local
742 mp_err res; local
774 mp_err res; local
817 mp_err res; local
914 mp_err res; local
1002 mp_err res; local
1088 mp_err res; local
1125 mp_err res; local
1215 mp_err res; local
1275 mp_err res; local
1318 mp_err res; local
1398 mp_err res; local
1423 mp_err res; local
1448 mp_err res; local
1468 mp_err res; local
1500 mp_err res; local
1586 mp_err res; local
1783 mp_err res; local
1886 mp_err res; local
1929 mp_err res; local
2084 mp_err res; local
2177 mp_err res; local
2213 mp_err res; local
2251 mp_err res; local
2284 mp_err res; local
2341 mp_err res; local
2490 mp_err res; local
2569 mp_err res; local
2615 mp_err res; local
2681 mp_err res; local
2813 mp_err res; local
2960 mp_err res; local
2997 mp_err res; local
3106 mp_err res; local
3198 mp_err res = MP_OKAY; local
3246 mp_err res; local
3337 mp_err res; local
3382 mp_err res; local
3499 mp_err res; local
3585 mp_err res; local
3674 mp_err res; local
3825 mp_err res; local
4183 mp_err res; local
4217 mp_err res; local
4347 mp_err res; local
4383 mp_err res; local
4683 mp_err res; local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.cpp195 jint res = Atomic::cmpxchg(next_index, &_index, index); local
196 if (res == index) {
220 jint res = Atomic::cmpxchg(next_index, &_index, index); local
221 if (res == index) {
276 bool res = true;
287 res = false;
292 return res;
353 HeapRegion* res = _next_survivor; local
354 if (res != NULL) {
357 res
1425 bool res = _calc_cl.doHeapRegion(hr); local
2742 HeapWord* res = (HeapWord*) Atomic::cmpxchg_ptr(end, &_finger, finger); local
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.cpp1055 int res = m->name()->fast_compare(name); local
1056 if (res == 0) {
1081 } else if (res < 0) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DBandStructure.java287 CodingMethod[] res = {null};
295 res);
296 return res[0];
299 public static int parseMetaCoding(byte[] bytes, int pos, Coding dflt, CodingMethod[] res) { argument
301 res[0] = dflt;
305 pos2 = Coding.parseMetaCoding(bytes, pos, dflt, res);
307 pos2 = PopulationCoding.parseMetaCoding(bytes, pos, dflt, res);
309 pos2 = AdaptiveCoding.parseMetaCoding(bytes, pos, dflt, res);
1898 List<Attribute.Layout> res = new ArrayList<>(attrIndexLimit[ctype]);
1905 res
[all...]

Completed in 441 milliseconds

<<1112131415