Home
last modified time | relevance | path

Searched refs:m_ctr (Results 1 – 25 of 100) sorted by relevance

1234

/dports/audio/kid3-qt5/kid3-3.8.6/src/core/export/
H A Dplaylistcreator.cpp415 ok = m_ctr.write(); in add()
416 m_ctr.m_playlistDirName = m_dirName; in add()
419 if (m_ctr.m_playlistFileName.isEmpty()) { in add()
420 if (!m_ctr.m_cfg.useFileNameFormat()) { in add()
421 m_ctr.m_playlistFileName = QDir(m_ctr.m_playlistDirName).dirName(); in add()
423 m_ctr.m_playlistFileName = formatString(m_ctr.m_cfg.fileNameFormat()); in add()
427 m_ctr.m_playlistFileName, m_ctr.m_cfg.fileExtensionForFormat()); in add()
430 if (!m_ctr.m_cfg.useFullPath() && in add()
435 if (m_ctr.m_cfg.useSortTagField()) { in add()
441 if (m_ctr.m_cfg.writeInfo()) { in add()
[all …]
/dports/audio/kid3-kf5/kid3-3.8.6/src/core/export/
H A Dplaylistcreator.cpp415 ok = m_ctr.write(); in add()
416 m_ctr.m_playlistDirName = m_dirName; in add()
419 if (m_ctr.m_playlistFileName.isEmpty()) { in add()
420 if (!m_ctr.m_cfg.useFileNameFormat()) { in add()
421 m_ctr.m_playlistFileName = QDir(m_ctr.m_playlistDirName).dirName(); in add()
423 m_ctr.m_playlistFileName = formatString(m_ctr.m_cfg.fileNameFormat()); in add()
427 m_ctr.m_playlistFileName, m_ctr.m_cfg.fileExtensionForFormat()); in add()
430 if (!m_ctr.m_cfg.useFullPath() && in add()
435 if (m_ctr.m_cfg.useSortTagField()) { in add()
441 if (m_ctr.m_cfg.writeInfo()) { in add()
[all …]
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/lib/modes/aead/gcm/
H A Dgcm.cpp22 m_ctr(new CTR_BE(cipher, 4)), in GCM_Mode()
38 m_ctr->clear(); in clear()
71 return m_ctr->key_spec(); in key_spec()
76 m_ctr->set_key(key, keylen); in key_schedule()
82 m_ctr->encipher(H); in key_schedule()
111 m_ctr->set_iv(m_y0.data(), m_y0.size()); in start_msg()
114 m_ctr->encipher(m_y0); in start_msg()
123 m_ctr->cipher(buf, buf, sz); in process()
134 m_ctr->cipher(buf, buf, sz); in finish()
146 m_ctr->cipher(buf, buf, sz); in process()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/botan/src/lib/modes/aead/gcm/
H A Dgcm.cpp22 m_ctr(new CTR_BE(cipher, 4)), in GCM_Mode()
38 m_ctr->clear(); in clear()
71 return m_ctr->key_spec(); in key_spec()
76 m_ctr->set_key(key, keylen); in key_schedule()
82 m_ctr->encipher(H); in key_schedule()
111 m_ctr->set_iv(m_y0.data(), m_y0.size()); in start_msg()
114 m_ctr->encipher(m_y0); in start_msg()
123 m_ctr->cipher(buf, buf, sz); in process()
134 m_ctr->cipher(buf, buf, sz); in finish()
146 m_ctr->cipher(buf, buf, sz); in process()
[all …]
/dports/security/botan2/Botan-2.18.2/src/lib/modes/aead/gcm/
H A Dgcm.cpp22 m_ctr(new CTR_BE(cipher, 4)), in GCM_Mode()
38 m_ctr->clear(); in clear()
71 return m_ctr->key_spec(); in key_spec()
76 m_ctr->set_key(key, keylen); in key_schedule()
82 m_ctr->encipher(H); in key_schedule()
111 m_ctr->set_iv(m_y0.data(), m_y0.size()); in start_msg()
114 m_ctr->encipher(m_y0); in start_msg()
123 m_ctr->cipher(buf, buf, sz); in process()
134 m_ctr->cipher(buf, buf, sz); in finish()
146 m_ctr->cipher(buf, buf, sz); in process()
[all …]
/dports/graphics/epix/epix-1.2.19/
H A Dsphere.cc51 : m_ctr(ctr), m_rad(rad), m_malformed(false) { } in Sphere()
54 : m_ctr(ctr), m_rad(norm(pt-ctr)), m_malformed(false) { } in Sphere()
58 return m_ctr; in center()
75 m_ctr += arg; in shift()
82 m_ctr = arg; in move_to()
102 P dir(m_ctr - location); in draw()
113 Circle temp(m_ctr - x*dir, sqrt((m_rad-x)*(m_rad+x)), dir); in draw()
/dports/devel/codequery/codequery-0.24.0/querylib/
H A Dsmall_lib.cpp273 idxcounter::idxcounter():m_ctr(0) {} in idxcounter()
277 m_ctr = idxc.m_ctr; in idxcounter()
279 idxcounter& idxcounter::operator =(long unsigned int idx) {m_ctr = idx; return *this;} in operator =()
284 m_ctr = idxc.m_ctr; in operator =()
288 void idxcounter::setCounterVal(long unsigned int i) {m_ctr = i;} in setCounterVal()
289 void idxcounter::reset(void) {m_ctr = 0;} in reset()
290 idxcounter& idxcounter::operator ++() {++m_ctr;sprintf(m_buf, "%lu", m_ctr); return *this;} in operator ++()
291 idxcounter& idxcounter::operator --() {--m_ctr;sprintf(m_buf, "%lu", m_ctr); return *this;} in operator --()
292 long unsigned int idxcounter::getInt(void) const {return m_ctr;} in getInt()
/dports/security/cryptopp/cryptopp-8.6.0/
H A Dhc128.cpp98 unsigned int cc = m_ctr & 0x1ff; in NAMESPACE_BEGIN()
101 if (m_ctr < 512) in NAMESPACE_BEGIN()
103 m_ctr = (m_ctr + 16) & 0x3ff; in NAMESPACE_BEGIN()
123 m_ctr = (m_ctr + 16) & 0x3ff; in NAMESPACE_BEGIN()
147 unsigned int cc = m_ctr & 0x1ff; in SetupUpdate()
150 if (m_ctr < 512) in SetupUpdate()
152 m_ctr = (m_ctr + 16) & 0x3ff; in SetupUpdate()
172 m_ctr = (m_ctr + 16) & 0x3ff; in SetupUpdate()
268 m_ctr = 0; in CipherResynchronize()
H A Dccm.cpp41 m_ctr.Resynchronize(m_buffer, REQUIRED_BLOCKSIZE); in Resync()
43 m_ctr.SetCipherWithIV(cipher, m_buffer); in Resync()
45 m_ctr.Seek(REQUIRED_BLOCKSIZE); in Resync()
133 m_ctr.Seek(0); in AuthenticateLastFooterBlock()
134 m_ctr.ProcessData(mac, CBC_Buffer(), macSize); in AuthenticateLastFooterBlock()
H A Dhc256.cpp62 i = m_ctr & 0x3ff; in Generate()
68 if (m_ctr < 1024) { in Generate()
76 m_ctr = (m_ctr + 1) & 0x7ff; in Generate()
151 m_ctr = 0; in CipherResynchronize()
/dports/emulators/citra-qt5/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dhc128.cpp98 unsigned int cc = m_ctr & 0x1ff; in NAMESPACE_BEGIN()
101 if (m_ctr < 512) in NAMESPACE_BEGIN()
103 m_ctr = (m_ctr + 16) & 0x3ff; in NAMESPACE_BEGIN()
123 m_ctr = (m_ctr + 16) & 0x3ff; in NAMESPACE_BEGIN()
147 unsigned int cc = m_ctr & 0x1ff; in SetupUpdate()
150 if (m_ctr < 512) in SetupUpdate()
152 m_ctr = (m_ctr + 16) & 0x3ff; in SetupUpdate()
172 m_ctr = (m_ctr + 16) & 0x3ff; in SetupUpdate()
268 m_ctr = 0; in CipherResynchronize()
H A Dccm.cpp41 m_ctr.Resynchronize(m_buffer, REQUIRED_BLOCKSIZE); in Resync()
43 m_ctr.SetCipherWithIV(cipher, m_buffer); in Resync()
45 m_ctr.Seek(REQUIRED_BLOCKSIZE); in Resync()
133 m_ctr.Seek(0); in AuthenticateLastFooterBlock()
134 m_ctr.ProcessData(mac, CBC_Buffer(), macSize); in AuthenticateLastFooterBlock()
H A Dhc256.cpp62 i = m_ctr & 0x3ff; in Generate()
68 if (m_ctr < 1024) { in Generate()
76 m_ctr = (m_ctr + 1) & 0x7ff; in Generate()
151 m_ctr = 0; in CipherResynchronize()
/dports/emulators/citra/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dhc128.cpp98 unsigned int cc = m_ctr & 0x1ff; in NAMESPACE_BEGIN()
101 if (m_ctr < 512) in NAMESPACE_BEGIN()
103 m_ctr = (m_ctr + 16) & 0x3ff; in NAMESPACE_BEGIN()
123 m_ctr = (m_ctr + 16) & 0x3ff; in NAMESPACE_BEGIN()
147 unsigned int cc = m_ctr & 0x1ff; in SetupUpdate()
150 if (m_ctr < 512) in SetupUpdate()
152 m_ctr = (m_ctr + 16) & 0x3ff; in SetupUpdate()
172 m_ctr = (m_ctr + 16) & 0x3ff; in SetupUpdate()
268 m_ctr = 0; in CipherResynchronize()
H A Dccm.cpp41 m_ctr.Resynchronize(m_buffer, REQUIRED_BLOCKSIZE); in Resync()
43 m_ctr.SetCipherWithIV(cipher, m_buffer); in Resync()
45 m_ctr.Seek(REQUIRED_BLOCKSIZE); in Resync()
133 m_ctr.Seek(0); in AuthenticateLastFooterBlock()
134 m_ctr.ProcessData(mac, CBC_Buffer(), macSize); in AuthenticateLastFooterBlock()
H A Dhc256.cpp62 i = m_ctr & 0x3ff; in Generate()
68 if (m_ctr < 1024) { in Generate()
76 m_ctr = (m_ctr + 1) & 0x7ff; in Generate()
151 m_ctr = 0; in CipherResynchronize()
/dports/sysutils/fusefs-securefs/securefs-0.12.0/external/cryptopp/
H A Dhc128.cpp98 unsigned int cc = m_ctr & 0x1ff; in NAMESPACE_BEGIN()
101 if (m_ctr < 512) in NAMESPACE_BEGIN()
103 m_ctr = (m_ctr + 16) & 0x3ff; in NAMESPACE_BEGIN()
123 m_ctr = (m_ctr + 16) & 0x3ff; in NAMESPACE_BEGIN()
147 unsigned int cc = m_ctr & 0x1ff; in SetupUpdate()
150 if (m_ctr < 512) in SetupUpdate()
152 m_ctr = (m_ctr + 16) & 0x3ff; in SetupUpdate()
172 m_ctr = (m_ctr + 16) & 0x3ff; in SetupUpdate()
268 m_ctr = 0; in CipherResynchronize()
H A Dccm.cpp41 m_ctr.Resynchronize(m_buffer, REQUIRED_BLOCKSIZE); in Resync()
43 m_ctr.SetCipherWithIV(cipher, m_buffer); in Resync()
45 m_ctr.Seek(REQUIRED_BLOCKSIZE); in Resync()
133 m_ctr.Seek(0); in AuthenticateLastFooterBlock()
134 m_ctr.ProcessData(mac, CBC_Buffer(), macSize); in AuthenticateLastFooterBlock()
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/lib/modes/aead/eax/
H A Deax.cpp41 m_ctr(new CTR_BE(m_cipher->clone())), in EAX_Mode()
51 m_ctr->clear(); in clear()
96 m_ctr->set_key(key, length); in key_schedule()
117 m_ctr->set_iv(m_nonce_mac.data(), m_nonce_mac.size()); in start_msg()
127 m_ctr->cipher(buf, buf, sz); in process()
154 m_ctr->cipher(buf, buf, sz); in process()
171 m_ctr->cipher(buf, buf, remaining); in finish()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/botan/src/lib/modes/aead/eax/
H A Deax.cpp41 m_ctr(new CTR_BE(m_cipher->clone())), in EAX_Mode()
51 m_ctr->clear(); in clear()
96 m_ctr->set_key(key, length); in key_schedule()
117 m_ctr->set_iv(m_nonce_mac.data(), m_nonce_mac.size()); in start_msg()
127 m_ctr->cipher(buf, buf, sz); in process()
154 m_ctr->cipher(buf, buf, sz); in process()
171 m_ctr->cipher(buf, buf, remaining); in finish()
/dports/security/botan2/Botan-2.18.2/src/lib/modes/aead/eax/
H A Deax.cpp41 m_ctr(new CTR_BE(m_cipher->clone())), in EAX_Mode()
51 m_ctr->clear(); in clear()
96 m_ctr->set_key(key, length); in key_schedule()
117 m_ctr->set_iv(m_nonce_mac.data(), m_nonce_mac.size()); in start_msg()
127 m_ctr->cipher(buf, buf, sz); in process()
154 m_ctr->cipher(buf, buf, sz); in process()
171 m_ctr->cipher(buf, buf, remaining); in finish()
/dports/graphics/epix/epix-1.2.19/samples/
H A Dlighting.h46 m_ctr = 0.25*(p1+p2+p3+p4); in Chip()
52 double how_far() const { return norm(camera.viewpt()-m_ctr); } in how_far()
67 P m_ctr; // our location variable
73 P spot_dir(spot.m_loc - m_ctr); in appearance()
77 P view_dir(viewer - m_ctr); in appearance()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cryptopp/
H A Dccm.cpp42 m_ctr.Resynchronize(m_buffer, REQUIRED_BLOCKSIZE); in Resync()
44 m_ctr.SetCipherWithIV(cipher, m_buffer); in Resync()
46 m_ctr.Seek(REQUIRED_BLOCKSIZE); in Resync()
134 m_ctr.Seek(0); in AuthenticateLastFooterBlock()
135 m_ctr.ProcessData(mac, CBC_Buffer(), macSize); in AuthenticateLastFooterBlock()
/dports/emulators/mess/mame-mame0226/src/mame/machine/
H A Dzx8302.cpp154 m_ctr(time(nullptr) + RTC_BASE_ADJUST), in zx8302_device()
205 save_item(NAME(m_ctr)); in device_start()
233 m_ctr++; in device_timer()
321 data = (m_ctr >> 24) & 0xff; in rtc_r()
324 data = (m_ctr >> 16) & 0xff; in rtc_r()
327 data = (m_ctr >> 8) & 0xff; in rtc_r()
330 data = m_ctr & 0xff; in rtc_r()
/dports/emulators/mame/mame-mame0226/src/mame/machine/
H A Dzx8302.cpp154 m_ctr(time(nullptr) + RTC_BASE_ADJUST), in zx8302_device()
205 save_item(NAME(m_ctr)); in device_start()
233 m_ctr++; in device_timer()
321 data = (m_ctr >> 24) & 0xff; in rtc_r()
324 data = (m_ctr >> 16) & 0xff; in rtc_r()
327 data = (m_ctr >> 8) & 0xff; in rtc_r()
330 data = m_ctr & 0xff; in rtc_r()

1234