Searched refs:sz (Results 451 - 475 of 662) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/contrib/sendmail/src/
H A Dutil.c436 ** sz -- size of area to allocate.
450 xalloc_tagged(sz, file, line)
451 register int sz;
455 xalloc(sz)
456 register int sz;
461 SM_REQUIRE(sz >= 0);
464 if (sz <= 0)
465 sz = 1;
470 p = sm_malloc_tagged((unsigned) sz, file, line, sm_heap_group());
/freebsd-13-stable/lib/libc/gen/
H A Dposix_spawn.c210 #define PSPAWN_STACK_ALIGN(sz) \
211 (((sz) + PSPAWN_STACK_ALIGNBYTES) & ~PSPAWN_STACK_ALIGNBYTES)
/freebsd-13-stable/contrib/bmake/
H A Dutil.c335 getcwd(path, sz)
337 int sz;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h415 void setLocalFrameSize(int64_t sz) { LocalFrameSize = sz; } argument
/freebsd-13-stable/contrib/ipfilter/iplang/
H A Diplang_y.y642 int sz = 0;
652 sz = sizeof(udphdr_t);
654 sz = sizeof(tcphdr_t);
656 sz = sizeof(icmphdr_t);
658 sz = sizeof(ip_t);
669 aip->ah_len += sz;
671 aip->ah_ip->ip_len += sz;
673 aip->ah_udp->uh_ulen += sz;
/freebsd-13-stable/bin/pax/
H A Dfile_subs.c742 * sz: basic file block allocation size
750 file_write(int fd, char *str, int cnt, int *rem, int *isempt, int sz, argument
769 *rem = sz;
/freebsd-13-stable/contrib/one-true-awk/
H A Dproto.h145 extern int adjbuf(char **pb, int *sz, int min, int q, char **pbp, const char *what);
/freebsd-13-stable/sys/geom/part/
H A Dg_part_gpt.c440 uint32_t crc, sz; local
463 sz = le32toh(buf->hdr_size);
464 if (sz < 92 || sz > pp->sectorsize)
467 hdr = g_malloc(sz, M_WAITOK | M_ZERO);
468 bcopy(buf, hdr, sz);
469 hdr->hdr_size = sz;
473 if (crc32(buf, sz) != crc)
/freebsd-13-stable/sys/kern/
H A Dkern_uuid.c273 snprintf_uuid(char *buf, size_t sz, struct uuid *uuid) argument
279 cnt = snprintf(buf, sz, "%08x-%04x-%04x-%04x-%04x%04x%04x",
H A Dsubr_compressor.c86 gz_alloc(void *arg __unused, u_int n, u_int sz) argument
94 return (malloc(n * sz, M_COMPRESS, M_WAITOK | M_ZERO | M_NODUMP));
/freebsd-13-stable/sys/kgssapi/krb5/
H A Dkrb5_mech.c160 size_t sz = get_uint32(pp, lenp); local
162 dp->kd_length = sz;
163 dp->kd_data = malloc(sz, M_GSSAPI, M_WAITOK);
165 if (*lenp < sz)
166 sz = *lenp;
167 bcopy(*pp, dp->kd_data, sz);
168 (*pp) += sz;
169 (*lenp) -= sz;
/freebsd-13-stable/sys/vm/
H A Dvm_glue.c262 vm_sync_icache(vm_map_t map, vm_offset_t va, vm_offset_t sz) argument
265 pmap_sync_icache(map->pmap, va, sz);
/freebsd-13-stable/sys/amd64/include/
H A Dpmap.h449 #define pmap_unmapbios(va, sz) pmap_unmapdev((va), (sz))
/freebsd-13-stable/usr.sbin/pkg/
H A Dconfig.c152 pkg_get_myabi(char *dest, size_t sz) argument
173 snprintf(dest, sz, "%s:%d:%s", uts.sysname, __FreeBSD_version/100000,
/freebsd-13-stable/usr.bin/gzip/
H A Dgzip.c240 #define gz_compress(if, of, sz, fn, tm) gz_compress(if, of, sz)
2324 read_retry(int fd, void *buf, size_t sz) argument
2327 size_t left = MIN(sz, (size_t) SSIZE_MAX);
2342 return sz - left;
2346 write_retry(int fd, const void *buf, size_t sz) argument
2349 size_t left = MIN(sz, (size_t) SSIZE_MAX);
2364 return sz - left;
/freebsd-13-stable/usr.bin/mail/
H A Dlex.c474 setmsize(int sz) argument
479 msgvec = calloc((unsigned)(sz + 1), sizeof(*msgvec));
/freebsd-13-stable/usr.bin/mkimg/
H A Dgpt.c119 crc32(const void *buf, size_t sz) argument
124 while (sz--)
/freebsd-13-stable/usr.bin/tip/tip/
H A Dtip.c347 prompt(char *s, char *p, size_t sz) argument
359 while ((c = getchar()) != EOF && (*p = c) != '\n' && --sz > 0)
/freebsd-13-stable/sys/dev/md/
H A Dmd.c498 int error, i, ma_offs1, sz, first_read; local
511 for (n = sectorsize; n != 0; n -= sz) {
512 sz = imin(PAGE_SIZE - *ma_offs, n);
527 bzero(p, sz);
530 memset(p, fill, sz);
533 bcopy(ptr, p, sz);
534 cpu_flush_dcache(p, sz);
537 bcopy(p, ptr, sz);
540 for (i = 0; i < sz; i++, p++) {
557 *ma_offs += sz;
[all...]
/freebsd-13-stable/lib/libkvm/
H A Dkvm_private.c439 uint64_t sz; local
443 sz = howmany(dump_avail_n(kd, i + 1), page_size) -
445 if (bit_id < sz) {
449 bit_id -= sz;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_interface_internal.h106 void __hwasan_tag_memory(uptr p, u8 tag, uptr sz);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp539 const int sz = thr->shadow_stack_end - thr->shadow_stack; local
540 const int newsz = 2 * sz;
543 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
546 thr->shadow_stack_pos = newstack + sz;
/freebsd-13-stable/contrib/elftoolchain/ar/
H A Dwrite.c574 size_t sz; local
585 sz = 2 * sizeof(long) + (bsdar->s_cnt * 2 * sizeof(long)) +
594 sz = sizeof(uint32_t) + bsdar->s_cnt * sizeof(uint32_t) +
598 return (sz);
/freebsd-13-stable/contrib/elftoolchain/elfcopy/
H A Dbinary.c217 shtab->sz += gelf_fsize(ecp->eout, ELF_T_SHDR, 2, EV_CURRENT);
H A Delfcopy.h126 uint64_t sz; /* section size */ member in struct:section

Completed in 189 milliseconds

<<11121314151617181920>>