MCPcopy Create free account
hub / github.com/Tripwire/tripwire-open-source / Integer

Method Integer

src/cryptlib/integer.cpp:1122–1126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1120}
1121
1122Integer::Integer()
1123 : reg(2), sign(POSITIVE)
1124{
1125 reg[(unsigned int)0] = reg[(unsigned int)1] = 0;
1126}
1127
1128Integer::Integer(const Integer& t)
1129 : reg(RoundupSize(t.WordCount())), sign(t.sign)

Callers

nothing calls this directly

Calls 4

RoundupSizeFunction · 0.85
CopyWordsFunction · 0.85
SetWordsFunction · 0.85
WordCountMethod · 0.80

Tested by

no test coverage detected