Home
last modified time | relevance | path

Searched refs:etick (Results 1 – 25 of 103) sorted by relevance

12345

/dports/audio/musescore/MuseScore-3.6.1/libmscore/
H A DchangeMap.cpp163 void ChangeMap::addRamp(Fraction stick, Fraction etick, int change, ChangeMethod method, ChangeDire… in addRamp() argument
167 insert(stick, ChangeEvent(stick, etick, change, method, direction)); in addRamp()
219 Fraction etick = tick + event.length; in cleanupStage1() local
227 if (etick <= currentRampEnd) { in cleanupStage1()
235 currentRampEnd = etick; in cleanupStage1()
241 currentRampEnd = etick; in cleanupStage1()
246 endPoints.push_back(std::make_pair(tick, etick)); in cleanupStage1()
430 std::vector<std::pair<Fraction, Fraction>> ChangeMap::changesInRange(Fraction stick, Fraction etick) in changesInRange() argument
441 if (tick > etick) in changesInRange()
449 Fraction useEtick = eventEtick > etick ? etick : eventEtick; in changesInRange()
H A DsplitMeasure.cpp58 Fraction etick = measure->endTick(); in splitMeasure() local
65 if (s->tick() >= stick && s->tick() < etick) in splitMeasure()
67 if (s->tick2() >= stick && s->tick2() < etick) in splitMeasure()
H A DchangeMap.h94 std::vector<std::pair<Fraction, Fraction>> changesInRange(Fraction stick, Fraction etick);
97 …void addRamp(Fraction stick, Fraction etick, int change, ChangeMethod method, ChangeDirection dire…
H A Dselect.cpp604 Fraction etick = tickEnd(); in updateSelectedElements() local
620 … if ((sp->tick() >= stick && sp->tick() < etick) || (sp->tick2() >= stick && sp->tick2() < etick)) in updateSelectedElements()
624 …else if ((sp->tick() >= stick && sp->tick() < etick) && (sp->tick2() >= stick && sp->tick2() <= et… in updateSelectedElements()
1349 …lection(Segment* seg, Segment* segAfter, int staffIdx, const Fraction& tick, const Fraction& etick) in extendRangeSelection() argument
1369 else if (etick >= tickEnd()) { in extendRangeSelection()
H A Drendermidi.cpp402 Fraction etick = stick + chord->ticks(); in collectNote() local
403 auto changes = veloEvents.changesInRange(stick, etick); in collectNote()
404 auto multChanges = multEvents.changesInRange(stick, etick); in collectNote()
952 Fraction etick = tick + d->velocityChangeLength(); in updateVelo() local
976 Fraction etick = tick + d->velocityChangeLength(); in updateVelo() local
1108 int etick = s->tick2().ticks(); in renderSpanners() local
1109 if (stick >= tick2 || etick < tick1) in renderSpanners()
1114 if (etick > tick2) in renderSpanners()
1115 etick = tick2; in renderSpanners()
1139 while (lastPointTick < etick) { in renderSpanners()
[all …]
H A Dlyricsline.cpp177 Fraction etick = system->lastMeasure()->endTick(); in layoutSystem() local
193 sst = tick2() <= etick ? SpannerSegmentType::SINGLE : SpannerSegmentType::BEGIN; in layoutSystem()
195 else if (tick() < stick && tick2() > etick) { in layoutSystem()
H A Dexcerpt.h74 …tatic void cloneStaff2(Staff* ostaff, Staff* nstaff, const Fraction& stick, const Fraction& etick);
/dports/net/p5-Socket-Class/Socket-Class-2.258/xs/sc_ssl/openssl/source/ssl/
H A Dt1_lib.c787 static int tls_decrypt_ticket(SSL *s, const unsigned char *etick, int eticklen, in tls_decrypt_ticket() argument
806 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
819 if (memcmp(etick, s->ctx->tlsext_tick_key_name, 16)) in tls_decrypt_ticket()
824 s->ctx->tlsext_tick_aes_key, etick + 16); in tls_decrypt_ticket()
832 HMAC_Update(&hctx, etick, eticklen); in tls_decrypt_ticket()
835 if (memcmp(tick_hmac, etick + eticklen, mlen)) in tls_decrypt_ticket()
839 p = etick + 16 + EVP_CIPHER_CTX_iv_length(&ctx); in tls_decrypt_ticket()
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/
H A Dtempo.cpp191 void TempoList::eraseRange(unsigned stick, unsigned etick) in eraseRange() argument
193 if(stick >= etick || stick > MAX_TICK) in eraseRange()
195 if(etick > MAX_TICK) in eraseRange()
196 etick = MAX_TICK; in eraseRange()
202 iTEvent ee = MusEGlobal::tempomap.upper_bound(etick); in eraseRange()
H A Dtempo.h98 void eraseRange(unsigned stick, unsigned etick);
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/midiedit/
H A Decanvas.cpp193 unsigned etick = stick + len; in updateItems() local
196 if (etick > end_tick) in updateItems()
197 end_tick = etick; in updateItems()
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/ssl/
H A Dt1_lib.c1321 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1373 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1389 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1399 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1424 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1430 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1436 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1505 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/openssl-src-111.9.0+1.1.1g/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/CryptoPkg/Library/OpensslLib/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/ssl/
H A Dt1_lib.c1321 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1373 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1389 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1399 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1424 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1430 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1436 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1505 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/CryptoPkg/Library/OpensslLib/openssl/ssl/
H A Dt1_lib.c1322 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1374 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1390 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1400 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1425 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1431 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1437 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1506 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.14.0+1.1.1j/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.15.0+1.1.1k/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/ssl/
H A Dt1_lib.c1321 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1373 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1389 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1399 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1424 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1430 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1436 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1505 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()
/dports/www/websocat/websocat-1.9.0/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/ssl/
H A Dt1_lib.c1356 SSL_TICKET_STATUS tls_decrypt_ticket(SSL *s, const unsigned char *etick, in tls_decrypt_ticket() argument
1408 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket()
1424 if (memcmp(etick, tctx->ext.tick_key_name, in tls_decrypt_ticket()
1434 etick + TLSEXT_KEYNAME_LENGTH) <= 0) { in tls_decrypt_ticket()
1459 if (HMAC_Update(hctx, etick, eticklen) <= 0 in tls_decrypt_ticket()
1465 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) { in tls_decrypt_ticket()
1471 p = etick + TLSEXT_KEYNAME_LENGTH + EVP_CIPHER_CTX_iv_length(ctx); in tls_decrypt_ticket()
1540 retcb = s->session_ctx->decrypt_ticket_cb(s, sess, etick, keyname_len, in tls_decrypt_ticket()

12345