Home
last modified time | relevance | path

Searched refs:fplen (Results 1 – 25 of 49) sorted by relevance

12

/dports/mail/libmilter/sendmail-8.16.1/rmail/
H A Drmail.c96 size_t fplen = 0, fptlen = 0, len; local
227 fplen = 0;
231 if (fplen + len + 2 > fptlen)
233 fptlen += SM_MAX(fplen + len + 2, 256);
238 memmove(from_path + fplen, p, len);
239 fplen += len;
240 from_path[fplen++] = '!';
241 from_path[fplen] = '\0';
/dports/security/py-potr/python-potr-1.0.1/src/potr/
H A Dutils.py61 fplen = len(fp)
62 wordsize = fplen//5
64 for w in range(0, fplen, wordsize):
/dports/archivers/zip/zip30/win32/
H A Dwin32zip.c315 int fplen;
336 fplen = GetFullPathName(p, 0, NULL, NULL);
338 if ((fp = malloc(fplen + 1)) == NULL) {
343 if (fplen2 > fplen) {
374 if ((fp = malloc(fplen + 1)) == NULL) {
379 if (fplen2 > fplen) {
437 int fplen;
466 fplen = GetShortPathName(p, NULL, 0);
468 if ((fp = malloc(fplen + 1)) == NULL) {
472 fplen2 = GetShortPathName(p, fp, fplen);
[all …]
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/zip/zip/win32/
H A Dwin32zip.c315 int fplen;
336 fplen = GetFullPathName(p, 0, NULL, NULL);
338 if ((fp = malloc(fplen + 1)) == NULL) {
343 if (fplen2 > fplen) {
374 if ((fp = malloc(fplen + 1)) == NULL) {
379 if (fplen2 > fplen) {
437 int fplen;
466 fplen = GetShortPathName(p, NULL, 0);
468 if ((fp = malloc(fplen + 1)) == NULL) {
472 fplen2 = GetShortPathName(p, fp, fplen);
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/mips/mips/
H A Dcpu_subr.c370 size_t fplen; in cpu_getmcontext() local
384 fplen = sizeof(struct fpreg); in cpu_getmcontext()
387 fplen = sizeof(struct fpreg_oabi); in cpu_getmcontext()
391 memcpy(&mcp->__fpregs, &pcb->pcb_fpregs, fplen); in cpu_getmcontext()
446 size_t fplen; in cpu_setmcontext() local
454 fplen = sizeof(struct fpreg); in cpu_setmcontext()
457 fplen = sizeof(struct fpreg_oabi); in cpu_setmcontext()
465 memcpy(&pcb->pcb_fpregs, &mcp->__fpregs, fplen); in cpu_setmcontext()
/dports/net/libwebsockets/libwebsockets-v4.2.2/lib/misc/fts/
H A Dtrie-fd.c618 uint32_t fi, tot, line, ro, ofs_linetable, lines, fplen, in lws_fts_search() local
659 fplen = (uint32_t)strlen(path); in lws_fts_search()
660 footprint = (int)(sizeof(*fp) + fplen + 1); in lws_fts_search()
676 fp->filepath_length = (int)fplen; in lws_fts_search()
679 fp->matches_length = footprint - (int)sizeof(*fp) - (int)(fplen + 1); in lws_fts_search()
750 memcpy(pp, path, fplen); in lws_fts_search()
751 pp[fplen] = '\0'; in lws_fts_search()
/dports/www/mod_gnutls/mod_gnutls-0.8.4/src/
H A Dgnutls_ocsp.c410 size_t fplen = 0; in mgs_get_cert_fingerprint() local
411 gnutls_x509_crt_get_fingerprint(cert, GNUTLS_DIG_SHA1, NULL, &fplen); in mgs_get_cert_fingerprint()
412 unsigned char * fp = apr_palloc(p, fplen); in mgs_get_cert_fingerprint()
413 gnutls_x509_crt_get_fingerprint(cert, GNUTLS_DIG_SHA1, fp, &fplen); in mgs_get_cert_fingerprint()
419 if (__builtin_expect(fplen <= UINT_MAX, 1)) in mgs_get_cert_fingerprint()
421 fingerprint.size = (unsigned int) fplen; in mgs_get_cert_fingerprint()
425 if (__builtin_add_overflow(fplen, 0, &fingerprint.size)) in mgs_get_cert_fingerprint()
/dports/ftp/uftp/uftp-5.0/
H A Dproxy_common.c618 unsigned int fplen, bloblen, siglen; in handle_hb_request() local
654 hash(HASH_SHA1, keyblob, bloblen, fingerprint, &fplen); in handle_hb_request()
655 if (memcmp(down_fingerprint, fingerprint, fplen)) { in handle_hb_request()
678 hash(HASH_SHA1, keyblob, bloblen, fingerprint, &fplen); in handle_hb_request()
679 if (memcmp(down_fingerprint, fingerprint, fplen)) { in handle_hb_request()
1014 unsigned int fplen; in verify_fingerprint() local
1034 hash(HASH_SHA1, keyblob, bloblen, fingerprint, &fplen); in verify_fingerprint()
1035 if (memcmp(fplist[keyidx].fingerprint, fingerprint, fplen)) { in verify_fingerprint()
H A Dclient_common.c752 unsigned int fplen, keylen, dhlen, siglen; in handle_v4_proxy_key() local
805 hash(HASH_SHA1, keyblob, keylen, fingerprint, &fplen); in handle_v4_proxy_key()
806 if (memcmp(proxy4_info.fingerprint, fingerprint, fplen)) { in handle_v4_proxy_key()
828 hash(HASH_SHA1, keyblob, keylen, fingerprint, &fplen); in handle_v4_proxy_key()
829 if (memcmp(proxy4_info.fingerprint, fingerprint, fplen)) { in handle_v4_proxy_key()
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Formats/src/
H A DSwissProtPlainTextFormat.cpp307 int fplen = fPrefix.length(); in readAnnotations() local
308 if (st->len >= 6 && TextUtils::equals(fPrefix.data(), st->buff, fplen)) { in readAnnotations()
309 while (fplen < 5) { in readAnnotations()
310 if (st->buff[fplen++] != ' ') { in readAnnotations()
H A DEMBLGenbankAbstractDocument.cpp708 int fplen = fPrefix.length(); in readAnnotations() local
709 if (st->len >= 6 && TextUtils::equals(fPrefix.data(), st->buff, fplen)) { in readAnnotations()
710 while (fplen < 5) { in readAnnotations()
711 if (st->buff[fplen++] != ' ') { in readAnnotations()
/dports/net-mgmt/yaf/yaf-2.11.0/src/applabel/hooks/
H A Ddhcp_fp_plugin.c154 size_t fplen; member
556 val->fplen = strlen(cur->fp.desc); in ypDHCPScanner()
842 dhcp_rec->dhcpFP.len = flowContext->val.fplen; in ypFlowWrite()
863 dhcp_rec->reverseDhcpFP.len = flowContext->rval.fplen; in ypFlowWrite()
/dports/archivers/rpm4/rpm-4.16.1.3/rpmio/
H A Drpmpgp.c803 uint8_t **fp, size_t *fplen) in pgpPubkeyFingerprint() argument
860 *fplen = dlen; in pgpPubkeyFingerprint()
876 size_t fplen = 0; in getKeyID() local
877 int rc = pgpPubkeyFingerprint(h, hlen, &fp, &fplen); in getKeyID()
878 if (fp && fplen > 8) { in getKeyID()
879 memcpy(keyid, (fp + (fplen-8)), 8); in getKeyID()
/dports/editors/vim/vim-8.2.3745/runtime/plugin/
H A DlogiPat.vim310 let fplen= strlen(fp)
311 if fplen < 30
312 let fp= fp.strpart(" ",1,30-fplen)
/dports/net/tigervnc-server/tigervnc-1.12.0/unix/xserver/hw/dmx/
H A Ddmxinit.c792 int fplen = strlen(fp) + 1; in dmxSetDefaultFontPath() local
795 dmxFontPath = realloc(dmxFontPath, len + fplen + 1); in dmxSetDefaultFontPath()
797 strncpy(&dmxFontPath[len + 1], fp, fplen); in dmxSetDefaultFontPath()
/dports/x11-servers/xephyr/xorg-server-1.20.13/hw/dmx/
H A Ddmxinit.c792 int fplen = strlen(fp) + 1; in dmxSetDefaultFontPath() local
795 dmxFontPath = realloc(dmxFontPath, len + fplen + 1); in dmxSetDefaultFontPath()
797 strncpy(&dmxFontPath[len + 1], fp, fplen); in dmxSetDefaultFontPath()
/dports/x11-servers/xwayland/xorg-server-1.20.13/hw/dmx/
H A Ddmxinit.c792 int fplen = strlen(fp) + 1; in dmxSetDefaultFontPath() local
795 dmxFontPath = realloc(dmxFontPath, len + fplen + 1); in dmxSetDefaultFontPath()
797 strncpy(&dmxFontPath[len + 1], fp, fplen); in dmxSetDefaultFontPath()
/dports/x11-servers/xorg-vfbserver/xorg-server-1.20.13/hw/dmx/
H A Ddmxinit.c792 int fplen = strlen(fp) + 1; in dmxSetDefaultFontPath() local
795 dmxFontPath = realloc(dmxFontPath, len + fplen + 1); in dmxSetDefaultFontPath()
797 strncpy(&dmxFontPath[len + 1], fp, fplen); in dmxSetDefaultFontPath()
/dports/x11-servers/xorg-dmx/xorg-server-1.20.13/hw/dmx/
H A Ddmxinit.c792 int fplen = strlen(fp) + 1; in dmxSetDefaultFontPath() local
795 dmxFontPath = realloc(dmxFontPath, len + fplen + 1); in dmxSetDefaultFontPath()
797 strncpy(&dmxFontPath[len + 1], fp, fplen); in dmxSetDefaultFontPath()
/dports/x11-servers/xorg-server/xorg-server-1.20.13/hw/dmx/
H A Ddmxinit.c792 int fplen = strlen(fp) + 1; in dmxSetDefaultFontPath() local
795 dmxFontPath = realloc(dmxFontPath, len + fplen + 1); in dmxSetDefaultFontPath()
797 strncpy(&dmxFontPath[len + 1], fp, fplen); in dmxSetDefaultFontPath()
/dports/x11-servers/xorg-nestserver/xorg-server-1.20.13/hw/dmx/
H A Ddmxinit.c792 int fplen = strlen(fp) + 1; in dmxSetDefaultFontPath() local
795 dmxFontPath = realloc(dmxFontPath, len + fplen + 1); in dmxSetDefaultFontPath()
797 strncpy(&dmxFontPath[len + 1], fp, fplen); in dmxSetDefaultFontPath()
/dports/x11-servers/xarcan/xarcan-0.6.0/hw/dmx/
H A Ddmxinit.c793 int fplen = strlen(fp) + 1; in dmxSetDefaultFontPath() local
796 dmxFontPath = realloc(dmxFontPath, len + fplen + 1); in dmxSetDefaultFontPath()
798 strncpy(&dmxFontPath[len + 1], fp, fplen); in dmxSetDefaultFontPath()
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/sparc/kernel/
H A Dsignal_32.c66 static inline bool invalid_frame_pointer(void __user *fp, int fplen) in invalid_frame_pointer() argument
68 if ((((unsigned long) fp) & 15) || !__access_ok((unsigned long)fp, fplen)) in invalid_frame_pointer()
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/sparc/kernel/
H A Dsignal_32.c66 static inline bool invalid_frame_pointer(void __user *fp, int fplen) in invalid_frame_pointer() argument
68 if ((((unsigned long) fp) & 15) || !__access_ok((unsigned long)fp, fplen)) in invalid_frame_pointer()
/dports/multimedia/libv4l/linux-5.13-rc2/arch/sparc/kernel/
H A Dsignal_32.c66 static inline bool invalid_frame_pointer(void __user *fp, int fplen) in invalid_frame_pointer() argument
68 if ((((unsigned long) fp) & 15) || !__access_ok((unsigned long)fp, fplen)) in invalid_frame_pointer()

12