Searched defs:ret_val (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_new.cpp85 register void *ret_val = malloc(size); local
86 if (ret_val == NULL) {
90 return ret_val;
94 register void *ret_val = calloc(num, size); local
95 if (ret_val == NULL) {
99 return ret_val;
103 register void *ret_val = realloc(memblock, size); local
107 return ret_val; // even if it's NULL
110 if (ret_val == NULL) {
114 return ret_val;
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweep.cpp683 jlong ret_val = now - _time_of_last_gc; local
685 if (ret_val < 0) {
686 NOT_PRODUCT(warning("time warp: "INT64_FORMAT, ret_val);)
689 return ret_val;
H A DpsParallelCompact.cpp3533 jlong ret_val = now - _time_of_last_gc; local
3535 if (ret_val < 0) {
3536 NOT_PRODUCT(warning("time warp: "INT64_FORMAT, ret_val);)
3539 return ret_val;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dmulti_font.c354 XmString ret_val; local
356 ret_val = _XmStringNCreate (text, tag, len);
358 return ret_val;
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp410 address ret_val; local
411 if ((ret_val = ec->match(exception,pc)) != NULL) {
412 return ret_val;
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp3295 const char* ret_val = NULL; local
3299 ret_val = pl->key();
3306 return ret_val;
3311 char* ret_val = NULL; local
3315 ret_val = pl->value();
3322 return ret_val;

Completed in 65 milliseconds