Home
last modified time | relevance | path

Searched refs:taglen (Results 1 – 25 of 1052) sorted by relevance

12345678910>>...43

/dports/science/nwchem-data/nwchem-7.0.2-release/src/optim/neb/
H A Dbead_list.F37 integer size,taglen,movecslen
49 taglen = inp_strlen(tag)
88 integer size,taglen
98 taglen = inp_strlen(tag)
142 taglen = inp_strlen(tag)
201 integer size,taglen,tmplen,j
215 taglen = inp_strlen(tag)
288 integer size,taglen
298 taglen = inp_strlen(tag)
347 taglen = inp_strlen(tag)
[all …]
/dports/security/opensc/OpenSC-0.22.0/src/libopensc/
H A Def-atr.c39 size_t taglen; in sc_parse_ef_atr_content() local
47 if (tag && taglen >= 1) { in sc_parse_ef_atr_content()
54 size_t len = taglen > sizeof(ef_atr.pre_issuing) ? sizeof(ef_atr.pre_issuing) : taglen; in sc_parse_ef_atr_content()
63 if (tag && taglen >= 3) { in sc_parse_ef_atr_content()
76 if (tag && taglen >= 8) { in sc_parse_ef_atr_content()
91 if (taglen > sizeof(ef_atr.aid.value)) in sc_parse_ef_atr_content()
93 memcpy(ef_atr.aid.value, tag, taglen); in sc_parse_ef_atr_content()
94 ef_atr.aid.len = taglen; in sc_parse_ef_atr_content()
101 size_t len = taglen > sizeof(ef_atr.issuer_data) ? sizeof(ef_atr.issuer_data) : taglen; in sc_parse_ef_atr_content()
112 tag = sc_asn1_find_tag(ctx, tag, taglen, SC_ASN1_TAG_OBJECT, &taglen); in sc_parse_ef_atr_content()
[all …]
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/scontrol/
H A Dupdate_part.c52 int taglen, vallen; in scontrol_parse_part_options() local
71 taglen = val - argv[i]; in scontrol_parse_part_options()
113 MAX(taglen, 4)) == 0) { in scontrol_parse_part_options()
195 else if (xstrncasecmp(tag, "LLN", MAX(taglen, 1)) == 0) { in scontrol_parse_part_options()
235 !xstrncasecmp(tag, "Shared", MAX(taglen, 2))) { in scontrol_parse_part_options()
299 else if (!xstrncasecmp(tag, "Priority", MAX(taglen, 3))) { in scontrol_parse_part_options()
324 else if (!xstrncasecmp(tag, "State", MAX(taglen, 2))) { in scontrol_parse_part_options()
341 else if (!xstrncasecmp(tag, "Nodes", MAX(taglen, 1))) { in scontrol_parse_part_options()
361 else if (!xstrncasecmp(tag, "DenyQos", MAX(taglen, 5))) { in scontrol_parse_part_options()
410 else if (!xstrncasecmp(tag, "QoS", MAX(taglen, 3))) { in scontrol_parse_part_options()
[all …]
H A Dupdate_job.c576 int taglen, vallen; in scontrol_update_job() local
587 taglen = val - argv[i]; in scontrol_update_job()
591 taglen--; in scontrol_update_job()
608 taglen = strlen(tag); in scontrol_update_job()
622 MAX(taglen, 6)) == 0) { in scontrol_update_job()
641 MAX(taglen, 5)) == 0) { in scontrol_update_job()
674 MAX(taglen, 8)) == 0) { in scontrol_update_job()
881 MAX(taglen, 10)) == 0) { in scontrol_update_job()
890 MAX(taglen, 10)) == 0) { in scontrol_update_job()
900 MAX(taglen, 5)) == 0) { in scontrol_update_job()
[all …]
H A Dcreate_res.c110 int taglen = 0; in scontrol_parse_res_options() local
114 taglen = val - argv[i]; in scontrol_parse_res_options()
118 } else if (!val || taglen == 0) { in scontrol_parse_res_options()
125 taglen--; in scontrol_parse_res_options()
129 if (!xstrncasecmp(tag, "Accounts", MAX(taglen, 1))) { in scontrol_parse_res_options()
145 } else if (!xstrncasecmp(tag, "Flags", MAX(taglen, 2))) { in scontrol_parse_res_options()
160 } else if (!xstrncasecmp(tag, "Users", MAX(taglen, 1))) { in scontrol_parse_res_options()
177 MAX(taglen, 1))) { in scontrol_parse_res_options()
222 MAX(taglen, 2))) { in scontrol_parse_res_options()
232 xstrncasecmp(tag, "NodeCount", MAX(taglen,5)) == 0) { in scontrol_parse_res_options()
[all …]
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/optim/neb/
H A Dbead_list.F37 integer size,taglen,movecslen
49 taglen = inp_strlen(tag)
88 integer size,taglen
98 taglen = inp_strlen(tag)
142 taglen = inp_strlen(tag)
201 integer size,taglen,tmplen,j
215 taglen = inp_strlen(tag)
288 integer size,taglen
298 taglen = inp_strlen(tag)
347 taglen = inp_strlen(tag)
[all …]
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/ext/crypto/libtomcrypt/src/encauth/ccm/
H A Dccm_test.c35 unsigned long taglen; in ccm_test()
116 unsigned long taglen, x, y; in ccm_test()
134 taglen = tests[x].taglen; in ccm_test()
176 if (tests[x].taglen != taglen) { in ccm_test()
179 printf("taglen %lu (is) %lu (should)\n", taglen, tests[x].taglen); in ccm_test()
183 if (XMEMCMP(tag, tests[x].tag, tests[x].taglen)) { in ccm_test()
186 print_hex("tag is ", tag, tests[x].taglen); in ccm_test()
193 XMEMCPY(tag3, tests[x].tag, tests[x].taglen); in ccm_test()
194 taglen = tests[x].taglen; in ccm_test()
233 XMEMCPY(tag3, tests[x].tag, tests[x].taglen); in ccm_test()
[all …]
H A Dccm_init.c28 const unsigned char *key, int keylen, int ptlen, int taglen, int aadlen) in ccm_init() argument
34 LTC_ARGCHK(taglen != 0); in ccm_init()
47 ccm->taglen = taglen; in ccm_init()
48 ccm->taglen &= ~1; in ccm_init()
49 if (ccm->taglen > 16) { in ccm_init()
50 ccm->taglen = 16; in ccm_init()
54 if (ccm->taglen < 4) { in ccm_init()
/dports/security/dropbear/dropbear-2020.81/libtomcrypt/src/encauth/ccm/
H A Dccm_test.c33 unsigned long taglen; in ccm_test()
114 unsigned long taglen, x, y; in ccm_test()
132 taglen = tests[x].taglen; in ccm_test()
145 tag, &taglen, 0)) != CRYPT_OK) { in ccm_test()
156 tag, &taglen, 0)) != CRYPT_OK) { in ccm_test()
180 if (compare_testvector(tag, taglen, tests[x].tag, tests[x].taglen, "CCM encrypt tag", x)) { in ccm_test()
185 XMEMCPY(tag3, tests[x].tag, tests[x].taglen); in ccm_test()
186 taglen = tests[x].taglen; in ccm_test()
221 XMEMCPY(tag3, tests[x].tag, tests[x].taglen); in ccm_test()
223 taglen = tests[x].taglen; in ccm_test()
[all …]
H A Dccm_init.c26 const unsigned char *key, int keylen, int ptlen, int taglen, int aadlen) in ccm_init() argument
32 LTC_ARGCHK(taglen != 0); in ccm_init()
45 ccm->taglen = taglen; in ccm_init()
46 ccm->taglen &= ~1; in ccm_init()
47 if (ccm->taglen > 16) { in ccm_init()
48 ccm->taglen = 16; in ccm_init()
52 if (ccm->taglen < 4) { in ccm_init()
/dports/security/libtomcrypt/libtomcrypt-1.18.2/src/encauth/ccm/
H A Dccm_test.c33 unsigned long taglen; in ccm_test()
114 unsigned long taglen, x, y; in ccm_test()
132 taglen = tests[x].taglen; in ccm_test()
145 tag, &taglen, 0)) != CRYPT_OK) { in ccm_test()
156 tag, &taglen, 0)) != CRYPT_OK) { in ccm_test()
180 if (compare_testvector(tag, taglen, tests[x].tag, tests[x].taglen, "CCM encrypt tag", x)) { in ccm_test()
185 XMEMCPY(tag3, tests[x].tag, tests[x].taglen); in ccm_test()
186 taglen = tests[x].taglen; in ccm_test()
221 XMEMCPY(tag3, tests[x].tag, tests[x].taglen); in ccm_test()
223 taglen = tests[x].taglen; in ccm_test()
[all …]
H A Dccm_init.c26 const unsigned char *key, int keylen, int ptlen, int taglen, int aadlen) in ccm_done()
32 LTC_ARGCHK(taglen != 0); in ccm_done()
45 ccm->taglen = taglen; in ccm_done()
46 ccm->taglen &= ~1; in ccm_done()
47 if (ccm->taglen > 16) { in ccm_done()
48 ccm->taglen = 16; in ccm_done()
52 if (ccm->taglen < 4) { in ccm_done()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/ldap/c-sdk/libraries/liblber/
H A Dencode.c69 int taglen; in ber_put_tag() local
76 return (ber_write(ber, ((char*)&ntag) + sizeof(ber_int_t) - taglen, taglen, in ber_put_tag()
143 int i, sign, taglen; in ber_put_int_or_enum() local
200 int taglen, lenlen, rc; in ber_put_ostring() local
249 int taglen, lenlen, len; in ber_put_bitstring() local
269 int taglen; in ber_put_null() local
277 return (taglen + 1); in ber_put_null()
282 int taglen; in ber_put_boolean() local
295 return (taglen + 2); in ber_put_boolean()
357 int taglen, lenlen; in ber_put_seqorset() local
[all …]
/dports/net/ldapsdk/mozldap-6.0.7/c-sdk/ldap/libraries/liblber/
H A Dencode.c74 int taglen; in ber_put_tag() local
82 taglen, nosos ) ); in ber_put_tag()
163 int i, sign, taglen; in ber_put_int_or_enum() local
237 int taglen, lenlen, rc; in ber_put_ostring() local
295 int taglen, lenlen, len; in ber_put_bitstring() local
323 int taglen; in ber_put_null() local
334 return( taglen + 1 ); in ber_put_null()
341 int taglen; in ber_put_boolean() local
358 return( taglen + 2 ); in ber_put_boolean()
433 int taglen, lenlen; in ber_put_seqorset() local
[all …]
/dports/multimedia/handbrake/ffmpeg-4.4/libavformat/
H A Did3v2.c372 taglen--; in read_uslt()
377 taglen -= 3; in read_uslt()
420 taglen -= 4; in read_comment()
472 taglen--; in read_geobtag()
490 if (taglen) { in read_geobtag()
594 if (taglen <= 4 || (!isv34 && taglen <= 6)) in read_apic()
604 taglen--; in read_apic()
636 taglen--; in read_apic()
652 if (!apic->buf || !taglen || avio_read(pb, apic->buf->data, taglen) != taglen) in read_apic()
682 int taglen; in read_chapter() local
[all …]
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavformat/
H A Did3v2.c372 taglen--; in read_uslt()
377 taglen -= 3; in read_uslt()
420 taglen -= 4; in read_comment()
472 taglen--; in read_geobtag()
490 if (taglen) { in read_geobtag()
594 if (taglen <= 4 || (!isv34 && taglen <= 6)) in read_apic()
604 taglen--; in read_apic()
636 taglen--; in read_apic()
652 if (!apic->buf || !taglen || avio_read(pb, apic->buf->data, taglen) != taglen) in read_apic()
682 int taglen; in read_chapter() local
[all …]
/dports/emulators/vice/vice-3.5/src/lib/libffmpeg/libavformat/
H A Did3v2.c286 if (taglen < 1) in read_ttag()
329 if (taglen < 1) in read_geobtag()
348 taglen--; in read_geobtag()
363 taglen < 0) in read_geobtag()
366 if (taglen) { in read_geobtag()
473 taglen--; in read_apic()
477 taglen -= avio_get_str(pb, taglen, mimetype, sizeof(mimetype)); in read_apic()
498 taglen--; in read_apic()
514 if (!apic->buf || !taglen || avio_read(pb, apic->buf->data, taglen) != taglen) in read_apic()
538 int taglen; in read_chapter() local
[all …]
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libffmpeg/libavformat/
H A Did3v2.c286 if (taglen < 1) in read_ttag()
329 if (taglen < 1) in read_geobtag()
348 taglen--; in read_geobtag()
363 taglen < 0) in read_geobtag()
366 if (taglen) { in read_geobtag()
473 taglen--; in read_apic()
477 taglen -= avio_get_str(pb, taglen, mimetype, sizeof(mimetype)); in read_apic()
498 taglen--; in read_apic()
514 if (!apic->buf || !taglen || avio_read(pb, apic->buf->data, taglen) != taglen) in read_apic()
538 int taglen; in read_chapter() local
[all …]
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavformat/
H A Did3v2.c372 taglen--; in read_uslt()
377 taglen -= 3; in read_uslt()
419 taglen -= 4; in read_comment()
476 taglen--; in read_geobtag()
494 if (taglen) { in read_geobtag()
600 if (taglen <= 4 || (!isv34 && taglen <= 6)) in read_apic()
609 taglen--; in read_apic()
638 taglen--; in read_apic()
654 if (!apic->buf || !taglen || avio_read(pb, apic->buf->data, taglen) != taglen) in read_apic()
686 int taglen; in read_chapter() local
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavformat/
H A Did3v2.c373 taglen--; in read_uslt()
378 taglen -= 3; in read_uslt()
421 taglen -= 4; in read_comment()
478 taglen--; in read_geobtag()
496 if (taglen) { in read_geobtag()
602 if (taglen <= 4 || (!isv34 && taglen <= 6)) in read_apic()
611 taglen--; in read_apic()
640 taglen--; in read_apic()
656 if (!apic->buf || !taglen || avio_read(pb, apic->buf->data, taglen) != taglen) in read_apic()
688 int taglen; in read_chapter() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavformat/
H A Did3v2.c372 taglen--; in read_uslt()
377 taglen -= 3; in read_uslt()
420 taglen -= 4; in read_comment()
472 taglen--; in read_geobtag()
490 if (taglen) { in read_geobtag()
594 if (taglen <= 4 || (!isv34 && taglen <= 6)) in read_apic()
604 taglen--; in read_apic()
633 taglen--; in read_apic()
649 if (!apic->buf || !taglen || avio_read(pb, apic->buf->data, taglen) != taglen) in read_apic()
679 int taglen; in read_chapter() local
[all …]
/dports/devel/android-tools-adb/platform_system_core-android-9.0.0_r3/logd/
H A DLogKlog.cpp609 taglen -= infoBraceLen; in log()
614 ++et, --taglen) { in log()
619 --taglen; in log()
621 if (taglen <= 0) { in log()
627 for (cp = et; (taglen > 0) && isspace(*cp); ++cp, --taglen) { in log()
655 for (e = cp; (taglen > 0) && isspace(*cp); ++cp, --taglen) { in log()
696 for (e = cp; (taglen > 0) && isspace(*cp); ++cp, --taglen) { in log()
734 taglen = etag - tag; in log()
740 taglen = mp - tag; in log()
789 memcpy(np, tag, taglen); in log()
[all …]
/dports/devel/android-tools-fastboot/platform_system_core-platform-tools-29.0.5/logd/
H A DLogKlog.cpp603 taglen -= infoBraceLen; in log()
608 ++et, --taglen) { in log()
613 --taglen; in log()
615 if (taglen <= 0) { in log()
621 for (cp = et; (taglen > 0) && isspace(*cp); ++cp, --taglen) { in log()
649 for (e = cp; (taglen > 0) && isspace(*cp); ++cp, --taglen) { in log()
690 for (e = cp; (taglen > 0) && isspace(*cp); ++cp, --taglen) { in log()
728 taglen = etag - tag; in log()
734 taglen = mp - tag; in log()
783 memcpy(np, tag, taglen); in log()
[all …]
/dports/security/opensc/OpenSC-0.22.0/src/tests/unittests/
H A Dsimpletlv.c31 size_t taglen = 0; in torture_simpletlv_read_tag_null() local
34 rv = sc_simpletlv_read_tag(&data, datalen, &tag, &taglen); in torture_simpletlv_read_tag_null()
37 assert_int_equal(taglen, 0); in torture_simpletlv_read_tag_null()
47 size_t taglen = 0; \
50 rv = sc_simpletlv_read_tag(&bufptr, buflen, &tag, &taglen); \
53 assert_int_equal(taglen, len_value); \
88 #define TORTURE_PUT_TAG(name, tag, taglen, data_len, exp_data, error) \ argument
96 rv = sc_simpletlv_put_tag(tag, taglen, data, datalen, &outptr); \
105 #define TORTURE_PUT_TAG_ERROR(name, tag, taglen, data_len, error) \ argument
106 TORTURE_PUT_TAG(name, tag, taglen, data_len, "", error)
[all …]
/dports/security/dropbear/dropbear-2020.81/libtomcrypt/src/encauth/eax/
H A Deax_decrypt_verify_memory.c41 unsigned char *tag, unsigned long taglen, in eax_decrypt_verify_memory() argument
59 taglen = MIN(taglen, MAXBLOCKSIZE); in eax_decrypt_verify_memory()
62 buf = XMALLOC(taglen); in eax_decrypt_verify_memory()
82 buflen = taglen; in eax_decrypt_verify_memory()
88 if (buflen >= taglen && XMEM_NEQ(buf, tag, taglen) == 0) { in eax_decrypt_verify_memory()
95 zeromem(buf, taglen); in eax_decrypt_verify_memory()

12345678910>>...43