Searched refs:sz (Results 201 - 225 of 821) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/bsd/mdocml/dist/
H A Dhtml.c265 int ssz, sz; local
276 sz = 0;
278 sz += (int)(p - cp);
282 return(sz);
288 sz++;
295 assert(sz >= 0);
296 return(sz + strlen(cp));
302 size_t sz; local
311 sz = strcspn(p, rejs);
313 fwrite(p, 1, sz, stdou
395 print_otag(struct html *h, enum htmltag tag, int sz, const struct htmlpair *p) argument
619 bufncat(struct html *h, const char *p, size_t sz) argument
[all...]
H A Dapropos.c107 (paths.sz, paths.paths,
123 list(struct res *res, size_t sz, void *arg) argument
127 qsort(res, sz, sizeof(struct res), cmp);
129 for (i = 0; i < (int)sz; i++)
/netbsd-6-1-5-RELEASE/usr.sbin/makemandb/
H A Dapropos-utils.c593 size_t sz = 0; local
608 sz = strcspn(temp, "<>\"&\002\003");
609 temp += sz + 1;
614 sz = 0;
616 sz = strcspn(snippet, "<>\"&\002\003");
617 if (sz) {
618 memcpy(&qsnippet[i], snippet, sz);
619 snippet += sz;
620 i += sz;
701 size_t sz local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dasn1_gen.c78 size_t sz; local
120 &sz);
124 if (fwrite(p + sizeof(p) - sz , sz, 1, fout) != 1)
126 offset += sz;
132 pdata = emalloc(sz);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dstore_emem.c63 size_t sz, off; local
65 sz = off + size;
66 if (sz < 4096)
67 sz *= 2;
68 base = realloc(s->base, sz);
71 s->size = sz;
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/test/
H A Dharness.c42 int sz; local
45 sz = read(fds[1], buf, 2048);
46 if (sz <= 0)
48 if (readbuf_used + sz >= readbuf_sz) {
54 memcpy(readbuf + readbuf_used, buf, sz);
55 readbuf_used += sz;
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dprintf.c55 #define GET_STR_VA(sz, str, fmt, ap) \
58 sz = mpfr_vasprintf (&(str), fmt, ap); \
59 if (sz < 0) \
67 #define GET_STR(sz, str, fmt) \
72 sz = mpfr_vasprintf (&(str), fmt, ap); \
74 if (sz < 0) \
/netbsd-6-1-5-RELEASE/sys/external/bsd/drm/dist/libdrm/nouveau/
H A Dnouveau_dma.h146 #define RING_SPACE_CH(ch,sz) nouveau_dma_space((ch), (sz))
147 #define BEGIN_RING_CH(ch,gr,m,sz) nouveau_dma_begin((ch), (gr), (m), (sz), __FUNCTION__, __LINE__ )
152 #define WAIT_RING_CH(ch,sz) nouveau_dma_wait((ch), (sz))
/netbsd-6-1-5-RELEASE/distrib/utils/sysinst/arch/hpcarm/
H A Dmd.c153 ssize_t sz; local
162 sz = pread(fd, &pbr, sizeof(pbr), 0);
163 if (sz != sizeof(pbr))
/netbsd-6-1-5-RELEASE/external/bsd/pcc/dist/pcc/arch/nova/
H A Dcode.c66 int sz; local
80 sz = (tsize(STRTY, cftnsp->sdf, cftnsp->ssue)+SZCHAR-1)/SZCHAR;
81 p = block(CM, p, bcon(sz), INT, 0, 0);
/netbsd-6-1-5-RELEASE/sys/compat/common/
H A Dkern_info_09.c59 size_t sz; local
63 sz = SCARG(uap,len);
64 return (old_sysctl(&name[0], 2, SCARG(uap, domainname), &sz, 0, 0, l));
/netbsd-6-1-5-RELEASE/sys/arch/hpc/stand/hpcboot/
H A Dload_coff.cpp65 size_t sz = _ah->a_tsize + _ah->a_dsize; local
68 _ah->a_tsize, _ah->a_dsize, sz));
69 return sz;
/netbsd-6-1-5-RELEASE/sys/arch/hpcsh/hpcsh/
H A Dkloader_machdep.c113 uint32_t sz = p->sz / sizeof (uint32_t); \
114 while (sz--) \
/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/bootxx/
H A DMakefile.bootxx141 @ sz=$$(${TOOL_STAT} -f '%z' ${PROG}); \
142 if [ "$$sz" -gt "${BOOTXX_MAXSIZE}" ]; then \
143 echo "### ${PROG} size $$sz is larger than ${BOOTXX_MAXSIZE}" >&2; \
148 pad=$$(( 512 - ( $$sz & 511 ) )); \
151 echo "${PROG} size $$sz, $$((${BOOTXX_MAXSIZE} - $$sz)) free"; \
/netbsd-6-1-5-RELEASE/sys/uvm/
H A Duvm_param.h234 # define VM_DEFAULT_ADDRESS(da, sz) \
235 trunc_page(VM_MAXUSER_ADDRESS - MAXSSIZ - (sz))
245 # define VM_DEFAULT_ADDRESS(da, sz) round_page((vaddr_t)(da) + (vsize_t)maxdmap)
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dlockdebug.h82 #define LOCKDEBUG_MEM_CHECK(base, sz) \
83 lockdebug_mem_check(__func__, base, sz)
95 #define LOCKDEBUG_MEM_CHECK(base, sz) /* nothing */
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dsnprintf.c61 size_t sz; member in struct:snprintf_state
89 if (state->max_sz && state->sz >= state->max_sz)
92 state->sz = max(state->sz * 2, state->sz + n);
94 state->sz = min(state->sz, state->max_sz);
95 tmp = realloc (state->str, state->sz);
100 state->theend = state->str + state->sz - 1;
537 rk_snprintf (char *str, size_t sz, cons argument
680 rk_vsnprintf(char *str, size_t sz, const char *format, va_list args) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.pt/
H A Dt12.C8 int sz; member in class:VECTOR
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.pt/
H A Dt12.C8 int sz; member in class:VECTOR
/netbsd-6-1-5-RELEASE/sys/dev/
H A Dkloader.h72 uint32_t sz; member in struct:kloader_page_tag
/netbsd-6-1-5-RELEASE/regress/sys/fs/getdents/
H A Dgetdents.c43 print_dents(FILE *fp, const void *vp, int sz) argument
46 const char *ep = cp + sz;
74 int sz; member in struct:ent
124 p->sz = ret = getdents(fd, p->u.u_buf, DIRBLKSIZ);
153 p->sz = ret = getdents(fd, p->u.u_buf, DIRBLKSIZ);
189 if (p->sz != ret) {
192 ": different sz %d != %d\n",
193 (uint64_t)off, p->sz, ret);
200 print_dents(stderr, p->u.u_buf, p->sz);
209 if (p->sz
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/citrus/
H A Dcitrus_memstream.c123 size_t sz; local
135 sz = (char *)chr - (char *)head;
137 _region_init(r, head, sz);
138 ms->ms_pos += sz+1;
/netbsd-6-1-5-RELEASE/sys/arch/arm/imx/
H A Dimx_space.c214 vsize_t sz; local
222 sz = round_page(bsh + size) - va;
224 pmap_kremove(va, sz);
226 uvm_km_free(kernel_map, va, sz, UVM_KMF_VAONLY);
/netbsd-6-1-5-RELEASE/sys/arch/arm/mpcore/
H A Dmpcore_space.c214 vsize_t sz; local
222 sz = round_page(bsh + size) - va;
224 pmap_kremove(va, sz);
226 uvm_km_free(kernel_map, va, sz, UVM_KMF_VAONLY);
/netbsd-6-1-5-RELEASE/tests/kernel/kqueue/write/
H A Dt_pipe.c97 int sz = read(fds[0], buffer, 128); local
98 if (sz > 0)
99 (void)printf("pipe: child read '%.*s'\n", sz, buffer);
100 exit(sz <= 0);

Completed in 363 milliseconds

1234567891011>>