IDAPython 9.0
|
Proxy of C++ fpvalue_t class.
Public Member Functions | |
"void" | clear (self) |
clear(self) | |
"bool" | __eq__ (self, "fpvalue_t" r) |
eq(self, r) -> bool | |
"bool" | __ne__ (self, "fpvalue_t" r) |
ne(self, r) -> bool | |
"bool" | __lt__ (self, "fpvalue_t" r) |
lt(self, r) -> bool | |
"bool" | __gt__ (self, "fpvalue_t" r) |
gt(self, r) -> bool | |
"bool" | __le__ (self, "fpvalue_t" r) |
le(self, r) -> bool | |
"bool" | __ge__ (self, "fpvalue_t" r) |
ge(self, r) -> bool | |
"int" | compare (self, "fpvalue_t" r) |
compare(self, r) -> int | |
"fpvalue_error_t" | from_10bytes (self, "void const *" fpval) |
from_10bytes(self, fpval) -> fpvalue_error_t Conversions for 10-byte floating point values. | |
"fpvalue_error_t" | to_10bytes (self, "void *" fpval) |
to_10bytes(self, fpval) -> fpvalue_error_t | |
"fpvalue_error_t" | from_12bytes (self, "void const *" fpval) |
from_12bytes(self, fpval) -> fpvalue_error_t Conversions for 12-byte floating point values. | |
"fpvalue_error_t" | to_12bytes (self, "void *" fpval) |
to_12bytes(self, fpval) -> fpvalue_error_t | |
"void" | to_str (self, *args) |
to_str(self, mode) Convert IEEE to string. | |
"void" | from_sval (self, "sval_t" x) |
from_sval(self, x) Convert integer to IEEE. | |
"void" | from_int64 (self, "int64" x) |
from_int64(self, x) | |
"void" | from_uint64 (self, "uint64" x) |
from_uint64(self, x) | |
"fpvalue_error_t" | to_sval (self, "bool" round=False) |
to_sval(self, round=False) -> fpvalue_error_t Convert IEEE to integer (+-0.5 if round) | |
"fpvalue_error_t" | to_int64 (self, "bool" round=False) |
to_int64(self, round=False) -> fpvalue_error_t | |
"fpvalue_error_t" | to_uint64 (self, "bool" round=False) |
to_uint64(self, round=False) -> fpvalue_error_t | |
"fpvalue_error_t" | fadd (self, "fpvalue_t" y) |
fadd(self, y) -> fpvalue_error_t Arithmetic operations. | |
"fpvalue_error_t" | fsub (self, "fpvalue_t" y) |
fsub(self, y) -> fpvalue_error_t | |
"fpvalue_error_t" | fmul (self, "fpvalue_t" y) |
fmul(self, y) -> fpvalue_error_t | |
"fpvalue_error_t" | fdiv (self, "fpvalue_t" y) |
fdiv(self, y) -> fpvalue_error_t | |
"fpvalue_error_t" | mul_pow2 (self, "int32" power_of_2) |
mul_pow2(self, power_of_2) -> fpvalue_error_t Multiply by a power of 2. | |
"void" | eabs (self) |
eabs(self) Calculate absolute value. | |
"bool" | is_negative (self) |
is_negative(self) -> bool Is negative value? | |
"void" | negate (self) |
negate(self) Negate. | |
"fpvalue_kind_t" | get_kind (self) |
get_kind(self) -> fpvalue_kind_t Get value kind. | |
__init__ (self, *args) | |
init(self) -> fpvalue_t init(self, _in) -> fpvalue_t | |
"fpvalue_t" | copy (self) |
copy(self) -> fpvalue_t | |
"qstring" | __str__ (self) |
str(self) -> qstring | |
"fpvalue_error_t" | from_str (self, "char const *" p) |
from_str(self, p) -> fpvalue_error_t Convert string to IEEE. | |
"void" | assign (self, "fpvalue_t" r) |
assign(self, r) | |
__iter__ (self) | |
__getitem__ (self, i) | |
__setitem__ (self, i, v) | |
"fpvalue_t" | __add__ (self, "fpvalue_t" o) |
add(self, o) -> fpvalue_t | |
"fpvalue_t" | __sub__ (self, "fpvalue_t" o) |
sub(self, o) -> fpvalue_t | |
"fpvalue_t" | __mul__ (self, "fpvalue_t" o) |
mul(self, o) -> fpvalue_t | |
"fpvalue_t" | __truediv__ (self, "fpvalue_t" o) |
truediv(self, o) -> fpvalue_t | |
Static Public Attributes | |
str | w = property(_ida_ieee.fpvalue_t_w_get, _ida_ieee.fpvalue_t_w_set, doc=) |
Protected Member Functions | |
"void" | _get_bytes (self) |
_get_bytes(self) | |
"void" | _set_bytes (self, "bytevec16_t const &" _in) |
_set_bytes(self, _in) | |
"double" | _get_float (self) |
_get_float(self) -> double | |
"void" | _set_float (self, "double" v) |
_set_float(self, v) | |
"wrapped_array_t< uint16,FPVAL_NWORDS >" | _get_shorts (self) |
_get_shorts(self) -> fpvalue_shorts_array_t | |
Properties | |
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") | |
bytes = property(_get_bytes, _set_bytes) | |
shorts = property(_get_shorts) | |
float = property(_get_float, _set_float) | |
sval = property(lambda self: self.to_sval(), lambda self, v: self.from_sval(v)) | |
int64 = property(lambda self: self.to_int64(), lambda self, v: self.from_int64(v)) | |
uint64 = property(lambda self: self.to_uint64(), lambda self, v: self.from_uint64(v)) | |
__init__ | ( | self, | |
* | args ) |
in | bytevec16_t const & |
"fpvalue_t" __add__ | ( | self, | |
"fpvalue_t" | o ) |
o | fpvalue_t const & |
"bool" __eq__ | ( | self, | |
"fpvalue_t" | r ) |
r | fpvalue_t const & |
"bool" __ge__ | ( | self, | |
"fpvalue_t" | r ) |
r | fpvalue_t const & |
__getitem__ | ( | self, | |
i ) |
"bool" __gt__ | ( | self, | |
"fpvalue_t" | r ) |
r | fpvalue_t const & |
__iter__ | ( | self | ) |
"bool" __le__ | ( | self, | |
"fpvalue_t" | r ) |
r | fpvalue_t const & |
"bool" __lt__ | ( | self, | |
"fpvalue_t" | r ) |
r | fpvalue_t const & |
"fpvalue_t" __mul__ | ( | self, | |
"fpvalue_t" | o ) |
o | fpvalue_t const & |
"bool" __ne__ | ( | self, | |
"fpvalue_t" | r ) |
r | fpvalue_t const & |
__setitem__ | ( | self, | |
i, | |||
v ) |
"qstring" __str__ | ( | self | ) |
"fpvalue_t" __sub__ | ( | self, | |
"fpvalue_t" | o ) |
o | fpvalue_t const & |
"fpvalue_t" __truediv__ | ( | self, | |
"fpvalue_t" | o ) |
o | fpvalue_t const & |
|
protected |
|
protected |
|
protected |
"void" assign | ( | self, | |
"fpvalue_t" | r ) |
r | fpvalue_t const & |
"void" clear | ( | self | ) |
"int" compare | ( | self, | |
"fpvalue_t" | r ) |
r | fpvalue_t const & |
"fpvalue_t" copy | ( | self | ) |
"void" eabs | ( | self | ) |
"fpvalue_error_t" fadd | ( | self, | |
"fpvalue_t" | y ) |
"fpvalue_error_t" fdiv | ( | self, | |
"fpvalue_t" | y ) |
y | fpvalue_t const & |
"fpvalue_error_t" fmul | ( | self, | |
"fpvalue_t" | y ) |
y | fpvalue_t const & |
"fpvalue_error_t" from_10bytes | ( | self, | |
"void const *" | fpval ) |
fpval | (C++: const void *) void const * |
"fpvalue_error_t" from_12bytes | ( | self, | |
"void const *" | fpval ) |
fpval | (C++: const void *) void const * |
"void" from_int64 | ( | self, | |
"int64" | x ) |
x | int64 |
"fpvalue_error_t" from_str | ( | self, | |
"char const *" | p ) |
p_str | (C++: const char **) pointer to pointer to string. it will advanced. |
"void" from_sval | ( | self, | |
"sval_t" | x ) |
x | (C++: sval_t) |
"void" from_uint64 | ( | self, | |
"uint64" | x ) |
x | uint64 |
"fpvalue_error_t" fsub | ( | self, | |
"fpvalue_t" | y ) |
y | fpvalue_t const & |
"fpvalue_kind_t" get_kind | ( | self | ) |
"bool" is_negative | ( | self | ) |
"fpvalue_error_t" mul_pow2 | ( | self, | |
"int32" | power_of_2 ) |
power_of_2 | (C++: int32) |
"void" negate | ( | self | ) |
"fpvalue_error_t" to_10bytes | ( | self, | |
"void *" | fpval ) |
fpval | void * |
"fpvalue_error_t" to_12bytes | ( | self, | |
"void *" | fpval ) |
fpval | void * |
"fpvalue_error_t" to_int64 | ( | self, | |
"bool" | round = False ) |
round | bool |
"void" to_str | ( | self, | |
* | args ) |
mode | (C++: uint) broken down into:
|
"fpvalue_error_t" to_sval | ( | self, | |
"bool" | round = False ) |
round | (C++: bool) |
"fpvalue_error_t" to_uint64 | ( | self, | |
"bool" | round = False ) |
round | bool |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |