OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OPJ_INT64
(Results
1 - 3
of
3
) sorted by null
/external/pdfium/third_party/libopenjpeg20/
opj_intmath.h
138
return (OPJ_INT32)((a + ((
OPJ_INT64
)1 << b) - 1) >> b);
145
static INLINE OPJ_INT32 opj_int64_ceildivpow2(
OPJ_INT64
a, OPJ_INT32 b) {
146
return (OPJ_INT32)((a + ((
OPJ_INT64
)1 << b) - 1) >> b);
196
OPJ_INT64
temp = __emul(a, b);
198
OPJ_INT64
temp = (
OPJ_INT64
) a * (
OPJ_INT64
) b ;
201
assert((temp >> 13) <= (
OPJ_INT64
)0x7FFFFFFF);
202
assert((temp >> 13) >= (-(
OPJ_INT64
)0x7FFFFFFF - (
OPJ_INT64
)1))
[
all
...]
openjpeg.h
127
typedef int64_t
OPJ_INT64
;
[
all
...]
tcd.c
[
all
...]
Completed in 1872 milliseconds