Searched defs:fn (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_scalb.c28 * __ieee754_scalb(x, fn) is provide for
37 double __ieee754_scalb(double x, int fn) argument
39 double __ieee754_scalb(x,fn)
40 double x; int fn;
44 double __ieee754_scalb(double x, double fn)
46 double __ieee754_scalb(x,fn)
47 double x, fn;
52 return scalbn(x,fn);
54 if (isnan(x)||isnan(fn)) return x*fn;
[all...]
H A Dw_scalb.c28 * wrapper scalb(double x, double fn) is provide for
39 double scalb(double x, int fn) /* wrapper scalb */ argument
41 double scalb(double x, double fn) /* wrapper scalb */
44 double scalb(x,fn) /* wrapper scalb */
46 double x; int fn;
48 double x,fn;
53 return __ieee754_scalb(x,fn);
56 z = __ieee754_scalb(x,fn);
59 return __kernel_standard(x,(double)fn,32); /* scalb overflow */
62 return __kernel_standard(x,(double)fn,3
[all...]
H A De_rem_pio2.c102 double z,w,t,r,fn; local
138 fn = (double)n;
139 r = t-fn*pio2_1;
140 w = fn*pio2_1t; /* 1st round good to 85 bit */
149 w = fn*pio2_2;
151 w = fn*pio2_2t-((t-r)-w);
156 w = fn*pio2_3;
158 w = fn*pio2_3t-((t-r)-w);
/openjdk7/jdk/test/java/io/File/
H A DToURL.java35 static void go(String fn) throws Exception { argument
36 File f = new File(fn);
H A DToURI.java38 static void go(String fn) throws Exception { argument
39 File f = new File(fn);
H A DMaxPathLength.java94 static void testLongPath(int max, String fn, argument
104 File f = new File(pathString + sep + fn);
113 File fu = new File(pathString + sep + fn.toUpperCase());
166 if (list == null || !fn.equals(list[0])) {
171 if (flist == null || !fn.equals(flist[0].getName()))
/openjdk7/langtools/test/tools/javac/versions/
H A DCheckClassFileVersion.java31 static String get(String fn) throws IOException { argument
33 FileChannel fc = new FileInputStream(fn).getChannel();
/openjdk7/jdk/test/java/io/RandomAccessFile/
H A DSetLength.java37 static void go(File fn, int max) throws IOException { argument
42 f = new RandomAccessFile(fn, "rw");
62 File fn = new File("x.SetLength");
64 go(fn, 20);
65 fn.delete();
66 go(fn, 64 * 1024);
67 RandomAccessFile f = new RandomAccessFile(fn, "r");
78 fn.delete();
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DSignatureValidator.java49 boolean validate(String fn, KeySelector ks, boolean cache) argument
51 return validate(fn, ks, null, cache);
54 boolean validate(String fn, KeySelector ks, URIDereferencer ud, argument
60 Document doc = dbf.newDocumentBuilder().parse(new File(dir, fn));
/openjdk7/jdk/test/java/io/pathNames/unix/
H A DTrailingSlash.java84 static void go(String fn, String fns) throws Exception { argument
88 File f = new File(fn);
94 log.println(" " + fn + " does not exist");
99 log.println(" " + fn + " is a directory");
104 log.println(" " + fn + " is a file");
/openjdk7/langtools/test/tools/javac/
H A DCaptureInSubtype.java59 static Flaw<Number> fn = new Flaw<Number>(new Integer(3)); field in class:CaptureInSubtype.ShowFlaw
61 Flaw<?> m(){return fn;}
70 Number n = ShowFlaw.fn.get().get(0);
/openjdk7/jdk/src/share/classes/sun/java2d/cmm/
H A DProfileDeferralInfo.java43 public ProfileDeferralInfo(String fn, int type, int ncomp, int pclass) { argument
46 filename = fn;
/openjdk7/jdk/src/share/sample/nio/server/
H A DFileContent.java56 private File fn; field in class:FileContent
59 fn = new File(ROOT,
70 String nm = fn.getName();
90 fc = new RandomAccessFile(fn, "r").getChannel();
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvFill.java56 final String fn; field in class:SourceFile
120 return fn;
167 SourceFile(String fn) throws IOException { argument
168 this.fn = fn;
169 Reader reader = new FileReader(fn);
182 System.err.println("Fatal error parsing file: " + fn);
/openjdk7/jdk/test/java/io/pathNames/
H A DGeneral.java169 public static void ensureNon(String fn) { argument
170 if ((new File(fn)).exists()) {
171 throw new RuntimeException("Test path " + fn + " exists");
/openjdk7/jdk/src/share/classes/java/lang/
H A DPackage.java515 String fn = getSystemPackage0(name);
516 if (fn != null) {
517 pkg = defineSystemPackage(name, fn);
539 final String fn)
545 URL url = urls.get(fn);
548 File file = new File(fn);
554 urls.put(fn, url);
557 mans.put(fn, loadManifest(fn));
564 Manifest man = mans.get(fn);
538 defineSystemPackage(final String iname, final String fn) argument
580 loadManifest(String fn) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemPtrArray.hpp58 virtual void sort(FN_SORT fn) = 0;
269 void sort(FN_SORT fn) { argument
271 qsort((void*)_data, _size, sizeof(E), fn);
H A DmemRecorder.hpp111 void sort(FN_SORT fn) { argument
112 qsort((void*)_data, _size, sizeof(E), fn);
H A Dmanagement.cpp1771 oop fn = JNIHandles::resolve_external_guard(flag_name); variable
1772 if (fn == NULL) {
1776 char* name = java_lang_String::as_utf8_string(fn);
/openjdk7/jdk/src/solaris/native/sun/tools/attach/
H A DLinuxVirtualMachine.c99 char fn[32]; local
106 sprintf(fn, "/proc/%d/stat", pid);
107 fp = fopen(fn, "r");
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DTransfers.java199 private final File fn; field in class:Transfers.FileSource
205 fn = sourceFile;
206 raf = new RandomAccessFile(fn, "rw");
297 private final File fn; field in class:Transfers.FileTarget
303 fn = targetFile;
304 raf = new RandomAccessFile(fn, "rw");
497 File fn = File.createTempFile("xfer.fch.", "");
498 fn.deleteOnExit();
499 FileChannel fc = new RandomAccessFile(fn, "rw").getChannel();
559 fn
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A DattachListener_linux.cpp470 char fn[PATH_MAX+1]; local
471 sprintf(fn, ".attach_pid%d", os::current_process_id());
474 RESTARTABLE(::stat64(fn, &st), ret);
476 snprintf(fn, sizeof(fn), "%s/.attach_pid%d",
478 RESTARTABLE(::stat64(fn, &st), ret);
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DFp.java151 * @return [fn(x) | x <- items]
153 public static <A,B> List<B> map(Map1<A,B> fn, final Collection<A> xs){ argument
155 for(A x : xs) rs.add(fn.apply(x));
159 public static <A,B,C> List<C> map2(Map2<A,B,C> fn, final Collection<A> as, final Collection<B> bs){ argument
165 cs.add(fn.apply(aiter.next(), biter.next()));
172 public static <A> void each(Map1<A,?> fn, final Collection<A> xs){ argument
173 for(A x : xs) fn.apply(x);
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp611 char fn[PATH_MAX+1]; local
612 sprintf(fn, ".attach_pid%d", os::current_process_id());
615 RESTARTABLE(::stat64(fn, &st), ret);
617 snprintf(fn, sizeof(fn), "%s/.attach_pid%d",
619 RESTARTABLE(::stat64(fn, &st), ret);
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntimeTrig.cpp477 double z,w,t,r,fn; local
514 fn = (double)n;
515 r = t-fn*pio2_1;
516 w = fn*pio2_1t; /* 1st round good to 85 bit */
525 w = fn*pio2_2;
527 w = fn*pio2_2t-((t-r)-w);
532 w = fn*pio2_3;
534 w = fn*pio2_3t-((t-r)-w);

Completed in 186 milliseconds

12