Home
last modified time | relevance | path

Searched refs:hashBlock (Results 1 – 25 of 369) sorted by relevance

12345678910>>...15

/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/reportsDashboards/node_modules/showdown/
H A Dperformance.log.md27 |hashBlock|0.046|0.147|0.036|
68 |hashBlock|0.041|0.094|0.036|
109 |hashBlock|0.042|0.070|0.037|
150 |hashBlock|0.052|0.129|0.037|
191 |hashBlock|0.071|0.493|0.039|
232 |hashBlock|0.042|0.080|0.037|
273 |hashBlock|0.063|0.402|0.035|
314 |hashBlock|0.063|0.415|0.035|
355 |hashBlock|0.060|0.442|0.036|
396 |hashBlock|0.068|0.577|0.036|
[all …]
/dports/net-p2p/litecoin/litecoin-0.18.1/src/
H A Dcoins.h128 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
139 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
141 uint256 hashBlock;
168 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock);
194 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
208 mutable uint256 hashBlock;
226 void SetBestBlock(const uint256 &hashBlock);
227 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
H A Dcoins.cpp14 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
29 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
137 if (hashBlock.IsNull()) in GetBestBlock()
138 hashBlock = base->GetBestBlock(); in GetBestBlock()
139 return hashBlock; in GetBestBlock()
143 hashBlock = hashBlockIn; in SetBestBlock()
200 hashBlock = hashBlockIn; in BatchWrite()
205 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()
/dports/net-p2p/litecoin-daemon/litecoin-0.18.1/src/
H A Dcoins.h128 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
139 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
141 uint256 hashBlock;
168 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock);
194 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
208 mutable uint256 hashBlock;
226 void SetBestBlock(const uint256 &hashBlock);
227 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
H A Dcoins.cpp14 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
29 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
137 if (hashBlock.IsNull()) in GetBestBlock()
138 hashBlock = base->GetBestBlock(); in GetBestBlock()
139 return hashBlock; in GetBestBlock()
143 hashBlock = hashBlockIn; in SetBestBlock()
200 hashBlock = hashBlockIn; in BatchWrite()
205 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()
/dports/net-p2p/litecoin-utils/litecoin-0.18.1/src/
H A Dcoins.h128 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
139 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
141 uint256 hashBlock;
168 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock);
194 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
208 mutable uint256 hashBlock;
226 void SetBestBlock(const uint256 &hashBlock);
227 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
H A Dcoins.cpp14 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
29 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
137 if (hashBlock.IsNull()) in GetBestBlock()
138 hashBlock = base->GetBestBlock(); in GetBestBlock()
139 return hashBlock; in GetBestBlock()
143 hashBlock = hashBlockIn; in SetBestBlock()
200 hashBlock = hashBlockIn; in BatchWrite()
205 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()
/dports/java/bouncycastle15/crypto-169/core/src/main/java/org/bouncycastle/crypto/modes/
H A DOCBBlockCipher.java60 private byte[] hashBlock, mainBlock; field in OCBBlockCipher
152 this.hashBlock = new byte[16]; in init()
290 hashBlock[hashBlockPos] = input; in processAADByte()
291 if (++hashBlockPos == hashBlock.length) in processAADByte()
301 hashBlock[hashBlockPos] = input[off + i]; in processAADBytes()
302 if (++hashBlockPos == hashBlock.length) in processAADBytes()
367 OCB_extend(hashBlock, hashBlockPos); in doFinal()
511 clear(hashBlock); in reset()
539 xor(hashBlock, OffsetHASH); in updateHASH()
540 hashCipher.processBlock(hashBlock, 0, hashBlock, 0); in updateHASH()
[all …]
/dports/net-p2p/bitcoin/bitcoin-22.0/src/wallet/
H A Dtransaction.h56 uint256 hashBlock;
60 s >> tx >> hashBlock >> vMerkleBranch >> nIndex;
189 uint256 hashBlock;
191 …t b = 0, uint256 h = uint256(), int i = 0) : status(s), block_height(b), hashBlock(h), nIndex(i) {}
210 uint256 serializedHash = isAbandoned() ? ABANDON_HASH : m_confirm.hashBlock;
224 …s >> tx >> m_confirm.hashBlock >> dummy_vector1 >> serializedIndex >> dummy_vector2 >> mapValue >>…
233 if (serializedIndex == -1 && m_confirm.hashBlock == ABANDON_HASH) {
237 } else if (!m_confirm.hashBlock.IsNull()) {
337 m_confirm.hashBlock = uint256();
/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/wallet/
H A Dtransaction.h56 uint256 hashBlock;
60 s >> tx >> hashBlock >> vMerkleBranch >> nIndex;
189 uint256 hashBlock;
191 …t b = 0, uint256 h = uint256(), int i = 0) : status(s), block_height(b), hashBlock(h), nIndex(i) {}
210 uint256 serializedHash = isAbandoned() ? ABANDON_HASH : m_confirm.hashBlock;
224 …s >> tx >> m_confirm.hashBlock >> dummy_vector1 >> serializedIndex >> dummy_vector2 >> mapValue >>…
233 if (serializedIndex == -1 && m_confirm.hashBlock == ABANDON_HASH) {
237 } else if (!m_confirm.hashBlock.IsNull()) {
337 m_confirm.hashBlock = uint256();
/dports/net-p2p/bitcoin-daemon/bitcoin-22.0/src/wallet/
H A Dtransaction.h56 uint256 hashBlock; in Unserialize() local
60 s >> tx >> hashBlock >> vMerkleBranch >> nIndex; in Unserialize()
189 uint256 hashBlock; member
191 …t b = 0, uint256 h = uint256(), int i = 0) : status(s), block_height(b), hashBlock(h), nIndex(i) {} in status()
210 uint256 serializedHash = isAbandoned() ? ABANDON_HASH : m_confirm.hashBlock; in Serialize()
224 …s >> tx >> m_confirm.hashBlock >> dummy_vector1 >> serializedIndex >> dummy_vector2 >> mapValue >>… in Unserialize()
233 if (serializedIndex == -1 && m_confirm.hashBlock == ABANDON_HASH) { in Unserialize()
237 } else if (!m_confirm.hashBlock.IsNull()) { in Unserialize()
337 m_confirm.hashBlock = uint256(); in setAbandoned()
/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/
H A Dcoins.h140 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
151 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
153 uint256 hashBlock;
180 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock);
206 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
220 mutable uint256 hashBlock;
238 void SetBestBlock(const uint256 &hashBlock);
239 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
H A Dcoins.cpp15 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
30 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
157 if (hashBlock.IsNull()) in GetBestBlock()
158 hashBlock = base->GetBestBlock(); in GetBestBlock()
159 return hashBlock; in GetBestBlock()
163 hashBlock = hashBlockIn; in SetBestBlock()
218 hashBlock = hashBlockIn; in BatchWrite()
223 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()
/dports/net-p2p/bitcoin-daemon/bitcoin-22.0/src/
H A Dcoins.h140 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
151 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
153 uint256 hashBlock;
180 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock);
206 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
220 mutable uint256 hashBlock;
238 void SetBestBlock(const uint256 &hashBlock);
239 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
H A Dcoins.cpp15 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
30 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
157 if (hashBlock.IsNull()) in GetBestBlock()
158 hashBlock = base->GetBestBlock(); in GetBestBlock()
159 return hashBlock; in GetBestBlock()
163 hashBlock = hashBlockIn; in SetBestBlock()
218 hashBlock = hashBlockIn; in BatchWrite()
223 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()
/dports/net-p2p/bitcoin/bitcoin-22.0/src/
H A Dcoins.h140 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
151 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
153 uint256 hashBlock;
180 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock);
206 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
220 mutable uint256 hashBlock;
238 void SetBestBlock(const uint256 &hashBlock);
239 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
H A Dcoins.cpp15 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
30 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
157 if (hashBlock.IsNull()) in GetBestBlock()
158 hashBlock = base->GetBestBlock(); in GetBestBlock()
159 return hashBlock; in GetBestBlock()
163 hashBlock = hashBlockIn; in SetBestBlock()
218 hashBlock = hashBlockIn; in BatchWrite()
223 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/
H A Dcoins.h219 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
230 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
232 uint256 hashBlock;
259 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock);
285 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
299 mutable uint256 hashBlock;
317 void SetBestBlock(const uint256 &hashBlock);
318 bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
H A Dcoins.cpp15 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
30 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
139 if (hashBlock.IsNull()) in GetBestBlock()
140 hashBlock = base->GetBestBlock(); in GetBestBlock()
141 return hashBlock; in GetBestBlock()
145 hashBlock = hashBlockIn; in SetBestBlock()
202 hashBlock = hashBlockIn; in BatchWrite()
207 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()
/dports/net-p2p/namecoin-daemon/namecoin-core-nc0.21.0.1/src/
H A Dcoins.h166 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
177 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
179 uint256 hashBlock;
218 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CNameCache &names);
251 … bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CNameCache &names) override;
266 mutable uint256 hashBlock;
288 void SetBestBlock(const uint256 &hashBlock);
293 … bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CNameCache &names) override;
/dports/net-p2p/namecoin/namecoin-core-nc0.21.0.1/src/
H A Dcoins.h166 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
177 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
179 uint256 hashBlock;
218 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CNameCache &names);
251 … bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CNameCache &names) override;
266 mutable uint256 hashBlock;
288 void SetBestBlock(const uint256 &hashBlock);
293 … bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CNameCache &names) override;
/dports/net-p2p/namecoin-utils/namecoin-core-nc0.21.0.1/src/
H A Dcoins.h166 CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {} in CCoinsViewCursor()
177 const uint256 &GetBestBlock() const { return hashBlock; } in GetBestBlock()
179 uint256 hashBlock;
218 virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CNameCache &names);
251 … bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CNameCache &names) override;
266 mutable uint256 hashBlock;
288 void SetBestBlock(const uint256 &hashBlock);
293 … bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, const CNameCache &names) override;
/dports/net-p2p/zetacoin/zetacoin-0.13.2.1/src/
H A Dcoins.cpp47 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
56 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
159 if (hashBlock.IsNull()) in GetBestBlock()
160 hashBlock = base->GetBestBlock(); in GetBestBlock()
161 return hashBlock; in GetBestBlock()
165 hashBlock = hashBlockIn; in SetBestBlock()
209 hashBlock = hashBlockIn; in BatchWrite()
214 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()
/dports/net-p2p/zetacoin-utils/zetacoin-0.13.2.1/src/
H A Dcoins.cpp47 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
56 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
159 if (hashBlock.IsNull()) in GetBestBlock()
160 hashBlock = base->GetBestBlock(); in GetBestBlock()
161 return hashBlock; in GetBestBlock()
165 hashBlock = hashBlockIn; in SetBestBlock()
209 hashBlock = hashBlockIn; in BatchWrite()
214 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()
/dports/net-p2p/zetacoin-daemon/zetacoin-0.13.2.1/src/
H A Dcoins.cpp47 bool CCoinsView::BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return false; } in BatchWrite() argument
56 …:BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) { return base->BatchWrite(mapCoins, has… in BatchWrite() argument
159 if (hashBlock.IsNull()) in GetBestBlock()
160 hashBlock = base->GetBestBlock(); in GetBestBlock()
161 return hashBlock; in GetBestBlock()
165 hashBlock = hashBlockIn; in SetBestBlock()
209 hashBlock = hashBlockIn; in BatchWrite()
214 bool fOk = base->BatchWrite(cacheCoins, hashBlock); in Flush()

12345678910>>...15