Searched defs:from (Results 1 - 7 of 7) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/converter/
H A DConverter.java29 T convert(F from); argument
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DArrayUtil.java87 public static <F, T> T[] convert(F[] from, Class<T> toClass, argument
89 T[] to = (T[])Array.newInstance(toClass, from.length);
90 for (int i = 0; i < from.length; i++) {
91 to[i] = converter.convert(from[i]);
H A DCollectionUtil.java52 Collection<? extends F> from, Converter<F, T> converter) {
54 if (from == null) {
58 List<T> to = new ArrayList<T>(from.size());
59 for (F f : from) {
51 convert( Collection<? extends F> from, Converter<F, T> converter) argument
/solaris-userland-s11u3/components/visual-panels/apache/src/java/vpanels/app/apache/com/oracle/solaris/vp/panels/apache/client/swing/
H A DPropertyGroupNamePool.java135 private int getNext(int from) { argument
136 while (Collections.binarySearch(existing, from) >= 0 ||
137 Collections.binarySearch(reserved, from) >= 0) {
138 from++;
140 return from;
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/
H A DTableSorter.java34 // Imports for picking up mouse events from the JTable.
61 * (This code taken from the Swing table examples.)
101 // We copy all returned values from the getValue call in case
247 public void shuttlesort(int from[], int to[], int low, int high) { argument
253 shuttlesort(to, from, low, middle);
254 shuttlesort(to, from, middle, high);
274 if (high - low >= 4 && compare(from[middle-1], from[middle]) <= 0) {
276 to[i] = from[i];
284 if (q >= high || (p < middle && compare(from[
[all...]
/solaris-userland-s11u3/components/openssl/common/engines/pkcs11/
H A De_pk11_pub.c35 * endorse or promote products derived from this software without
39 * 5. Products derived from this software may not be called "OpenSSL"
110 * token using the passphrasedialog keyword that we inherit from the parent.
116 static int pk11_RSA_public_encrypt(int flen, const unsigned char *from,
118 static int pk11_RSA_private_encrypt(int flen, const unsigned char *from,
120 static int pk11_RSA_public_decrypt(int flen, const unsigned char *from,
122 static int pk11_RSA_private_decrypt(int flen, const unsigned char *from,
136 static int pk11_RSA_public_encrypt_low(int flen, const unsigned char *from,
138 static int pk11_RSA_private_encrypt_low(int flen, const unsigned char *from,
140 static int pk11_RSA_public_decrypt_low(int flen, const unsigned char *from,
472 pk11_RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
523 pk11_RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
563 pk11_RSA_private_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
651 pk11_RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
732 pk11_RSA_public_encrypt_low(int flen, const unsigned char *from, unsigned char *to, RSA *rsa) argument
789 pk11_RSA_private_encrypt_low(int flen, const unsigned char *from, unsigned char *to, RSA *rsa) argument
847 pk11_RSA_private_decrypt_low(int flen, const unsigned char *from, unsigned char *to, RSA *rsa) argument
904 pk11_RSA_public_decrypt_low(int flen, const unsigned char *from, unsigned char *to, RSA *rsa) argument
[all...]
H A De_pk11.c35 * endorse or promote products derived from this software without
39 * 5. Products derived from this software may not be called "OpenSSL"
173 * invalid handle returned from the search operation.
314 static int pk11_digest_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from);
1130 * from ENGINE_finish(). However, if there is still at least one
1188 /* get the C_GetFunctionList function from the loaded library */
1197 /* get the full function list from the loaded library */
1449 /* Free all BIGNUM structures from PK11_SESSION. */
1505 * The returned PK11_SESSION structure is disconnected from the freelist.
1547 * structure from th
2828 pk11_digest_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from) argument
[all...]

Completed in 57 milliseconds