Searched defs:cos (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_cos.c27 /* cos(x)
36 * Let S,C and T denote the sin, cos and tan respectively on
41 * n sin(x) cos(x) tan(x)
50 * Let trig be any of sin, cos, or tan.
61 double cos(double x) function
63 double cos(x)
77 /* cos(Inf or NaN) is NaN */
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAuthorizationDataEntry.java112 * @param cos a <code>CCacheOutputStream</code>.
115 public void writeEntry(CCacheOutputStream cos) throws IOException { argument
116 cos.write16(adType);
117 cos.write32(adData.length);
118 cos.write(adData, 0, adData.length);
H A DAuthorizationData.java160 * @param cos a <code>CCacheOutputStream</code> to be written to.
163 public void writeAuth(CCacheOutputStream cos) throws IOException { argument
165 entry[i].writeEntry(cos);
H A DHostAddresses.java247 * @param cos a <code>CCacheOutputStream</code> to be written to.
252 public void writeAddrs(CCacheOutputStream cos) throws IOException { argument
253 cos.write32(addresses.length);
255 cos.write16(addresses[i].addrType);
256 cos.write32(addresses[i].address.length);
257 cos.write(addresses[i].address, 0,
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltMath.java256 * The math:cos function returns cosine of the passed argument.
261 public static double cos(double num) method in class:ExsltMath
263 return Math.cos(num);
/openjdk7/jdk/src/share/classes/java/lang/
H A DMath.java135 public static double cos(double a) { method in class:Math
136 return StrictMath.cos(a); // default impl. delegates to StrictMath
225 * <i>not</i> expect {@code cos(toRadians(90.0))} to exactly
H A DStrictMath.java53 * semantics are {@code sin}, {@code cos}, {@code tan},
105 public static native double cos(double a); method in class:StrictMath
172 * <i>not</i> expect {@code cos(toRadians(90.0))} to exactly
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/
H A Djfdlibm.h42 #define cos jcos macro
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DEncryptionKey.java491 * @param cos a <code>CCacheOutputStream</code> to be written to.
496 public synchronized void writeKey(CCacheOutputStream cos) argument
499 cos.write16(keyType);
501 cos.write16(keyType); // key type is recorded twice.
502 cos.write32(keyValue.length);
504 cos.write8(keyValue[i]);
H A DPrincipalName.java592 * @param cos a <code>CCacheOutputStream</code> for writing data.
596 public void writePrincipal(CCacheOutputStream cos) throws IOException { argument
597 cos.write32(nameType);
598 cos.write32(nameStrings.length);
602 cos.write32(realmBytes.length);
603 cos.write(realmBytes, 0, realmBytes.length);
608 cos.write32(bytes.length);
609 cos.write(bytes, 0, bytes.length);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp288 Value* SharkBuilder::cos() { function in class:SharkBuilder
289 return make_function("llvm.cos.f64", "d", "d");
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp1563 int _fpu_stack_size; // for sin/cos implementation on Intel
2060 void cos (LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2) { append(new LIR_Op2(lir_cos , from, tmp1, to, tmp2)); } function in class:LIR_List

Completed in 99 milliseconds