Searched refs:size1 (Results 1 - 25 of 25) sorted by relevance

/freebsd-13-stable/sys/mips/atheros/ar531x/
H A Dar5312_chip.c123 uint32_t size0, size1; local
132 size1 = bank1 ? (1 << (bank1 + 1)) : 0;
135 size1 <<= 20;
137 printf("SDRMCTL %x %x %x %x\n", cfg0, cfg1, size0, size1);
/freebsd-13-stable/tests/sys/fs/fusefs/
H A Dnotify.cc340 ssize_t size1 = sizeof(CONTENTS1); local
356 out.body.attr.attr.size = size1;
360 expect_read(ino, 0, size1, size1, CONTENTS1);
381 EXPECT_EQ(size1, sb.st_size);
385 ASSERT_EQ(size1, read(fd, buf, size1)) << strerror(errno);
386 EXPECT_EQ(0, memcmp(buf, CONTENTS1, size1));
422 ssize_t size1 = sizeof(CONTENTS1); local
426 expect_lookup(FUSE_ROOT_ID, RELPATH, ino, size1, se
[all...]
H A Dwrite.cc450 ssize_t size1 = strlen(CONTENTS1) + 1; local
451 ssize_t totalsize = size0 + size1;
/freebsd-13-stable/sys/dev/dcons/
H A Ddcons.c198 int size0, size1, offset; local
202 size1 = size0 * 3 / 4; /* console port buffer */
204 dcons_init_port(0, offset, size1, buf, sc);
205 offset += size1;
206 dcons_init_port(1, offset, size0 - size1, buf, sc);
/freebsd-13-stable/sys/mips/mips/
H A Dmachdep.c201 vm_paddr_t size1 = phys_avail[indx + 1] - phys_avail[indx]; local
206 (uintmax_t)size1,
207 (uintmax_t)size1 / PAGE_SIZE);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_bytemap.h65 uptr size1() const { return kSize1; } function in class:TwoLevelByteMap
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRMemoryMap.h132 static bool AllocationsIntersect(lldb::addr_t addr1, size_t size1,
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp722 int size1 = 1; local
725 size1 = 8;
728 size1 = 4;
731 size1 = 2;
735 addr += size1;
736 size -= size1;
/freebsd-13-stable/usr.bin/sort/
H A Dsort.c750 size_t size1; local
753 size1 = sptr - s;
755 if (size1 < 1)
757 pos1 = sort_malloc((size1 + 1) * sizeof(char));
759 strncpy(pos1, s, size1);
760 pos1[size1] = '\0';
/freebsd-13-stable/sys/powerpc/powerpc/
H A Dmachdep.c214 vm_paddr_t size1 = local
224 (uintmax_t)size1, (uintmax_t)size1 / PAGE_SIZE);
/freebsd-13-stable/usr.sbin/lpr/common_source/
H A Dctlinfo.c708 size_t size1; local
711 size1 = tfstat.st_size;
722 if (size1 != tfstat.st_size) {
/freebsd-13-stable/sys/dev/xen/netback/
H A Dnetback_unit_tests.c1490 size_t size1 = MHLEN - 5; local
1496 mbufc = m_getm(NULL, size1, M_WAITOK, MT_DATA);
1508 mbufc2->m_pkthdr.len = size1 + size2;
1509 mbufc2->m_len = size1;
1513 XNB_ASSERT(pkt.size == size1 + size2);
1520 XNB_ASSERT(pkt.car_size == size1);
1961 size_t size1 = MHLEN - 5; local
1971 mbufc = m_getm(NULL, size1, M_WAITOK, MT_DATA);
1979 mbufc->m_pkthdr.len = size1 + size2;
1980 mbufc->m_len = size1;
[all...]
/freebsd-13-stable/sys/dev/cxgbe/
H A Dt4_sge.c856 rxb->size1 = sw_buf_sizes[i];
857 rxb->zone = m_getzone(rxb->size1);
858 rxb->type = m_gettype(rxb->size1);
868 /* hwidx for size1 */
869 if (rxb->hwidx1 == -1 && rxb->size1 == hwsize)
873 if (rxb->size1 - CL_METADATA_SIZE < hwsize)
875 n = rxb->size1 - hwsize - CL_METADATA_SIZE;
894 if (s->safe_zidx == -1 && rxb->size1 == safest_rx_cluster)
1797 blen = rxb->size1;
1921 blen = rxb->size1;
[all...]
H A Dadapter.h468 uint16_t size1; /* same as size of cluster: 2K/4K/9K/16K. member in struct:rx_buf_info
469 * hwsize[hwidx1] = size1. No spare. */
471 * spare in cluster = size1 - size2. */
472 int8_t hwidx1; /* SGE bufsize idx for size1 */
H A Dt4_netmap.c727 if (rxb->size1 == NETMAP_BUF_SIZE(na)) {
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-pko.h192 cvmx_fau_op_size_t size1 : 2; /**< The size of the reg1 operation - could be 8, 16, 32, or 64 bits */ member in struct:__anon10259::__anon10260
H A Dcvmx-pko-defs.h3709 uint64_t size1 : 8; /**< Minimum packet size-1 in bytes NS */ member in struct:cvmx_pko_reg_min_pkt::cvmx_pko_reg_min_pkt_s
3713 uint64_t size1 : 8;
H A Dcvmx-helper.c831 min_pkt.s.size1 = 59;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRMemoryMap.cpp212 bool IRMemoryMap::AllocationsIntersect(lldb::addr_t addr1, size_t size1, argument
224 return (addr2 < (addr1 + size1)) && (addr1 < (addr2 + size2));
/freebsd-13-stable/sys/x86/iommu/
H A Dintel_idpgtbl.c429 iommu_gaddr_t pg_sz, base1, size1; local
437 size1 = size;
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_7zip.c3739 size_t size0, size1, size2, size3; local
3745 size1 = zip->sub_stream_bytes_remaining[0];
3746 buf1 = zip->sub_stream_buff[0] + zip->sub_stream_size[0] - size1;
3828 if (size1 < 4)
3831 size1 -= 4;
3866 zip->sub_stream_bytes_remaining[0] = size1;
/freebsd-13-stable/sbin/ping/
H A Dping6.c1976 int i, segments, origsegs, rthsize, size0, size1; local
2002 size1 = inet6_rth_space(IPV6_RTHDR_TYPE_0, 1);
2004 (size1 - size0) + 1;
/freebsd-13-stable/sys/contrib/openzfs/module/nvpair/
H A Dnvpair.c795 int size1, size2; local
809 size1 = nvp->nvp_size - NVP_VALOFF(nvp);
810 if (size2 < 0 || size1 != NV_ALIGN(size2))
/freebsd-13-stable/sys/vm/
H A Dvm_map.c3827 vm_pindex_t offidxstart, offidxend, size1; local
3874 size1 = object->size;
3877 size1 -= object->size;
3878 KASSERT(object->charge >= ptoa(size1),
3880 swap_release_by_cred(ptoa(size1),
3882 object->charge -= ptoa(size1);
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc5659 static void AssertStringArrayEq(size_t size1, CharType** array1, argument
5661 ASSERT_EQ(size1, size2) << " Array sizes different.";
5663 for (size_t i = 0; i != size1; i++) {

Completed in 324 milliseconds