Searched defs:res (Results 126 - 150 of 362) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/sun/security/pkcs11/
H A Dj2secmod.c39 int res; local
47 res = versionCheck(requiredVersion);
48 dprintf2("-version >=%s: %d\n", requiredVersion, res);
51 return (res == 0) ? JNI_FALSE : JNI_TRUE;
60 int res; local
67 res = init(configDir);
71 dprintf1("-res: %d\n", res);
73 return (res == 0) ? JNI_TRUE : JNI_FALSE;
/openjdk7/hotspot/src/share/vm/code/
H A Dvmreg.hpp156 // VMReg res = VMRegImpl::as_VMReg(value() + offset);
157 VMReg res = stack2reg(reg2stack() + offset); local
158 assert(res->is_stack(), "must be");
159 return res;
H A DvtableStubs.cpp77 void* res = _chunk; local
80 return res;
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DpromotionInfo.hpp69 PromotedObject* res; local
72 res = (PromotedObject*)oopDesc::decode_heap_oop(_data._narrow_next);
74 res = (PromotedObject*)(_next & next_mask);
76 assert(oop(res)->is_oop_or_null(true /* ignore mark word */), "Not an oop?");
77 return res;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DdirtyCardQueue.cpp49 bool res = true; local
51 res = apply_closure_to_buffer(cl, _buf, _index, _sz,
54 if (res && consume) _index = _sz;
56 return res;
227 bool res = apply_closure_to_completed_buffer_helper(cl, worker_i, nd); local
228 if (res) Atomic::inc(&_processed_buffers_rs_thread);
229 return res;
H A Dg1GCPhaseTimes.cpp42 int res = vsnprintf(&_buffer[_cur], BUFFER_LEN - _cur, format, ap); local
43 if (res != -1) {
44 _cur += res;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DparGCAllocBuffer.hpp77 HeapWord* res = _top; local
80 return res;
239 HeapWord* res = ParGCAllocBuffer::allocate(word_sz); local
240 if (res != NULL) {
241 _bt.alloc_block(res, word_sz);
243 res = allocate_slow(word_sz);
245 return res;
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DgcCause.hpp112 int res = jio_snprintf(_buffer + _position, _length - _position, "%s", str); local
113 _position += res;
114 assert(res >= 0 && _position <= _length,
115 err_msg("Need to increase the buffer size in GCCauseString? %d", res));
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp255 Chunk* res = get_chunk_from_tree(size, dither, splay()); local
256 assert(res == NULL || res->is_free(),
258 return res;
H A DcollectorPolicy.cpp166 CardTableRS* res = new CardTableRS(whole_heap, max_covered_regions); local
167 return res;
H A DtenuredGeneration.cpp434 bool res = (available >= av_promo) || (available >= max_promotion_in_bytes); local
439 res? "":" not", available, res? ">=":"<",
442 return res;
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAdaptiveCoding.java207 public static int parseMetaCoding(byte[] bytes, int pos, Coding dflt, CodingMethod res[]) { argument
238 res[0] = newc;
253 StringBuilder res = new StringBuilder(20);
255 res.append("run(");
257 res.append(run.headLength).append("*");
258 res.append(keyString(run.headCoding));
261 res.append(" ");
266 res.append(" **").append(keyString(run.tailCoding));
267 res.append(")");
268 return res
[all...]
H A DPopulationCoding.java447 public static int parseMetaCoding(byte[] bytes, int pos, Coding dflt, CodingMethod res[]) { argument
468 res[0] = pop;
484 StringBuilder res = new StringBuilder(100);
485 res.append("pop(").append("fVlen=").append(fVlen);
487 res.append(" fV=[");
489 res.append(i==1?"":",").append(fValues[i]);
491 res.append(";").append(computeSentinelValue());
492 res.append("]");
494 res.append(" fc=").append(keyString(favoredCoding));
495 res
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapNamingEnumeration.java45 private LdapResult res; field in class:LdapNamingEnumeration
88 res = answer;
129 res = homeCtx.getSearchReply(enumClnt, res);
130 if (res == null) {
135 entries = res.entries;
141 if ((res.status != LdapClient.LDAP_SUCCESS) ||
142 ((res.status == LdapClient.LDAP_SUCCESS) &&
143 (res.referrals != null))) {
147 homeCtx.processReturnCode(res, listAr
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/keyresolver/
H A DKeyResolver.java374 List<KeyResolver> res; field in class:KeyResolver.ResolverIterator
378 res = list;
379 it = res.iterator();
/openjdk7/hotspot/src/os/solaris/vm/
H A Djsig.c200 int res; local
223 res = call_os_sigaction(sig, act, &oldAct);
233 return res;
237 res = call_os_sigaction(sig, act, oact);
240 return res;
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp198 DWORD res = ::WaitForSingleObject(mutex(), INFINITE);
199 if (res != WAIT_OBJECT_0) {
235 DWORD res = ::WaitForSingleObject(wakeup(), INFINITE); local
236 guarantee(res == WAIT_OBJECT_0, "wait failed");
238 res = ::WaitForSingleObject(mutex(), INFINITE);
239 guarantee(res == WAIT_OBJECT_0, "wait failed");
328 DWORD res = ::WaitForSingleObject(Win32AttachListener::mutex(), INFINITE); local
329 if (res == WAIT_OBJECT_0) {
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c218 int res; local
296 if ((res = read(fd, bp + bytes, MINREAD)) <= 0) {
300 bytes += res;
308 if ((res = read(fd, bp + bytes, read_size)) <= 0) {
312 bytes += res;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsignature.cpp400 ssize_t res = is_valid_type(&method_sig[index], len - index); local
401 if (res == -1) {
404 index += res;
/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.cpp89 oop res = (oop)result.get_jobject(); local
90 assert(res->is_typeArray(), "just checking");
91 assert(typeArrayKlass::cast(res->klass())->element_type() == T_BYTE, "just checking");
94 typeArrayOop ba = typeArrayOop(res);
95 jbyte* addr = typeArrayOop(res)->byte_at_addr(0);
198 int res = dumper.dump(op->arg(0)); local
199 if (res == 0) {
248 bool res = CommandLineFlags::boolAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
249 if (! res) {
252 return res
266 bool res = CommandLineFlags::intxAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
285 bool res = CommandLineFlags::uintxAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
304 bool res = CommandLineFlags::uint64_tAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
319 bool res = CommandLineFlags::ccstrAtPut((char*)name, &value, ATTACH_ON_DEMAND); local
418 jint res = JNI_OK; local
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dworkgroup.cpp457 bool res = old != 0; local
459 if (!res) {
464 return res;
498 jint res = Atomic::cmpxchg(t+1, n_claimed_ptr, t);
499 if (res == (jint)t) {
511 uint res = Atomic::cmpxchg(complete+1, n_completed_ptr, complete);
512 if (res == complete) {
515 complete = res;
592 int res = _hd;
593 _hd = _ids[res];
[all...]
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DUnixOperatingSystem_md.c237 kern_return_t res = task_info(mach_task_self(), TASK_BASIC_INFO, (task_info_t)&t_info, &t_info_count);
238 if (res != KERN_SUCCESS) {
314 kern_return_t res; local
317 res = host_statistics(mach_host_self(), HOST_VM_INFO, (host_info_t)&vm_stats, &count);
318 if (res != KERN_SUCCESS) {
371 int res; local
381 res = proc_pidinfo(my_pid, PROC_PIDTBSDINFO, 0, &bsdinfo, PROC_PIDTBSDINFO_SIZE);
382 if (res <= 0) {
398 res = proc_pidinfo(my_pid, PROC_PIDLISTFDS, 0, fds, fds_size);
399 if (res <
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_ByteGray.c723 mlib_s32 i, j, x0, x1, mask, res; local
773 res = LutU32[x0];
774 mask = res >> 16;
775 *dst++ = (res & mask) | (*dst &~ mask);
783 res = (LutU32[x0] << 8) | LutU32[x1];
784 mask = res >> 16;
785 ((mlib_u16*)dst)[0] = (res & mask) | (((mlib_u16*)dst)[0] &~ mask);
791 res = LutU32[x0];
792 mask = res >> 16;
793 *dst = (res
891 mlib_s32 i, j, x0, x1, mask, res; local
[all...]
H A Dvis_UshortGray.c486 mlib_s32 i, j, x0, mask, res; local
537 res = LutU32[x0];
538 mask = res >> 16;
539 *dst = (res & mask) | (*dst &~ mask);
638 mlib_s32 i, j, x0, mask, res; local
691 res = LutU32[x0];
692 mask = res >> 16;
693 *dst = (res & mask) | (*dst &~ mask);
H A Dvis_XorBlit.c98 mlib_d64 res, xorpixel64, alphamask64, dzero; local
132 res = vis_freg_pair(*pp0, *pp1);
133 res = vis_fxor(res, xorpixel64);
134 res = vis_fandnot(alphamask64, res);
135 res = vis_fxor(res, *(mlib_d64*)(dst_ptr + i));
136 vis_pst_32(res, dst_ptr + i, neg_mask);
157 mlib_d64 res, xorpixel6 local
216 mlib_d64 res, xorpixel64, alphamask64, dzero, dFF; local
278 mlib_d64 res, xorpixel64, alphamask64, rgbx_mask, dzero; local
[all...]

Completed in 102 milliseconds

1234567891011>>