Home
last modified time | relevance | path

Searched refs:testval (Results 1 – 9 of 9) sorted by relevance

/freebsd/lib/libnv/tests/
H A Dnv_tests.cc756 bool testval; in ATF_TEST_CASE_BODY() local
762 testval = false; in ATF_TEST_CASE_BODY()
763 nvlist_add_bool(nvl, testkey, testval); in ATF_TEST_CASE_BODY()
765 ATF_REQUIRE_EQ(nvlist_take_bool(nvl, testkey), testval); in ATF_TEST_CASE_BODY()
776 bool testval, otherval1; in ATF_TEST_CASE_BODY() local
783 testval = true; in ATF_TEST_CASE_BODY()
784 nvlist_add_bool(nvl, testkey, testval); in ATF_TEST_CASE_BODY()
794 ATF_REQUIRE_EQ(nvlist_take_bool(nvl, testkey), testval); in ATF_TEST_CASE_BODY()
810 uint64_t testval; in ATF_TEST_CASE_BODY() local
816 testval = std::numeric_limits<uint64_t>::max(); in ATF_TEST_CASE_BODY()
[all …]
/freebsd/contrib/libarchive/tar/test/
H A Dtest_option_xattrs.c16 const char *testval = "testval"; in DEFINE_TEST()
24 if (!setXattr("f", "user.libarchive.test", testval, in DEFINE_TEST()
25 strlen(testval) + 1)) { in DEFINE_TEST()
44 if(assertEqualInt(size, strlen(testval) + 1) != 0) in DEFINE_TEST()
45 assertEqualMem(readval, testval, size); in DEFINE_TEST()
/freebsd/sys/arm64/cavium/
H A Dthunder_pcie_common.c175 pci_addr_t map, testval; in thunder_pcie_alloc_resource() local
186 pci_read_bar(child, *rid, &map, &testval, NULL); in thunder_pcie_alloc_resource()
194 if (PCI_BAR_MEM(testval)) in thunder_pcie_alloc_resource()
195 testval &= PCIM_BAR_MEM_BASE; in thunder_pcie_alloc_resource()
197 testval &= PCIM_BAR_IO_BASE; in thunder_pcie_alloc_resource()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/synctask_core/
H A Dtst.inherit.ksh23 testval="testval"
25 log_must dataset_setprop $fs $testprop $testval
/freebsd/sys/dev/pci/
H A Dpci.c106 static int pci_romsize(uint64_t testval);
589 pci_mapsize(uint64_t testval) in pci_mapsize() argument
593 testval = pci_mapbase(testval); in pci_mapsize()
595 if (testval != 0) { in pci_mapsize()
596 while ((testval & 1) == 0) in pci_mapsize()
599 testval >>= 1; in pci_mapsize()
617 pci_romsize(uint64_t testval) in pci_romsize() argument
621 testval = pci_rombase(testval); in pci_romsize()
623 if (testval != 0) { in pci_romsize()
624 while ((testval & 1) == 0) in pci_romsize()
[all …]
H A Dpci_private.h143 int pci_mapsize(uint64_t testval);
H A Dpci_iov.c579 pci_addr_t bar_value, testval; in pci_iov_setup_bars() local
607 &bar_value, &testval, &last_64); in pci_iov_setup_bars()
609 if (testval != 0) { in pci_iov_setup_bars()
611 pci_mapsize(testval)); in pci_iov_setup_bars()
/freebsd/sys/fs/nfsclient/
H A Dnfs_clvfsops.c2164 static __inline void nfscl_printopt(struct nfsmount *nmp, int testval, in nfscl_printopt() argument
2169 if (testval != 0 && *blen > strlen(opt)) { in nfscl_printopt()
/freebsd/sys/fs/nfsserver/
H A Dnfs_nfsdport.c3608 static int testval = 1; in nfsrv_mallocmget_limit() local
3610 if (nfsrv_testmalloclimit && (testval++ % 1000) == 0) { in nfsrv_mallocmget_limit()