Searched refs:res (Results 451 - 475 of 785) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DCompactibleFreeListSpace.java161 List res = new ArrayList(); // List<MemRegion>
174 res.add(new MemRegion(regionStart, cur));
199 return res;
/openjdk7/jdk/src/share/classes/javax/script/
H A DScriptEngineManager.java351 List<ScriptEngineFactory> res = new ArrayList<ScriptEngineFactory>(engineSpis.size());
353 res.add(spi);
355 return Collections.unmodifiableList(res);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1GCPhaseTimes.cpp42 int res = vsnprintf(&_buffer[_cur], BUFFER_LEN - _cur, format, ap); local
43 if (res != -1) {
44 _cur += res;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaObject.java231 byte[] res = new byte[length];
232 buf.get(offset + 4, res);
233 return res;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp642 LIR_Opr res; local
646 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) |
654 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) |
662 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) |
670 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) |
679 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) |
686 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) |
694 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) |
702 T_DOUBLE: res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) |
709 default: ShouldNotReachHere(); res
740 LIR_Opr res; local
2063 pow(LIR_Opr arg1, LIR_Opr arg2, LIR_Opr res, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, LIR_Opr tmp4, LIR_Opr tmp5) argument
2065 add(LIR_Opr left, LIR_Opr right, LIR_Opr res) argument
2066 sub(LIR_Opr left, LIR_Opr right, LIR_Opr res, CodeEmitInfo* info = NULL) argument
2067 mul(LIR_Opr left, LIR_Opr right, LIR_Opr res) argument
2068 mul_strictfp(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp) argument
2069 div(LIR_Opr left, LIR_Opr right, LIR_Opr res, CodeEmitInfo* info = NULL) argument
2070 div_strictfp(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp) argument
2071 rem(LIR_Opr left, LIR_Opr right, LIR_Opr res, CodeEmitInfo* info = NULL) argument
2159 xadd(LIR_Opr src, LIR_Opr add, LIR_Opr res, LIR_Opr tmp) argument
2160 xchg(LIR_Opr src, LIR_Opr set, LIR_Opr res, LIR_Opr tmp) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticArgument.cpp290 int res = sscanf(str, UINT64_FORMAT "%c", &_value._val, &_value._multiplier); local
291 if (res == 2) {
309 } else if (res == 1) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Win32GraphicsEnv.cpp110 HRESULT res = DwmAPI::DwmIsCompositionEnabled(&bEnabled); local
111 if (SUCCEEDED(res)) {
117 "if composition is enabled", res);
H A Dawt_DnDDS.cpp260 HRESULT res; local
270 res = ::DoDragDrop(dragSource,
281 call_dSCddfinished(env, peer, res == DRAGDROP_S_DROP && effects != DROPEFFECT_NONE,
778 HRESULT res = GetProcessId(pFormatEtc, pmedium); local
779 if (res == S_OK) {
780 return res;
784 res = MatchFormatEtc(pFormatEtc, &matchedFormatEtc);
785 if (res != S_OK) {
786 return res;
943 HRESULT res local
983 HRESULT res = pmedium->pstm->Write((const void *)bBytes, (ULONG)nBytes, local
1050 HRESULT res = MatchFormatEtc(pFormatEtcIn, (FORMATETC *)NULL); local
1611 HRESULT res = pstm->Write((const void *)(m_buffer + m_off), nbytes, &written); local
[all...]
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DBasic.java198 Future<AsynchronousSocketChannel> res = listener.accept();
200 res.get(3, TimeUnit.SECONDS);
207 res.get();
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DPackageDocImpl.java286 AnnotationDesc res[] = new AnnotationDesc[sym.getAnnotationMirrors().length()];
289 res[i++] = new AnnotationDescImpl(env, a);
291 return res;
H A DTypeMaker.java98 com.sun.javadoc.Type res[]) {
101 res[i++] = getType(env, t);
103 return res;
97 getTypes(DocEnv env, List<Type> ts, com.sun.javadoc.Type res[]) argument
/openjdk7/jdk/src/share/native/java/util/zip/
H A DInflater.c89 int res; local
92 res = inflateSetDictionary(jlong_to_ptr(addr), buf + off, len);
94 switch (res) {
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConvMxN_ext.c181 mlib_s32 res; local
183 CLAMP_S32(res, src[i]);
185 dst[i * nch] = res;
/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DPngOutputTypeTest.java198 Node res = lookupNode(n.getNextSibling(), name);
200 if (res != null) {
201 return res;
/openjdk7/jdk/test/sun/management/windows/
H A Drevokeall.c177 BOOL res; local
241 res = GetVolumeInformation(root,
249 if (res == 0) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DURLClassPath.java199 Resource res = loader.getResource(name, check);
200 if (res != null) {
201 return res;
265 private Resource res = null;
268 if (res != null) {
273 res = loader.getResource(name, check);
274 if (res != null) {
290 Resource r = res;
291 res = null;
861 Resource res;
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decl_curve.c46 #define CHECK(func) if ((func) == NULL) { res = 0; goto CLEANUP; }
52 int res = 1; local
121 if (res != 1) {
H A Decp_jac.c60 mp_err res = MP_OKAY; local
73 return res;
84 mp_err res = MP_OKAY; local
116 return res;
148 mp_err res = MP_OKAY; local
219 return res;
236 mp_err res = MP_OKAY; local
314 return res;
329 mp_err res = MP_OKAY; local
395 return res;
411 mp_err res = MP_OKAY; local
[all...]
/openjdk7/langtools/test/tools/javac/scope/7017664/
H A DCompoundScopeTest.java219 ListBuffer<Symbol> res = ListBuffer.lb();
222 res.append(s);
225 return res.toList();
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DField.java141 Field res = new Field(clazz, name, type, modifiers, slot, signature, annotations);
142 res.root = this;
144 res.fieldAccessor = fieldAccessor;
145 res.overrideFieldAccessor = overrideFieldAccessor;
146 return res;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsOldGen.cpp187 HeapWord* res = allocate_noexpand(word_size); local
189 if (res == NULL) {
190 res = expand_and_allocate(word_size);
194 if (res != NULL) {
199 return res;
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableRS.cpp125 jbyte res = local
127 if (res == entry_val) {
130 assert(res == CardTableRS::cur_youngergen_and_prev_nonclean_card,
254 jbyte res = Atomic::cmpxchg(new_val, entry, entry_val); local
256 if (res == entry_val) return;
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DTunnelProxy.java232 boolean res;
252 res = true;
264 res = false;
266 res = true;
268 return res;
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c661 * res = func, free'ing the previous value of 'res' if function
664 #define TRANSFORM(res,func) { \
666 if (tmp != res) { \
667 free(res); \
668 res = tmp; \
670 jplis_assert((void*)res != (void*)NULL); \
/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...]

Completed in 184 milliseconds

<<11121314151617181920>>