Searched defs:result (Results 126 - 150 of 605) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSecureRandom.java157 // Store result. Check for state collision.
196 public synchronized void engineNextBytes(byte[] result) { argument
211 todo = (result.length - index) < (DIGEST_SIZE - r) ?
212 (result.length - index) : (DIGEST_SIZE - r);
215 result[i] = output[r];
223 while (index < result.length) {
230 todo = (result.length - index) > DIGEST_SIZE ?
231 DIGEST_SIZE : result.length - index;
234 result[index++] = output[i];
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBuildStep.java34 * and a result code.
46 private int result; field in class:BuildStep
49 * result code associated with a certificate that may continue a path from
55 * result code associated with a certificate that was tried, but that
62 * result code associated with a certificate that successfully continues the
68 * result code associated with a certificate that represents the end of the
74 * result code associated with a certificate that represents the end of a
83 * @param res result, where result is one of POSSIBLE, BACK,
92 result
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DResultSet.java157 public void record(Result result) { argument
158 results.addElement(result);
169 pw.println("<result-set version=\"0.1\" name=\""+title+"\">");
188 pw.println("</result-set>");
/openjdk7/jdk/test/java/util/concurrent/CountDownLatch/
H A DBasic.java39 private volatile Throwable result = null; field in class:Awaiter
40 protected void result(Throwable result) { this.result = result; } argument
41 public Throwable result() { return this.result; } method in class:Awaiter
63 catch (Throwable result) { result(result); }}};
[all...]
/openjdk7/jdk/src/solaris/back/
H A Dlinker_md.c125 void * result; local
127 result = dlopen(name, RTLD_LAZY);
130 result = dlopen(name, RTLD_NOW);
142 if (result == NULL) {
146 return result;
/openjdk7/langtools/test/tools/javac/
H A DQualifiedThisAndSuper_3.java70 void check(String expr, String result, String expected) { argument
71 if (!result.equals(expected)) {
73 " : result " + result + ", expected " + expected);
/openjdk7/langtools/test/tools/javac/api/6406133/
H A DT6406133.java46 String result; field in class:T6406133.DiagnosticTester
52 result = diagnostic.getMessage(locale); //6406133
94 String res = useListener ? listener.result : pw.toString();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathResultImpl.java50 * <p>The <code>XPathResult</code> interface represents the result of the
52 * node. Since evaluation of an XPath expression can result in various
53 * result types, this object makes it possible to discover and manipulate
54 * the type and value of the result.</p>
71 * The xpath object that wraps the expression used for this result.
105 XPathResultImpl(short type, XObject result, Node contextNode, XPath xpath) { argument
113 if (null == result) {
115 throw new XPathException(XPathException.INVALID_EXPRESSION_ERR,fmsg); // Empty XPath result object
118 this.m_resultObj = result;
122 // If specified result wa
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/presentation/rmi/
H A DStubWrapper.java135 NamedValue result)
137 return object._create_request( ctx, operation, arg_list, result ) ;
141 NamedValue result, ExceptionList exclist, ContextList ctxlist)
143 return object._create_request( ctx, operation, arg_list, result,
134 _create_request( Context ctx, String operation, NVList arg_list, NamedValue result) argument
140 _create_request( Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeStrike.java131 void getGlyphImageBounds(int glyphCode, Point2D.Float pt, Rectangle result) { argument
133 strike.getGlyphImageBounds(glyphCode & SLOTMASK, pt, result);
H A DFontStrike.java58 // pt, result in device space
61 Rectangle result);
59 getGlyphImageBounds(int glyphcode, Point2D.Float pt, Rectangle result) argument
/openjdk7/hotspot/src/share/vm/ci/
H A DciField.cpp39 // This class represents the result of a field lookup in the VM.
347 FieldAccessInfo result; local
350 LinkResolver::resolve_field(result, c_pool, _cp_index,
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaAssertions.cpp211 bool result = systemClass ? systemClassDefault() : userClassDefault(); local
212 trace(classname, systemClass ? "system" : "user", "default", result);
213 return result;
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp52 ObjectValue* result = new ObjectValue(id); local
54 _obj_pool->push(result);
55 result->read_object(this);
56 return result;
79 ScopeValue* result = NULL; local
81 case LOCATION_CODE: result = new LocationValue(stream); break;
82 case CONSTANT_INT_CODE: result = new ConstantIntValue(stream); break;
83 case CONSTANT_OOP_CODE: result = new ConstantOopReadValue(stream); break;
84 case CONSTANT_LONG_CODE: result = new ConstantLongValue(stream); break;
85 case CONSTANT_DOUBLE_CODE: result
[all...]
H A DscopeDesc.cpp93 GrowableArray<ScopeValue*>* result = new GrowableArray<ScopeValue*> (length); local
95 result->push(ScopeValue::read_from(stream));
97 return result;
102 GrowableArray<ScopeValue*>* result = new GrowableArray<ScopeValue*>();
103 DebugInfoReadStream* stream = new DebugInfoReadStream(_code, decode_offset, result);
106 // Objects values are pushed to 'result' array during read so that
110 assert(result->length() == length, "inconsistent debug information");
111 return result;
119 GrowableArray<MonitorValue*>* result = new GrowableArray<MonitorValue*> (length); local
121 result
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1AllocRegion.cpp124 HeapWord* result = allocate(new_alloc_region, word_size, _bot_updates); local
125 assert(result != NULL, ar_ext_msg(this, "the allocation should succeeded"));
134 return result;
186 void G1AllocRegion::trace(const char* str, size_t word_size, HeapWord* result) { argument
188 // and the result are considered part of level 2 tracing and are
190 if ((word_size == 0 && result == NULL) || (G1_ALLOC_REGION_TRACING > 1)) {
206 if (result != NULL) {
208 word_size, result);
H A Dg1CollectedHeap.inline.hpp68 HeapWord* result = _mutator_alloc_region.attempt_allocation(word_size, local
70 if (result == NULL) {
71 result = attempt_allocation_slow(word_size, gc_count_before_ret);
74 if (result != NULL) {
75 dirty_young_block(result, word_size);
77 return result;
85 HeapWord* result = _survivor_gc_alloc_region.attempt_allocation(word_size, local
87 if (result == NULL) {
89 result = _survivor_gc_alloc_region.attempt_allocation_locked(word_size,
92 if (result !
102 HeapWord* result = _old_gc_alloc_region.attempt_allocation(word_size, local
[all...]
H A Dvm_operations_g1.hpp50 HeapWord* result() { return _result; } function in class:VM_G1OperationWithAllocRequest
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DasPSYoungGen.cpp78 size_t result = gen_size_limit() - current_committed_size; local
79 size_t result_aligned = align_size_down(result, heap->young_gen_alignment());
114 size_t result = policy->eden_increment_aligned_down(max_contraction); local
115 size_t result_aligned = align_size_down(result, gen_alignment);
H A DobjectStartArray.hpp67 jbyte* result = &_offset_base[uintptr_t(p) >> block_shift]; local
68 assert(_blocks_region.contains(result),
69 "out of bounds result in byte_for");
70 return result;
78 HeapWord* result = (HeapWord*) (delta << block_shift); local
79 assert(_covered_region.contains(result),
81 return result;
101 HeapWord* result = (HeapWord*) (delta << block_shift); local
102 result += *p;
104 assert(_covered_region.contains(result),
[all...]
H A DpsScavenge.hpp147 const bool result = (o >= _young_generation_boundary); local
148 return result;
H A DpsVirtualspace.cpp72 bool result = commit_size > 0 ? expand_by(commit_size) : true; local
74 return result;
104 bool result = special() || local
106 if (result) {
110 return result;
122 bool result = special() || os::uncommit_memory(base_addr, bytes); local
123 if (result) {
127 return result;
273 bool result = special() || local
275 if (result) {
291 bool result = special() || os::uncommit_memory(base_addr, bytes); local
[all...]
H A DpsYoungGen.hpp161 HeapWord* result = eden_space()->cas_allocate(word_size); local
162 return result;
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.inline.hpp135 HeapWord* result = NULL; local
137 result = allocate_from_tlab(klass, THREAD, size);
138 if (result != NULL) {
140 "Unexpected exception, will result in uninitialized storage");
141 return result;
145 result = Universe::heap()->mem_allocate(size,
147 if (result != NULL) {
149 check_for_non_bad_heap_word_value(result, size));
151 "Unexpected exception, will result in uninitialized storage");
156 return result;
208 HeapWord* result = Universe::heap()->permanent_mem_allocate(size); local
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A Dsymbol.cpp159 jchar* result = NEW_RESOURCE_ARRAY(jchar, length); local
161 UTF8::convert_to_unicode((char*)this_ptr->bytes(), result, length);
163 return result;

Completed in 58 milliseconds

1234567891011>>