Searched refs:group (Results 1 - 25 of 254) sorted by relevance

1234567891011

/openjdk7/jdk/src/share/classes/java/util/regex/
H A DMatchResult.java33 * groups and group boundaries can be seen but not modified through
54 * Returns the start index of the subsequence captured by the given group
62 * @param group
63 * The index of a capturing group in this matcher's pattern
65 * @return The index of the first character captured by the group,
66 * or <tt>-1</tt> if the match was successful but the group
74 * If there is no capturing group in the pattern
77 public int start(int group); argument
92 * captured by the given group during this match.
99 * @param group
114 end(int group) argument
135 public String group(); method in interface:MatchResult
172 group(int group) argument
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decl.c54 ECGroup *group; local
56 group = (ECGroup *) kmem_alloc(sizeof(ECGroup), kmflag);
58 group = (ECGroup *) malloc(sizeof(ECGroup));
60 if (group == NULL)
62 group->constructed = MP_YES;
63 group->meth = NULL;
64 group->text = NULL;
65 MP_DIGITS(&group->curvea) = 0;
66 MP_DIGITS(&group->curveb) = 0;
67 MP_DIGITS(&group
97 ECGroup *group = NULL; local
138 ECGroup *group = NULL; local
183 ECGroup *group = NULL; local
225 ECGroup *group = NULL; local
386 ECGroup *group = NULL; local
413 ECPoint_validate(const ECGroup *group, const mp_int *px, const mp_int *py) argument
429 ECGroup_free(ECGroup *group) argument
[all...]
H A Dec2_mont.c53 gf2m_Mdouble(mp_int *x, mp_int *z, const ECGroup *group, int kmflag) argument
61 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth));
62 MP_CHECKOK(group->meth->field_sqr(z, &t1, group->meth));
63 MP_CHECKOK(group->meth->field_mul(x, &t1, z, group->meth));
64 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth));
65 MP_CHECKOK(group
80 gf2m_Madd(const mp_int *x, mp_int *x1, mp_int *z1, mp_int *x2, mp_int *z2, const ECGroup *group, int kmflag) argument
112 gf2m_Mxy(const mp_int *x, const mp_int *y, mp_int *x1, mp_int *z1, mp_int *x2, mp_int *z2, const ECGroup *group) argument
186 ec_GF2m_pt_mul_mont(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
[all...]
H A Decp_jm.c57 mp_int *raz4, mp_int scratch[], const ECGroup *group)
80 MP_CHECKOK(group->meth->field_sqr(px, t0, group->meth));
81 MP_CHECKOK(group->meth->field_add(t0, t0, M, group->meth));
82 MP_CHECKOK(group->meth->field_add(t0, M, t0, group->meth));
83 MP_CHECKOK(group->meth->field_add(t0, paz4, M, group->meth));
86 MP_CHECKOK(group
55 ec_GFp_pt_dbl_jm(const mp_int *px, const mp_int *py, const mp_int *pz, const mp_int *paz4, mp_int *rx, mp_int *ry, mp_int *rz, mp_int *raz4, mp_int scratch[], const ECGroup *group) argument
125 ec_GFp_pt_add_jm_aff(const mp_int *px, const mp_int *py, const mp_int *pz, const mp_int *paz4, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, mp_int *rz, mp_int *raz4, mp_int scratch[], const ECGroup *group) argument
215 ec_GFp_pt_mul_jm_wNAF(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
[all...]
H A Decl_mult.c48 * of the group of points on the elliptic curve. Input and output values
51 ECPoint_mul(const ECGroup *group, const mp_int *k, const mp_int *px, argument
57 ARGCHK((k != NULL) && (group != NULL), MP_BADARG);
60 /* want scalar to be less than or equal to group order */
61 if (mp_cmp(k, &group->order) > 0) {
63 MP_CHECKOK(mp_mod(k, &group->order, &kt));
72 if (group->base_point_mul) {
73 MP_CHECKOK(group->base_point_mul(&kt, rx, ry, group));
75 MP_CHECKOK(group
105 ec_pts_mul_basic(const mp_int *k1, const mp_int *k2, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
160 ec_pts_mul_simul_w2(const mp_int *k1, const mp_int *k2, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
310 ECPoints_mul(const ECGroup *group, const mp_int *k1, const mp_int *k2, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry) argument
[all...]
H A Dec2_aff.c72 const ECGroup *group)
100 MP_CHECKOK(group->meth->field_add(py, qy, &tempy, group->meth));
101 MP_CHECKOK(group->meth->field_add(px, qx, &tempx, group->meth));
102 MP_CHECKOK(group->meth->
103 field_div(&tempy, &tempx, &lambda, group->meth));
104 MP_CHECKOK(group->meth->field_sqr(&lambda, &tempx, group->meth));
105 MP_CHECKOK(group
70 ec_GF2m_pt_add_aff(const mp_int *px, const mp_int *py, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, const ECGroup *group) argument
152 ec_GF2m_pt_sub_aff(const mp_int *px, const mp_int *py, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, const ECGroup *group) argument
172 ec_GF2m_pt_dbl_aff(const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
183 ec_GF2m_pt_mul_aff(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
276 ec_GF2m_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group) argument
[all...]
H A Decp_aff.c78 const ECGroup *group)
107 MP_CHECKOK(group->meth->field_sub(py, qy, &tempy, group->meth));
108 MP_CHECKOK(group->meth->field_sub(px, qx, &tempx, group->meth));
109 MP_CHECKOK(group->meth->
110 field_div(&tempy, &tempx, &lambda, group->meth));
120 MP_CHECKOK(group->meth->field_sqr(qx, &tempx, group->meth));
122 if (group
76 ec_GFp_pt_add_aff(const mp_int *px, const mp_int *py, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, const ECGroup *group) argument
162 ec_GFp_pt_sub_aff(const mp_int *px, const mp_int *py, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, const ECGroup *group) argument
183 ec_GFp_pt_dbl_aff(const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
196 ec_GFp_pt_mul_aff(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
289 ec_GFp_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group) argument
[all...]
H A Decp_jac.c58 mp_int *ry, mp_int *rz, const ECGroup *group)
68 if (group->meth->field_enc) {
69 MP_CHECKOK(group->meth->field_enc(rz, rz, group->meth));
82 mp_int *rx, mp_int *ry, const ECGroup *group)
105 MP_CHECKOK(group->meth->field_div(NULL, pz, &z1, group->meth));
106 MP_CHECKOK(group->meth->field_sqr(&z1, &z2, group->meth));
107 MP_CHECKOK(group
57 ec_GFp_pt_aff2jac(const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, mp_int *rz, const ECGroup *group) argument
81 ec_GFp_pt_jac2aff(const mp_int *px, const mp_int *py, const mp_int *pz, mp_int *rx, mp_int *ry, const ECGroup *group) argument
144 ec_GFp_pt_add_jac_aff(const mp_int *px, const mp_int *py, const mp_int *pz, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, mp_int *rz, const ECGroup *group) argument
233 ec_GFp_pt_dbl_jac(const mp_int *px, const mp_int *py, const mp_int *pz, mp_int *rx, mp_int *ry, mp_int *rz, const ECGroup *group) argument
326 ec_GFp_pt_mul_jac(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
407 ec_GFp_pts_mul_jac(const mp_int *k1, const mp_int *k2, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
[all...]
H A Decp.h53 mp_int *ry, const ECGroup *group);
58 mp_int *ry, const ECGroup *group);
62 mp_int *ry, const ECGroup *group);
65 mp_err ec_GFp_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group);
73 const ECGroup *group);
79 mp_int *ry, mp_int *rz, const ECGroup *group);
85 const ECGroup *group);
101 mp_int *rz, const ECGroup *group);
106 mp_int *rz, const ECGroup *group);
114 const ECGroup *group);
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DGroupable.java30 * asynchronous channel group.
34 AsynchronousChannelGroupImpl group(); method in interface:Groupable
H A DMembershipRegistry.java41 // map multicast group to keys
48 * Checks registry for membership of the group on the given
51 MembershipKey checkMembership(InetAddress group, NetworkInterface interf, argument
55 List<MembershipKeyImpl> keys = groups.get(group);
84 InetAddress group = key.group();
90 keys = groups.get(group);
94 groups.put(group, keys);
103 InetAddress group = key.group();
[all...]
/openjdk7/jdk/test/java/lang/ThreadGroup/
H A DStop.java35 private static final ThreadGroup group = new ThreadGroup(""); field in class:Stop
36 private static final Thread first = new Thread(group, new Stop());
37 private static final Thread second = new Thread(group, new Stop());
47 // When the first thread runs, it will stop the group.
51 group.stop();
54 // that the stopped thread group was successful
64 // Launch two threads as part of the same thread group
68 // Wait for the thread group stop to be issued
78 // first thread terminates the thread group.
H A DSuspend.java34 private static final ThreadGroup group = new ThreadGroup(""); field in class:Suspend
35 private static final Thread first = new Thread(group, new Suspend());
36 private static final Thread second = new Thread(group, new Suspend());
44 group.suspend();
55 // Launch two threads as part of the same thread group
59 // Wait for the thread group suspend to be issued
64 // Suppose, the thread group is now suspended
/openjdk7/jdk/src/share/classes/sun/rmi/runtime/
H A DNewThreadAction.java41 * The new thread may be created in the system thread group (the root
42 * of the thread group tree) or an internally created non-system
43 * thread group, as specified at construction of this class.
53 /** cached reference to the system (root) thread group */
57 ThreadGroup group = Thread.currentThread().getThreadGroup();
59 while ((parent = group.getParent()) != null) {
60 group = parent;
62 return group;
67 * special child of the system thread group for running tasks that
69 * the system thread group wil
78 private final ThreadGroup group; field in class:NewThreadAction
83 NewThreadAction(ThreadGroup group, Runnable runnable, String name, boolean daemon) argument
[all...]
/openjdk7/jdk/src/share/sample/nio/multicast/
H A DMulticastAddress.java51 private final InetAddress group; field in class:MulticastAddress
55 private MulticastAddress(InetAddress group, int port, NetworkInterface interf) { argument
56 this.group = group;
61 InetAddress group() { method in class:MulticastAddress
62 return group;
77 * Parses a string of the form "group:port[@interface]", returning
85 // get group and port
90 throw new IllegalArgumentException("group:port expected");
109 // get group addres
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsAsynchronousChannelProvider.java69 private Iocp toIocp(AsynchronousChannelGroup group) throws IOException { argument
70 if (group == null) {
73 if (!(group instanceof Iocp))
75 return (Iocp)group;
80 public AsynchronousServerSocketChannel openAsynchronousServerSocketChannel(AsynchronousChannelGroup group) argument
83 return new WindowsAsynchronousServerSocketChannelImpl(toIocp(group));
87 public AsynchronousSocketChannel openAsynchronousSocketChannel(AsynchronousChannelGroup group) argument
90 return new WindowsAsynchronousSocketChannelImpl(toIocp(group));
/openjdk7/jdk/test/java/beans/Beans/6669869/
H A DTestDesignTime.java39 ThreadGroup group = new ThreadGroup("$$$");
40 Thread thread = new Thread(group, new TestDesignTime());
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DBsdAsynchronousChannelProvider.java67 private Port toPort(AsynchronousChannelGroup group) throws IOException { argument
68 if (group == null) {
71 if (!(group instanceof KQueuePort))
73 return (Port)group;
78 public AsynchronousServerSocketChannel openAsynchronousServerSocketChannel(AsynchronousChannelGroup group) argument
81 return new UnixAsynchronousServerSocketChannelImpl(toPort(group));
85 public AsynchronousSocketChannel openAsynchronousSocketChannel(AsynchronousChannelGroup group) argument
88 return new UnixAsynchronousSocketChannelImpl(toPort(group));
H A DLinuxAsynchronousChannelProvider.java67 private Port toPort(AsynchronousChannelGroup group) throws IOException { argument
68 if (group == null) {
71 if (!(group instanceof EPollPort))
73 return (Port)group;
78 public AsynchronousServerSocketChannel openAsynchronousServerSocketChannel(AsynchronousChannelGroup group) argument
81 return new UnixAsynchronousServerSocketChannelImpl(toPort(group));
85 public AsynchronousSocketChannel openAsynchronousSocketChannel(AsynchronousChannelGroup group) argument
88 return new UnixAsynchronousSocketChannelImpl(toPort(group));
H A DSolarisAsynchronousChannelProvider.java68 private SolarisEventPort toEventPort(AsynchronousChannelGroup group) argument
71 if (group == null) {
74 if (!(group instanceof SolarisEventPort))
76 return (SolarisEventPort)group;
81 public AsynchronousServerSocketChannel openAsynchronousServerSocketChannel(AsynchronousChannelGroup group) argument
84 return new UnixAsynchronousServerSocketChannelImpl(toEventPort(group));
88 public AsynchronousSocketChannel openAsynchronousSocketChannel(AsynchronousChannelGroup group) argument
91 return new UnixAsynchronousSocketChannelImpl(toEventPort(group));
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DBasicMulticastTests.java44 InetAddress group,
49 group.getHostAddress(), nif.getName());
51 ProtocolFamily family = (group instanceof Inet4Address) ?
59 MembershipKey key = dc.join(group, nif);
60 MembershipKey other = dc.join(group, nif);
68 if (!key.group().equals(group))
69 throw new RuntimeException("group is incorrect");
83 key = dc.join(group, nif, source);
84 other = dc.join(group, ni
43 membershipKeyTests(NetworkInterface nif, InetAddress group, InetAddress source) argument
[all...]
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DBasic.java60 AsynchronousChannelGroup group;
63 group = AsynchronousChannelGroup.withCachedThreadPool(pool, rand.nextInt(5));
66 group = AsynchronousChannelGroup.withFixedThreadPool(nThreads, threadFactory);
68 group.shutdown();
69 if (!group.isShutdown())
71 // group should terminate quickly
72 boolean terminated = group.awaitTermination(3, TimeUnit.SECONDS);
79 // shutdown with channel in group
82 AsynchronousChannelGroup group;
85 group
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DGraphDocument.java57 public void addGroup(Group group) { argument
58 group.setDocument(this);
59 groups.add(group);
63 public void removeGroup(Group group) { argument
64 if (groups.contains(group)) {
65 group.setDocument(null);
66 groups.remove(group);
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DPosixFileAttributes.java55 * Returns the group owner of the file.
57 * @return the file group owner
61 GroupPrincipal group(); method in interface:PosixFileAttributes
H A DUserPrincipalLookupService.java31 * An object to lookup user and group principals by name. A {@link UserPrincipal}
33 * in a file system. A {@link GroupPrincipal} represents a <em>group identity</em>.
35 * name or group name (which are typically user or account names). Whether names
36 * and group names are case sensitive or not depends on the implementation.
37 * The exact definition of a group is implementation specific but typically a
38 * group represents an identity created for administrative purposes so as to
39 * determine the access rights for the members of the group. In particular it is
81 * Lookup a group principal by group name.
83 * <p> Where an implementation does not support any notion of group the
102 lookupPrincipalByGroupName(String group) argument
[all...]

Completed in 142 milliseconds

1234567891011