OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [fortran/] [intrinsic.texi] - Diff between revs 285 and 378

Show entire file | Details | Blame | View Log

Rev 285 Rev 378
Line 42... Line 42...
* @code{ABORT}:         ABORT,     Abort the program
* @code{ABORT}:         ABORT,     Abort the program
* @code{ABS}:           ABS,       Absolute value
* @code{ABS}:           ABS,       Absolute value
* @code{ACCESS}:        ACCESS,    Checks file access modes
* @code{ACCESS}:        ACCESS,    Checks file access modes
* @code{ACHAR}:         ACHAR,     Character in @acronym{ASCII} collating sequence
* @code{ACHAR}:         ACHAR,     Character in @acronym{ASCII} collating sequence
* @code{ACOS}:          ACOS,      Arccosine function
* @code{ACOS}:          ACOS,      Arccosine function
* @code{ACOSH}:         ACOSH,     Hyperbolic arccosine function
* @code{ACOSH}:         ACOSH,     Inverse hyperbolic cosine function
* @code{ADJUSTL}:       ADJUSTL,   Left adjust a string
* @code{ADJUSTL}:       ADJUSTL,   Left adjust a string
* @code{ADJUSTR}:       ADJUSTR,   Right adjust a string
* @code{ADJUSTR}:       ADJUSTR,   Right adjust a string
* @code{AIMAG}:         AIMAG,     Imaginary part of complex number
* @code{AIMAG}:         AIMAG,     Imaginary part of complex number
* @code{AINT}:          AINT,      Truncate to a whole number
* @code{AINT}:          AINT,      Truncate to a whole number
* @code{ALARM}:         ALARM,     Set an alarm clock
* @code{ALARM}:         ALARM,     Set an alarm clock
Line 54... Line 54...
* @code{ALLOCATED}:     ALLOCATED, Status of allocatable entity
* @code{ALLOCATED}:     ALLOCATED, Status of allocatable entity
* @code{AND}:           AND,       Bitwise logical AND
* @code{AND}:           AND,       Bitwise logical AND
* @code{ANINT}:         ANINT,     Nearest whole number
* @code{ANINT}:         ANINT,     Nearest whole number
* @code{ANY}:           ANY,       Determine if any values are true
* @code{ANY}:           ANY,       Determine if any values are true
* @code{ASIN}:          ASIN,      Arcsine function
* @code{ASIN}:          ASIN,      Arcsine function
* @code{ASINH}:         ASINH,     Hyperbolic arcsine function
* @code{ASINH}:         ASINH,     Inverse hyperbolic sine function
* @code{ASSOCIATED}:    ASSOCIATED, Status of a pointer or pointer/target pair
* @code{ASSOCIATED}:    ASSOCIATED, Status of a pointer or pointer/target pair
* @code{ATAN}:          ATAN,      Arctangent function
* @code{ATAN}:          ATAN,      Arctangent function
* @code{ATAN2}:         ATAN2,     Arctangent function
* @code{ATAN2}:         ATAN2,     Arctangent function
* @code{ATANH}:         ATANH,     Hyperbolic arctangent function
* @code{ATANH}:         ATANH,     Inverse hyperbolic tangent function
* @code{BESSEL_J0}:     BESSEL_J0, Bessel function of the first kind of order 0
* @code{BESSEL_J0}:     BESSEL_J0, Bessel function of the first kind of order 0
* @code{BESSEL_J1}:     BESSEL_J1, Bessel function of the first kind of order 1
* @code{BESSEL_J1}:     BESSEL_J1, Bessel function of the first kind of order 1
* @code{BESSEL_JN}:     BESSEL_JN, Bessel function of the first kind
* @code{BESSEL_JN}:     BESSEL_JN, Bessel function of the first kind
* @code{BESSEL_Y0}:     BESSEL_Y0, Bessel function of the second kind of order 0
* @code{BESSEL_Y0}:     BESSEL_Y0, Bessel function of the second kind of order 0
* @code{BESSEL_Y1}:     BESSEL_Y1, Bessel function of the second kind of order 1
* @code{BESSEL_Y1}:     BESSEL_Y1, Bessel function of the second kind of order 1
Line 570... Line 570...
@end table
@end table
 
 
 
 
 
 
@node ACOSH
@node ACOSH
@section @code{ACOSH} --- Hyperbolic arccosine function
@section @code{ACOSH} --- Inverse hyperbolic cosine function
@fnindex ACOSH
@fnindex ACOSH
@fnindex DACOSH
@fnindex DACOSH
@cindex area hyperbolic cosine
@cindex area hyperbolic cosine
@cindex hyperbolic arccosine
@cindex inverse hyperbolic cosine
@cindex hyperbolic function, cosine, inverse
@cindex hyperbolic function, cosine, inverse
@cindex cosine, hyperbolic, inverse
@cindex cosine, hyperbolic, inverse
 
 
@table @asis
@table @asis
@item @emph{Description}:
@item @emph{Description}:
@code{ACOSH(X)} computes the hyperbolic arccosine of @var{X} (inverse of
@code{ACOSH(X)} computes the inverse hyperbolic cosine of @var{X}.
@code{COSH(X)}).
 
 
 
