OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:initFromPrimitive
(Results
1 - 2
of
2
) sorted by null
/external/pdfium/third_party/bigint/
BigUnsigned.hh
71
template <class X> void
initFromPrimitive
(X x);
366
void BigUnsigned::
initFromPrimitive
(X x) {
379
*
initFromPrimitive
and let the compiler optimize it out for unsigned-type
387
initFromPrimitive
(x);
392
/* Template with the same idea as
initFromPrimitive
. This might be slightly
BigUnsigned.cc
14
BigUnsigned::BigUnsigned(unsigned long x) {
initFromPrimitive
(x); }
15
BigUnsigned::BigUnsigned(unsigned int x) {
initFromPrimitive
(x); }
16
BigUnsigned::BigUnsigned(unsigned short x) {
initFromPrimitive
(x); }
Completed in 57 milliseconds