Searched defs:pi (Results 26 - 36 of 36) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DPath2D.java232 PathIterator pi = s.getPathIterator(at);
233 setWindingRule(pi.getWindingRule());
236 append(pi, false);
654 public final void append(PathIterator pi, boolean connect) { argument
656 while (!pi.isDone()) {
657 switch (pi.currentSegment(coords)) {
687 pi.next();
1066 PathIterator pi = s.getPathIterator(at);
1067 setWindingRule(pi.getWindingRule());
1070 append(pi, fals
1379 append(PathIterator pi, boolean connect) argument
1823 append(PathIterator pi, boolean connect) argument
1969 contains(PathIterator pi, double x, double y) argument
2001 contains(PathIterator pi, Point2D p) argument
2068 contains(PathIterator pi, double x, double y, double w, double h) argument
2119 contains(PathIterator pi, Rectangle2D r) argument
2218 intersects(PathIterator pi, double x, double y, double w, double h) argument
2269 intersects(PathIterator pi, Rectangle2D r) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DShaderGen.c79 PROCESS_INFORMATION pi; local
99 CREATE_NO_WINDOW, NULL, NULL, &si, &pi);
104 GetExitCodeProcess(pi.hProcess, &code);
114 CloseHandle(pi.hThread);
115 CloseHandle(pi.hProcess);
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIRenderer.cpp53 const double pi = 3.1415926535; local
54 const double toRadians = 2 * pi / 360;
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_lgamma_r.c63 * lgamma(x)~(x-0.5)log(x)-x+0.5*log(2pi)+1/(12x)-1/(360x**3)+....
65 * lgamma(x)~(x-0.5)*(log(x)-1)-.5*(log(2pi)-1) + ...)
75 * -x*G(-x)*G(x) = pi/sin(pi*x),
77 * G(x) = pi/(sin(pi*x)*(-x)*G(-x))
78 * since G(-x) is positive, sign(G(x)) = sign(sin(pi*x)) for x<0
79 * Hence, for x<0, signgam = sign(sin(pi*x)) and
81 * = log(pi/(|x*sin(pi*
104 pi = 3.14159265358979311600e+00, /* 0x400921FB, 0x54442D18 */ variable
[all...]
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c1173 PROCESS_INFORMATION pi; local
1242 memset(&pi, 0, sizeof(pi));
1253 (LPPROCESS_INFORMATION)&pi)) { /* (out) process information */
1259 if (WaitForSingleObject(pi.hProcess, INFINITE) != WAIT_FAILED) {
1260 if (GetExitCodeProcess(pi.hProcess, &exitCode) == FALSE)
1267 CloseHandle(pi.hThread);
1268 CloseHandle(pi.hProcess);
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c986 PROCESS_INFORMATION pi; local
1055 memset(&pi, 0, sizeof(pi));
1066 (LPPROCESS_INFORMATION)&pi)) { /* (out) process information */
1071 if (WaitForSingleObject(pi.hProcess, INFINITE) != WAIT_FAILED) {
1072 if (GetExitCodeProcess(pi.hProcess, &exitCode) == FALSE)
1079 CloseHandle(pi.hThread);
1080 CloseHandle(pi.hProcess);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java329 protected ProgressSource pi; field in class:HttpURLConnection
1020 http.parseHTTP(responses, pi, this);
1310 pi = new ProgressSource(url, method);
1311 pi.beginTracking();
1323 http.parseHTTP(responses, pi, this);
1579 if (pi != null) {
1580 pi.finishTracking();
1581 pi = null;
2505 if (pi != null) {
2506 pi
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.cpp1077 Node* pi = p->at(i); local
1078 Node* pi_def = pi->in(idx);
1492 Node* pi = p->at(i); local
1493 Node* in = pi->in(opd_idx);
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp1213 PrivilegedElement pi; variable
1216 pi.initialize(&vfst, h_context(), thread->privileged_stack_top(), CHECK_NULL);
1217 thread->set_privileged_stack_top(&pi);
1230 assert(thread->privileged_stack_top() != NULL && thread->privileged_stack_top() == &pi, "wrong top element");
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java1320 Component findUnderMouseInWindow(PointerInfo pi) { argument
1329 Point relativeToWindow = win.pointRelativeToComponent(pi.getLocation());
1368 PointerInfo pi = (PointerInfo)java.security.AccessController.doPrivileged(
1377 Component inTheSameWindow = findUnderMouseInWindow(pi);
1381 return pointRelativeToComponent(pi.getLocation());
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4833 PROCESS_INFORMATION pi; local
4837 memset(&pi, 0, sizeof(pi));
4847 &pi); // (out) process information
4851 WaitForSingleObject(pi.hProcess, INFINITE);
4854 GetExitCodeProcess(pi.hProcess, &exit_code);
4857 CloseHandle(pi.hProcess);
4858 CloseHandle(pi.hThread);

Completed in 398 milliseconds

12