#include "octave-config.h"
#include <cmath>
#include <cstdlib>
#include <iosfwd>
#include <limits>
#include "lo-mappers.h"
#include "lo-traits.h"
Go to the source code of this file.
Namespaces | |
octave | |
octave::math | |
Macros | |
#define | OCTAVE_DEFINE_LONG_DOUBLE_INT_CMP_OP(T) |
#define | OCTAVE_INT_BIN_OP(OP, NAME, ARGT) |
#define | OCTAVE_INT_BITCMP_OP(OP) |
#define | OCTAVE_INT_CMP_OP(OP, NAME) |
#define | OCTAVE_INT_DOUBLE_BIN_OP(OP, NAME) |
#define | OCTAVE_INT_DOUBLE_BIN_OP0(OP) |
#define | OCTAVE_INT_DOUBLE_CMP_OP(OP, NAME) |
#define | OCTAVE_INT_FLOAT_BIN_OP(OP) |
#define | OCTAVE_INT_FLOAT_CMP_OP(OP) |
#define | OCTAVE_INT_UN_OP(OPNAME, NAME) |
#define | OCTAVE_REGISTER_INT_CMP_OP(NM, OP) |
#define | OCTAVE_REGISTER_INT_CONST_OP(NM, VALUE) |
#define | OCTAVE_REGISTER_INT_TYPE(TYPE) |
Typedefs | |
typedef octave_int< int16_t > | octave_int16 |
typedef octave_int< int32_t > | octave_int32 |
typedef octave_int< int64_t > | octave_int64 |
typedef octave_int< int8_t > | octave_int8 |
typedef octave_int< uint16_t > | octave_uint16 |
typedef octave_int< uint32_t > | octave_uint32 |
typedef octave_int< uint64_t > | octave_uint64 |
typedef octave_int< uint8_t > | octave_uint8 |
Functions | |
template<typename T > | |
octave_int< T > | bitshift (const octave_int< T > &a, int n, const octave_int< T > &mask=std::numeric_limits< T >::max()) |
template<typename T > | |
bool | octave::math::isnan (const octave_int< T > &) |
template<typename T > | |
octave_int< T > | mod (const octave_int< T > &x, const octave_int< T > &y) |
template<typename T > | |
T | octave_int_abs (T x) |
template<typename T > | |
bool | operator!= (const double &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator!= (const float &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator!= (const octave_int< T > &x, const double &y) |
template<typename T > | |
bool | operator!= (const octave_int< T > &x, const float &y) |
template<typename T1 , typename T2 > | |
bool | operator!= (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<typename T > | |
octave_int< T > | operator& (const octave_int< T > &x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator* (const double &, const octave_int64 &) |
template<> | |
OCTAVE_API octave_uint64 | operator* (const double &, const octave_uint64 &) |
template<typename T > | |
octave_int< T > | operator* (const double &x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator* (const octave_int64 &, const double &) |
template<typename T > | |
octave_int< T > | operator* (const octave_int< T > &x, const double &y) |
template<typename T > | |
octave_int< T > | operator* (const octave_int< T > &x, float y) |
template<> | |
OCTAVE_API octave_uint64 | operator* (const octave_uint64 &, const double &) |
template<typename T > | |
octave_int< T > | operator* (float x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator+ (const double &, const octave_int64 &) |
template<> | |
OCTAVE_API octave_uint64 | operator+ (const double &, const octave_uint64 &) |
template<typename T > | |
octave_int< T > | operator+ (const double &x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator+ (const octave_int64 &, const double &) |
template<typename T > | |
octave_int< T > | operator+ (const octave_int< T > &x, const double &y) |
template<typename T > | |
octave_int< T > | operator+ (const octave_int< T > &x, float y) |
template<> | |
OCTAVE_API octave_uint64 | operator+ (const octave_uint64 &, const double &) |
template<typename T > | |
octave_int< T > | operator+ (float x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator- (const double &, const octave_int64 &) |
template<> | |
OCTAVE_API octave_uint64 | operator- (const double &, const octave_uint64 &) |
template<typename T > | |
octave_int< T > | operator- (const double &x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator- (const octave_int64 &, const double &) |
template<typename T > | |
octave_int< T > | operator- (const octave_int< T > &x, const double &y) |
template<typename T > | |
octave_int< T > | operator- (const octave_int< T > &x, float y) |
template<> | |
OCTAVE_API octave_uint64 | operator- (const octave_uint64 &, const double &) |
template<typename T > | |
octave_int< T > | operator- (float x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator/ (const double &, const octave_int64 &) |
template<> | |
OCTAVE_API octave_uint64 | operator/ (const double &, const octave_uint64 &) |
template<typename T > | |
octave_int< T > | operator/ (const double &x, const octave_int< T > &y) |
template<> | |
OCTAVE_API octave_int64 | operator/ (const octave_int64 &, const double &) |
template<typename T > | |
octave_int< T > | operator/ (const octave_int< T > &x, const double &y) |
template<typename T > | |
octave_int< T > | operator/ (const octave_int< T > &x, float y) |
template<> | |
OCTAVE_API octave_uint64 | operator/ (const octave_uint64 &, const double &) |
template<typename T > | |
octave_int< T > | operator/ (float x, const octave_int< T > &y) |
template<typename T > | |
bool | operator< (const double &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator< (const float &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator< (const octave_int< T > &x, const double &y) |
template<typename T > | |
bool | operator< (const octave_int< T > &x, const float &y) |
template<typename T1 , typename T2 > | |
bool | operator< (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<> | |
std::ostream & | operator<< (std::ostream &os, const octave_int< int8_t > &ival) |
template<typename T > | |
std::ostream & | operator<< (std::ostream &os, const octave_int< T > &ival) |
template<> | |
std::ostream & | operator<< (std::ostream &os, const octave_int< uint8_t > &ival) |
template<typename T > | |
bool | operator<= (const double &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator<= (const float &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator<= (const octave_int< T > &x, const double &y) |
template<typename T > | |
bool | operator<= (const octave_int< T > &x, const float &y) |
template<typename T1 , typename T2 > | |
bool | operator<= (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<typename T > | |
bool | operator== (const double &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator== (const float &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator== (const octave_int< T > &x, const double &y) |
template<typename T > | |
bool | operator== (const octave_int< T > &x, const float &y) |
template<typename T1 , typename T2 > | |
bool | operator== (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<typename T > | |
bool | operator> (const double &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator> (const float &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator> (const octave_int< T > &x, const double &y) |
template<typename T > | |
bool | operator> (const octave_int< T > &x, const float &y) |
template<typename T1 , typename T2 > | |
bool | operator> (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<typename T > | |
bool | operator>= (const double &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator>= (const float &x, const octave_int< T > &y) |
template<typename T > | |
bool | operator>= (const octave_int< T > &x, const double &y) |
template<typename T > | |
bool | operator>= (const octave_int< T > &x, const float &y) |
template<typename T1 , typename T2 > | |
bool | operator>= (const octave_int< T1 > &x, const octave_int< T2 > &y) |
template<> | |
std::istream & | operator>> (std::istream &is, octave_int< int8_t > &ival) |
template<typename T > | |
std::istream & | operator>> (std::istream &is, octave_int< T > &ival) |
template<> | |
std::istream & | operator>> (std::istream &is, octave_int< uint8_t > &ival) |
template<typename T > | |
octave_int< T > | operator^ (const octave_int< T > &x, const octave_int< T > &y) |
template<typename T > | |
octave_int< T > | operator| (const octave_int< T > &x, const octave_int< T > &y) |
template<typename T > | |
OCTAVE_API octave_int< T > | pow (const double &a, const octave_int< T > &b) |
template<typename T > | |
OCTAVE_API octave_int< T > | pow (const float &a, const octave_int< T > &b) |
template<typename T > | |
OCTAVE_API octave_int< T > | pow (const octave_int< T > &, const octave_int< T > &) |
template<typename T > | |
OCTAVE_API octave_int< T > | pow (const octave_int< T > &a, const double &b) |
template<typename T > | |
OCTAVE_API octave_int< T > | pow (const octave_int< T > &a, const float &b) |
template<typename T > | |
OCTAVE_API octave_int< T > | powf (const float &a, const octave_int< T > &b) |
template<typename T > | |
OCTAVE_API octave_int< T > | powf (const octave_int< T > &a, const float &b) |
template<typename T > | |
octave_int< T > | rem (const octave_int< T > &x, const octave_int< T > &y) |
template<typename T > | |
octave_int< T > | xmax (const octave_int< T > &x, const octave_int< T > &y) |
template<typename T > | |
octave_int< T > | xmin (const octave_int< T > &x, const octave_int< T > &y) |
#define OCTAVE_DEFINE_LONG_DOUBLE_INT_CMP_OP | ( | T | ) |
Definition at line 325 of file oct-inttypes.h.
#define OCTAVE_INT_BIN_OP | ( | OP, | |
NAME, | |||
ARGT | |||
) |
Definition at line 878 of file oct-inttypes.h.
#define OCTAVE_INT_BITCMP_OP | ( | OP | ) |
Definition at line 1071 of file oct-inttypes.h.
#define OCTAVE_INT_CMP_OP | ( | OP, | |
NAME | |||
) |
Definition at line 988 of file oct-inttypes.h.
#define OCTAVE_INT_DOUBLE_BIN_OP | ( | OP, | |
NAME | |||
) |
Definition at line 1210 of file oct-inttypes.h.
#define OCTAVE_INT_DOUBLE_BIN_OP0 | ( | OP | ) |
Definition at line 1119 of file oct-inttypes.h.
#define OCTAVE_INT_DOUBLE_CMP_OP | ( | OP, | |
NAME | |||
) |
Definition at line 1241 of file oct-inttypes.h.
#define OCTAVE_INT_FLOAT_BIN_OP | ( | OP | ) |
Definition at line 1267 of file oct-inttypes.h.
#define OCTAVE_INT_FLOAT_CMP_OP | ( | OP | ) |
Definition at line 1289 of file oct-inttypes.h.
#define OCTAVE_INT_UN_OP | ( | OPNAME, | |
NAME | |||
) |
Definition at line 864 of file oct-inttypes.h.
#define OCTAVE_REGISTER_INT_CMP_OP | ( | NM, | |
OP | |||
) |
Definition at line 194 of file oct-inttypes.h.
#define OCTAVE_REGISTER_INT_CONST_OP | ( | NM, | |
VALUE | |||
) |
Definition at line 218 of file oct-inttypes.h.
#define OCTAVE_REGISTER_INT_TYPE | ( | TYPE | ) |
Definition at line 98 of file oct-inttypes.h.
typedef octave_int<int16_t> octave_int16 |
Definition at line 43 of file oct-inttypes.h.
typedef octave_int<int32_t> octave_int32 |
Definition at line 44 of file oct-inttypes.h.
typedef octave_int<int64_t> octave_int64 |
Definition at line 45 of file oct-inttypes.h.
typedef octave_int<int8_t> octave_int8 |
Definition at line 42 of file oct-inttypes.h.
typedef octave_int<uint16_t> octave_uint16 |
Definition at line 48 of file oct-inttypes.h.
typedef octave_int<uint32_t> octave_uint32 |
Definition at line 49 of file oct-inttypes.h.
typedef octave_int<uint64_t> octave_uint64 |
Definition at line 50 of file oct-inttypes.h.
typedef octave_int<uint8_t> octave_uint8 |
Definition at line 47 of file oct-inttypes.h.
octave_int<T> bitshift | ( | const octave_int< T > & | a, |
int | n, | ||
const octave_int< T > & | mask = std::numeric_limits<T>::max () |
||
) |
Definition at line 1088 of file oct-inttypes.h.
References n.
|
inline |
Definition at line 932 of file oct-inttypes.h.
References octave_int< T >::value(), and x.
Referenced by algams(), cacai(), cacon(), casyi(), cbesh(), cbesi(), cbesj(), octave::variable_editor_view::copyClipboard(), cuni2(), cunk1(), cunk2(), octave::variable_editor_view::delete_selected(), dlgams(), ignuin(), octave::variable_editor_view::pasteClipboard(), phrtsd(), zacai(), zacon(), zasyi(), zbesh(), zbesi(), zbesj(), zuni2(), zunk1(), and zunk2().
|
inline |
Definition at line 78 of file oct-inttypes.h.
References x.
Referenced by octave_int_arith_base< T, true >::div(), octave_int_arith_base< T, is_signed >::mul_internal(), and operator*().
|
inline |
Definition at line 1261 of file oct-inttypes.h.
bool operator!= | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1309 of file oct-inttypes.h.
|
inline |
Definition at line 1261 of file oct-inttypes.h.
|
inline |
Definition at line 1309 of file oct-inttypes.h.
|
inline |
Definition at line 1001 of file oct-inttypes.h.
octave_int<T> operator& | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1079 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator* | ( | const double & | x, |
const octave_int64 & | y | ||
) |
Definition at line 646 of file oct-inttypes.cc.
References x.
OCTAVE_API octave_uint64 operator* | ( | const double & | x, |
const octave_uint64 & | y | ||
) |
Definition at line 610 of file oct-inttypes.cc.
References x.
|
inline |
Definition at line 1233 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator* | ( | const octave_int64 & | x, |
const double & | y | ||
) |
Definition at line 617 of file oct-inttypes.cc.
References dbleget(), dblesplit(), octave::math::fix(), octave::math::isinf(), octave::math::isnan(), octave_int< T >::max(), octave_int_abs(), umul128(), Faddeeva::w(), x, and octave_int< T >::zero.
|
inline |
Definition at line 1233 of file oct-inttypes.h.
|
inline |
Definition at line 1284 of file oct-inttypes.h.
OCTAVE_API octave_uint64 operator* | ( | const octave_uint64 & | x, |
const double & | y | ||
) |
Definition at line 582 of file oct-inttypes.cc.
References dbleget(), dblesplit(), octave::math::fix(), octave::math::isinf(), octave::math::isnan(), octave_int< T >::max(), umul128(), Faddeeva::w(), x, and octave_int< T >::zero.
|
inline |
Definition at line 1284 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator+ | ( | const double & | x, |
const octave_int64 & | y | ||
) |
Definition at line 474 of file oct-inttypes.cc.
References x.
OCTAVE_API octave_uint64 operator+ | ( | const double & | x, |
const octave_uint64 & | y | ||
) |
Definition at line 446 of file oct-inttypes.cc.
References x.
|
inline |
Definition at line 1231 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator+ | ( | const octave_int64 & | x, |
const double & | y | ||
) |
Definition at line 453 of file oct-inttypes.cc.
References octave_int< T >::max(), and x.
|
inline |
Definition at line 1231 of file oct-inttypes.h.
|
inline |
Definition at line 1282 of file oct-inttypes.h.
OCTAVE_API octave_uint64 operator+ | ( | const octave_uint64 & | x, |
const double & | y | ||
) |
Definition at line 439 of file oct-inttypes.cc.
References x.
|
inline |
Definition at line 1282 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator- | ( | const double & | x, |
const octave_int64 & | y | ||
) |
Definition at line 517 of file oct-inttypes.cc.
References max(), min(), pow(), octave_int< T >::value(), and x.
OCTAVE_API octave_uint64 operator- | ( | const double & | x, |
const octave_uint64 & | y | ||
) |
Definition at line 488 of file oct-inttypes.cc.
References octave_int< T >::bool_value(), octave_int< T >::max(), pow(), octave_int< T >::value(), and x.
|
inline |
Definition at line 1232 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator- | ( | const octave_int64 & | x, |
const double & | y | ||
) |
Definition at line 510 of file oct-inttypes.cc.
References x.
|
inline |
Definition at line 1232 of file oct-inttypes.h.
|
inline |
Definition at line 1283 of file oct-inttypes.h.
OCTAVE_API octave_uint64 operator- | ( | const octave_uint64 & | x, |
const double & | y | ||
) |
Definition at line 481 of file oct-inttypes.cc.
References x.
|
inline |
Definition at line 1283 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator/ | ( | const double & | x, |
const octave_int64 & | y | ||
) |
Definition at line 660 of file oct-inttypes.cc.
References x.
OCTAVE_API octave_uint64 operator/ | ( | const double & | x, |
const octave_uint64 & | y | ||
) |
Definition at line 653 of file oct-inttypes.cc.
References x.
|
inline |
Definition at line 1234 of file oct-inttypes.h.
OCTAVE_API octave_int64 operator/ | ( | const octave_int64 & | x, |
const double & | y | ||
) |
Definition at line 677 of file oct-inttypes.cc.
References octave::math::fix(), octave_int< T >::max(), and x.
|
inline |
Definition at line 1234 of file oct-inttypes.h.
|
inline |
Definition at line 1285 of file oct-inttypes.h.
OCTAVE_API octave_uint64 operator/ | ( | const octave_uint64 & | x, |
const double & | y | ||
) |
Definition at line 667 of file oct-inttypes.cc.
References octave::math::fix(), octave_int< T >::max(), and x.
|
inline |
Definition at line 1285 of file oct-inttypes.h.
|
inline |
Definition at line 1256 of file oct-inttypes.h.
bool operator< | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1304 of file oct-inttypes.h.
|
inline |
Definition at line 1256 of file oct-inttypes.h.
|
inline |
Definition at line 1304 of file oct-inttypes.h.
|
inline |
Definition at line 996 of file oct-inttypes.h.
|
inline |
Definition at line 1030 of file oct-inttypes.h.
References octave_int< T >::value().
|
inline |
Definition at line 1006 of file oct-inttypes.h.
References octave_int< T >::value().
|
inline |
Definition at line 1039 of file oct-inttypes.h.
References octave_int< T >::value().
|
inline |
Definition at line 1257 of file oct-inttypes.h.
bool operator<= | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1305 of file oct-inttypes.h.
|
inline |
Definition at line 1257 of file oct-inttypes.h.
|
inline |
Definition at line 1305 of file oct-inttypes.h.
|
inline |
Definition at line 997 of file oct-inttypes.h.
|
inline |
Definition at line 1260 of file oct-inttypes.h.
bool operator== | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1308 of file oct-inttypes.h.
|
inline |
Definition at line 1260 of file oct-inttypes.h.
|
inline |
Definition at line 1308 of file oct-inttypes.h.
|
inline |
Definition at line 1000 of file oct-inttypes.h.
|
inline |
Definition at line 1259 of file oct-inttypes.h.
bool operator> | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1307 of file oct-inttypes.h.
|
inline |
Definition at line 1259 of file oct-inttypes.h.
|
inline |
Definition at line 1307 of file oct-inttypes.h.
|
inline |
Definition at line 998 of file oct-inttypes.h.
|
inline |
Definition at line 1258 of file oct-inttypes.h.
bool operator>= | ( | const float & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1306 of file oct-inttypes.h.
|
inline |
Definition at line 1258 of file oct-inttypes.h.
|
inline |
Definition at line 1306 of file oct-inttypes.h.
|
inline |
Definition at line 999 of file oct-inttypes.h.
|
inline |
Definition at line 1049 of file oct-inttypes.h.
|
inline |
Definition at line 1015 of file oct-inttypes.h.
|
inline |
Definition at line 1060 of file oct-inttypes.h.
octave_int<T> operator^ | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1081 of file oct-inttypes.h.
octave_int<T> operator| | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1080 of file oct-inttypes.h.
OCTAVE_API octave_int<T> pow | ( | const double & | a, |
const octave_int< T > & | b | ||
) |
Definition at line 748 of file oct-inttypes.cc.
References octave_int< T >::double_value(), and pow().
OCTAVE_API octave_int<T> pow | ( | const float & | a, |
const octave_int< T > & | b | ||
) |
Definition at line 763 of file oct-inttypes.cc.
References octave_int< T >::float_value(), and pow().
OCTAVE_API octave_int<T> pow | ( | const octave_int< T > & | a, |
const octave_int< T > & | b | ||
) |
Definition at line 706 of file oct-inttypes.cc.
References retval, and octave_int< T >::value().
Referenced by norm_accumulator_p< R >::accum(), norm_accumulator_mp< R >::accum(), do_translate(), do_zoom(), elem_dual_p(), elem_xpow(), eps(), higham_subp(), install_cm_cm_ops(), install_cm_cs_ops(), install_cm_m_ops(), install_cm_s_ops(), install_cm_scm_ops(), install_cm_sm_ops(), install_cs_cm_ops(), install_cs_cs_ops(), install_cs_m_ops(), install_cs_s_ops(), install_cs_scm_ops(), install_cs_sm_ops(), install_fcm_fcm_ops(), install_fcm_fcs_ops(), install_fcm_fm_ops(), install_fcm_fs_ops(), install_fcs_fcm_ops(), install_fcs_fcs_ops(), install_fcs_fm_ops(), install_fcs_fs_ops(), install_fm_fcm_ops(), install_fm_fcs_ops(), install_fm_fm_ops(), install_fm_fs_ops(), install_fs_fcm_ops(), install_fs_fcs_ops(), install_fs_fm_ops(), install_fs_fs_ops(), install_m_cm_ops(), install_m_cs_ops(), install_m_m_ops(), install_m_s_ops(), install_m_scm_ops(), install_m_sm_ops(), install_pm_pm_ops(), install_s_cm_ops(), install_s_cs_ops(), install_s_m_ops(), install_s_s_ops(), install_s_scm_ops(), install_s_sm_ops(), install_scm_cm_ops(), install_scm_cs_ops(), install_scm_m_ops(), install_scm_s_ops(), install_scm_scm_ops(), install_scm_sm_ops(), install_sm_cm_ops(), install_sm_cs_ops(), install_sm_m_ops(), install_sm_s_ops(), install_sm_scm_ops(), install_sm_sm_ops(), magform(), make_complex_matrix_format(), make_range_format(), make_real_matrix_format(), pr_engineering_float< T >::mantissa(), mx_inline_pow(), octave::octave_jit_pow_complex_complex(), octave::octave_jit_pow_complex_scalar(), octave::octave_jit_pow_scalar_complex(), octave::octave_jit_pow_scalar_scalar(), norm_accumulator_p< R >::operator R(), norm_accumulator_mp< R >::operator R(), operator-(), pow(), powf(), log_scaler::unscale(), neg_log_scaler::unscale(), xpow(), and octave::math::xpsi().
OCTAVE_API octave_int<T> pow | ( | const octave_int< T > & | a, |
const double & | b | ||
) |
Definition at line 753 of file oct-inttypes.cc.
References octave_int< T >::double_value(), octave::math::fix(), and pow().
OCTAVE_API octave_int<T> pow | ( | const octave_int< T > & | a, |
const float & | b | ||
) |
Definition at line 768 of file oct-inttypes.cc.
References octave_int< T >::double_value(), octave::math::fix(), and pow().
OCTAVE_API octave_int<T> powf | ( | const float & | a, |
const octave_int< T > & | b | ||
) |
Definition at line 781 of file oct-inttypes.cc.
References octave_int< T >::float_value(), and pow().
OCTAVE_API octave_int<T> powf | ( | const octave_int< T > & | a, |
const float & | b | ||
) |
Definition at line 786 of file oct-inttypes.cc.
References octave_int< T >::double_value(), octave::math::fix(), and pow().
|
inline |
Definition at line 925 of file oct-inttypes.h.
References octave_int< T >::value(), and x.
Referenced by octave::sys::time::time().
octave_int<T> xmax | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1315 of file oct-inttypes.h.
References octave_int< T >::value(), and x.
Referenced by alngam(), octave::opengl_renderer::clip_code(), d9lgmc(), dgamma(), dlngam(), gamlim(), gamma(), octave::math::max(), onecov(), r9lgmc(), and tstall().
octave_int<T> xmin | ( | const octave_int< T > & | x, |
const octave_int< T > & | y | ||
) |
Definition at line 1325 of file oct-inttypes.h.
References octave_int< T >::value(), and x.
Referenced by alnrel(), octave::opengl_renderer::clip_code(), dgamma(), dlnrel(), F__glpk__(), gamlim(), gamma(), glpk(), octave::math::min(), onecov(), and tstall().