Searched refs:obytes (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c464 int obytes; local
481 obytes = old_size * ltable->elem_size;
485 (void)memcpy(new_table, old_table, obytes);
486 (void)memset(((char*)new_table)+obytes, 0, nbytes-obytes);
496 obytes = BV_ELEMENT_COUNT(old_size)*(int)sizeof(BV_CHUNK_TYPE);
500 (void)memcpy(new_bv, old_bv, obytes);
501 (void)memset(((char*)new_bv)+obytes, 0, nbytes-obytes);
H A Dhprof_reference.c635 int obytes; local
637 obytes = num_elements*(int)sizeof(ObjectIndex);
641 (void)memcpy(new_values, values, obytes);
642 (void)memset(((char*)new_values)+obytes, 0,
643 nbytes-obytes);
/openjdk7/jdk/test/javax/rmi/ssl/
H A DSocketFactoryTest.java78 final ByteArrayOutputStream obytes =
81 new ObjectOutputStream(obytes);
87 new ByteArrayInputStream(obytes.toByteArray());

Completed in 35 milliseconds