@item @emph{Standard}:
@item @emph{Standard}:
Fortran 2008 and later
Fortran 2008 and later
 
 
@item @emph{Class}:
@item @emph{Class}:
Line 1211... Line 1210...
@end table
@end table
 
 
 
 
 
 
@node ASINH
@node ASINH
@section @code{ASINH} --- Hyperbolic arcsine function
@section @code{ASINH} --- Inverse hyperbolic sine function
@fnindex ASINH
@fnindex ASINH
@fnindex DASINH
@fnindex DASINH
@cindex area hyperbolic sine
@cindex area hyperbolic sine
@cindex hyperbolic arcsine
@cindex inverse hyperbolic sine
@cindex hyperbolic function, sine, inverse
@cindex hyperbolic function, sine, inverse
@cindex sine, hyperbolic, inverse
@cindex sine, hyperbolic, inverse
 
 
@table @asis
@table @asis
@item @emph{Description}:
@item @emph{Description}:
@code{ASINH(X)} computes the hyperbolic arcsine of @var{X} (inverse of @code{SINH(X)}).
@code{ASINH(X)} computes the inverse hyperbolic sine of @var{X}.
 
 
@item @emph{Standard}:
@item @emph{Standard}:
Fortran 2008 and later
Fortran 2008 and later
 
 
@item @emph{Class}:
@item @emph{Class}:
Line 1453... Line 1452...
@end table
@end table
 
 
 
 
 
 
@node ATANH
@node ATANH
@section @code{ATANH} --- Hyperbolic arctangent function
@section @code{ATANH} --- Inverse hyperbolic tangent function
@fnindex ASINH
@fnindex ATANH
@fnindex DASINH
@fnindex DATANH
@cindex area hyperbolic tangent
@cindex area hyperbolic tangent
@cindex hyperbolic arctangent
@cindex inverse hyperbolic tangent
@cindex hyperbolic function, tangent, inverse
@cindex hyperbolic function, tangent, inverse
@cindex tangent, hyperbolic, inverse
@cindex tangent, hyperbolic, inverse
 
 
@table @asis
@table @asis
@item @emph{Description}:
@item @emph{Description}:
@code{ATANH(X)} computes the hyperbolic arctangent of @var{X} (inverse
@code{ATANH(X)} computes the inverse hyperbolic tangent of @var{X}.
of @code{TANH(X)}).
 
 
 
@item @emph{Standard}:
@item @emph{Standard}:
Fortran 2008 and later
Fortran 2008 and later
 
 
@item @emph{Class}:
@item @emph{Class}:

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.