Home
last modified time | relevance | path

Searched refs:tmpval (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/usr.sbin/puffs/mount_psshfs/
H A Dfs.c177 uint64_t tmpval; in psshfs_fs_statvfs() local
196 psbuf_get_8(pb, &tmpval); in psshfs_fs_statvfs()
197 sbp->f_bsize = tmpval; in psshfs_fs_statvfs()
198 psbuf_get_8(pb, &tmpval); in psshfs_fs_statvfs()
199 sbp->f_frsize = tmpval; in psshfs_fs_statvfs()
207 psbuf_get_8(pb, &tmpval); /* fsid */ in psshfs_fs_statvfs()
208 psbuf_get_8(pb, &tmpval); /* flag */ in psshfs_fs_statvfs()
209 psbuf_get_8(pb, &tmpval); in psshfs_fs_statvfs()
210 sbp->f_namemax = tmpval; in psshfs_fs_statvfs()
/netbsd-src/external/bsd/file/dist/src/
H A Dreadelf.c87 } retval, tmpval; in getu16() local
90 tmpval.ui = value; in getu16()
92 retval.c[0] = tmpval.c[1]; in getu16()
93 retval.c[1] = tmpval.c[0]; in getu16()
106 } retval, tmpval; in getu32() local
109 tmpval.ui = value; in getu32()
111 retval.c[0] = tmpval.c[3]; in getu32()
112 retval.c[1] = tmpval.c[2]; in getu32()
113 retval.c[2] = tmpval.c[1]; in getu32()
114 retval.c[3] = tmpval.c[0]; in getu32()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
H A Dfloating_from_chars.cc348 T tmpval; in from_chars_impl() local
351 tmpval = std::strtof(str, &endptr); in from_chars_impl()
353 tmpval = std::strtod(str, &endptr); in from_chars_impl()
355 tmpval = std::strtold(str, &endptr); in from_chars_impl()
358 tmpval = __strtoieee128(str, &endptr); in from_chars_impl()
361 tmpval = std::strtod(str, &endptr); in from_chars_impl()
376 if (__builtin_isinf(tmpval)) // overflow in from_chars_impl()
383 value = tmpval; in from_chars_impl()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
H A Dasn_mime.c806 char *tmpname = NULL, *tmpval = NULL, *p; in mime_hdr_new() local
815 if ((tmpval = OPENSSL_strdup(value)) == NULL) in mime_hdr_new()
817 for (p = tmpval; *p; p++) in mime_hdr_new()
824 mhdr->value = tmpval; in mime_hdr_new()
831 OPENSSL_free(tmpval); in mime_hdr_new()
838 char *tmpname = NULL, *tmpval = NULL, *p; in mime_hdr_addparam() local
849 tmpval = OPENSSL_strdup(value); in mime_hdr_addparam()
850 if (!tmpval) in mime_hdr_addparam()
858 mparam->param_value = tmpval; in mime_hdr_addparam()
864 OPENSSL_free(tmpval); in mime_hdr_addparam()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dasn_mime.c852 char *tmpname = NULL, *tmpval = NULL, *p; in mime_hdr_new() local
861 if ((tmpval = OPENSSL_strdup(value)) == NULL) in mime_hdr_new()
863 for (p = tmpval; *p; p++) in mime_hdr_new()
870 mhdr->value = tmpval; in mime_hdr_new()
877 OPENSSL_free(tmpval); in mime_hdr_new()
884 char *tmpname = NULL, *tmpval = NULL, *p; in mime_hdr_addparam() local
895 tmpval = OPENSSL_strdup(value); in mime_hdr_addparam()
896 if (!tmpval) in mime_hdr_addparam()
904 mparam->param_value = tmpval; in mime_hdr_addparam()
910 OPENSSL_free(tmpval); in mime_hdr_addparam()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ocsp/
H A Docsp_ext.c247 unsigned char *tmpval; in ocsp_add1_nonce() local
265 tmpval = os.data; in ocsp_add1_nonce()
266 ASN1_put_object(&tmpval, 0, len, V_ASN1_OCTET_STRING, V_ASN1_UNIVERSAL); in ocsp_add1_nonce()
268 memcpy(tmpval, val, len); in ocsp_add1_nonce()
269 else if (RAND_bytes(tmpval, len) <= 0) in ocsp_add1_nonce()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ocsp/
H A Docsp_ext.c247 unsigned char *tmpval; in ocsp_add1_nonce() local
265 tmpval = os.data; in ocsp_add1_nonce()
266 ASN1_put_object(&tmpval, 0, len, V_ASN1_OCTET_STRING, V_ASN1_UNIVERSAL); in ocsp_add1_nonce()
268 memcpy(tmpval, val, len); in ocsp_add1_nonce()
269 else if (RAND_bytes(tmpval, len) <= 0) in ocsp_add1_nonce()
/netbsd-src/usr.bin/locale/
H A Dlocale.c638 int isstr, cat, tmpval; in showdetails() local
657 tmpval = (char) *kwval; in showdetails()
658 printf("%s=%d\n", kw, tmpval); in showdetails()
666 tmpval = (char) *kwval; in showdetails()
667 printf("%d\n", tmpval); in showdetails()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/property/
H A Dproperty_parse.c674 int64_t tmpval = val; in put_num() local
677 if (tmpval < 0) { in put_num()
679 tmpval = -tmpval; in put_num()
681 for (; tmpval > 9; len++, tmpval /= 10); in put_num()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/pru/
H A Dpru.md537 ; tmpval = src;
541 ; tmpval >>= 1;
544 ; dst = tmpval;
560 rtx test, tmpval, cntr;
568 tmpval = gen_reg_rtx (<MODE>mode);
569 emit_move_insn (tmpval, src);
581 emit_insn (gen_ashr<mode>3_single (tmpval, tmpval, const1_rtx));
591 emit_move_insn (dst, tmpval);
1147 rtx tmpval = gen_reg_rtx (<MODE>mode);
1149 emit_insn (gen_pru_lmbd (<MODE>mode, tmpval, src, const1_rtx));
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/pru/
H A Dpru.md468 ; tmpval = src;
472 ; tmpval >>= 1;
475 ; dst = tmpval;
491 rtx test, tmpval, cntr;
499 tmpval = gen_reg_rtx (<MODE>mode);
500 emit_move_insn (tmpval, src);
512 emit_insn (gen_ashr<mode>3_single (tmpval, tmpval, const1_rtx));
522 emit_move_insn (dst, tmpval);
/netbsd-src/crypto/external/bsd/openssl/dist/test/
H A Devp_test.c1289 char *p, *tmpval; in mac_test_ctrl_pkey() local
1291 if (!TEST_ptr(tmpval = OPENSSL_strdup(value))) in mac_test_ctrl_pkey()
1293 p = strchr(tmpval, ':'); in mac_test_ctrl_pkey()
1296 rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p); in mac_test_ctrl_pkey()
1304 OPENSSL_free(tmpval); in mac_test_ctrl_pkey()
1498 char *tmpkey, *tmpval; in mac_test_run_mac() local
1505 tmpval = strchr(tmpkey, ':'); in mac_test_run_mac()
1506 if (tmpval != NULL) in mac_test_run_mac()
1507 *tmpval++ = '\0'; in mac_test_run_mac()
1509 if (tmpval == NULL in mac_test_run_mac()
[all …]
/netbsd-src/sys/dev/ic/
H A Daac.c506 u_int32_t tmpval; in aac_check_firmware() local
517 tmpval = (le32toh(opt2) >> 16); in aac_check_firmware()
518 if (tmpval < sc->sc_max_sgs) { in aac_check_firmware()
519 sc->sc_max_sgs = tmpval; in aac_check_firmware()
521 tmpval = (le32toh(opt3) & 0xffff); in aac_check_firmware()
522 if (tmpval < sc->sc_max_fibs) { in aac_check_firmware()
523 sc->sc_max_fibs = tmpval; in aac_check_firmware()
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/
H A Devp_test.c965 char *p, *tmpval; in mac_test_ctrl_pkey() local
967 if (!TEST_ptr(tmpval = OPENSSL_strdup(value))) in mac_test_ctrl_pkey()
969 p = strchr(tmpval, ':'); in mac_test_ctrl_pkey()
972 rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p); in mac_test_ctrl_pkey()
979 OPENSSL_free(tmpval); in mac_test_ctrl_pkey()
1145 char *p, *tmpval; in pkey_test_ctrl() local
1147 if (!TEST_ptr(tmpval = OPENSSL_strdup(value))) in pkey_test_ctrl()
1149 p = strchr(tmpval, ':'); in pkey_test_ctrl()
1152 rv = EVP_PKEY_CTX_ctrl_str(pctx, tmpval, p); in pkey_test_ctrl()
1172 OPENSSL_free(tmpval); in pkey_test_ctrl()
/netbsd-src/external/bsd/openldap/dist/servers/slapd/slapi/
H A Dslapi_pblock.c501 struct berval tmpval = BER_BVNULL; in pblock_get() local
504 &tmpval, &pb->pb_rs->sr_text, in pblock_get()
507 *((char **)value) = tmpval.bv_val; in pblock_get()
/netbsd-src/external/gpl3/binutils/dist/cpu/
H A Dcris.cpu1331 ((SI tmpval))
1332 (set tmpval (ifield f-dstsrc))
1333 (set (ifield f-dest) (and (srl tmpval 4) #xf))
1334 (set (ifield f-source) (and tmpval #xf)))
3702 ((SI tmpcode) (SI tmpval) (SI tmpres))
3704 (set tmpval val)
3712 (set tmpres ((.sym swap- x-swap) tmpval))))
/netbsd-src/external/gpl3/binutils.old/dist/cpu/
H A Dcris.cpu1330 ((SI tmpval))
1331 (set tmpval (ifield f-dstsrc))
1332 (set (ifield f-dest) (and (srl tmpval 4) #xf))
1333 (set (ifield f-source) (and tmpval #xf)))
3700 ((SI tmpcode) (SI tmpval) (SI tmpres))
3702 (set tmpval val)
3710 (set tmpres ((.sym swap- x-swap) tmpval))))
/netbsd-src/external/gpl3/gdb.old/dist/cpu/
H A Dcris.cpu1330 ((SI tmpval))
1331 (set tmpval (ifield f-dstsrc))
1332 (set (ifield f-dest) (and (srl tmpval 4) #xf))
1333 (set (ifield f-source) (and tmpval #xf)))
3700 ((SI tmpcode) (SI tmpval) (SI tmpres))
3702 (set tmpval val)
3710 (set tmpres ((.sym swap- x-swap) tmpval))))