Home
last modified time | relevance | path

Searched refs:asize (Results 1 – 12 of 12) sorted by relevance

/openbsd/src/gnu/gcc/libcpp/
Dcharset.c101 size_t asize; member
467 outbytesleft = to->asize - to->len; in conversion_loop()
478 to->len = to->asize - outbytesleft; in conversion_loop()
488 to->asize += OUTBUF_BLOCK_SIZE; in conversion_loop()
489 to->text = XRESIZEVEC (uchar, to->text, to->asize); in conversion_loop()
490 outbuf = to->text + to->asize - outbytesleft; in conversion_loop()
538 if (to->len + flen > to->asize) in convert_no_conversion()
540 to->asize = to->len + flen; in convert_no_conversion()
541 to->text = XRESIZEVEC (uchar, to->text, to->asize); in convert_no_conversion()
566 outbytesleft = to->asize - to->len; in convert_using_iconv()
[all …]
Dpch.c377 size_t asize; member
390 if (nl->n_defs == nl->asize) in collect_ht_nodes()
392 nl->asize *= 2; in collect_ht_nodes()
393 nl->defs = XRESIZEVEC (cpp_hashnode *, nl->defs, nl->asize); in collect_ht_nodes()
497 nl.asize = 10; in cpp_valid_state()
498 nl.defs = XNEWVEC (cpp_hashnode *, nl.asize); in cpp_valid_state()
/openbsd/src/usr.bin/sed/
Dcompile.c472 size_t asize, ref, size; in compile_subst() local
483 asize = size = 0; in compile_subst()
486 if (asize - size < len) { in compile_subst()
488 asize += len; in compile_subst()
489 } while (asize - size < len); in compile_subst()
490 text = xrealloc(text, asize); in compile_subst()
675 size_t asize, size, bufsize; in compile_text() local
680 asize = size = 0; in compile_text()
683 if (asize - size < len) { in compile_text()
685 asize += len; in compile_text()
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
Dcrash28.C5 inline unsigned int asize(ARRY &a) in asize() function
13 asize(x); // ERROR - no matching function in f()
/openbsd/src/sys/dev/pci/drm/
Ddrm_ioctl.c971 unsigned int usize, asize; local
999 usize = asize = IOCPARM_LEN(cmd);
1000 if (drv_size > asize)
1001 asize = drv_size;
1007 usize = asize = IOCPARM_LEN(cmd);
1008 if (drv_size > asize)
1009 asize = drv_size;
1024 if (asize > usize) {
1025 adata = malloc(asize, M_DRM, M_WAITOK | M_ZERO);
1031 if (asize > usize) {
[all …]
/openbsd/src/gnu/usr.bin/perl/
Dreentr.c432 Size_t asize; in Perl_reentrant_retry() local
445 asize = va_arg(ap, Size_t); in Perl_reentrant_retry()
448 retptr = gethostbyaddr(host_addr, (socklen_t) asize, anint); break; in Perl_reentrant_retry()
/openbsd/src/sbin/dump/
Dtape.c63 static int64_t asize; /* number of 0.1" units written on cur tape */ variable
348 asize += tenths; in flushtape()
352 (blocksthisvol >= blocksperfile) : (asize > tsize))) { in flushtape()
676 asize = 0; in startnewtape()
/openbsd/src/gnu/gcc/gcc/
Dtree-dfa.c969 tree asize = TYPE_SIZE (TREE_TYPE (TREE_OPERAND (exp, 0))); in get_ref_base_and_extent() local
974 && asize && host_integerp (asize, 1)) in get_ref_base_and_extent()
976 maxsize = (TREE_INT_CST_LOW (asize) in get_ref_base_and_extent()
/openbsd/src/usr.sbin/ypserv/ypserv/
Dypserv.c391 socklen_t asize = sizeof(saddr); in main() local
427 if (getsockname(0, (struct sockaddr *)&saddr, &asize) == 0) { in main()
/openbsd/src/sys/dev/pci/drm/amd/amdkfd/
Dkfd_chardev.c3242 unsigned int usize, asize; in kfd_ioctl() local
3255 usize = asize = _IOC_SIZE(cmd); in kfd_ioctl()
3256 if (amdkfd_size > asize) in kfd_ioctl()
3257 asize = amdkfd_size; in kfd_ioctl()
3307 if (asize <= sizeof(stack_kdata)) { in kfd_ioctl()
3310 kdata = kmalloc(asize, GFP_KERNEL); in kfd_ioctl()
3316 if (asize > usize) in kfd_ioctl()
3317 memset(kdata + usize, 0, asize - usize); in kfd_ioctl()
/openbsd/src/usr.bin/file/
Dmagic-test.c134 magic_test_eq(const char *ap, size_t asize, const char *bp, size_t bsize, in magic_test_eq() argument
140 while (aoff != asize && boff != bsize) { in magic_test_eq()
143 while (aoff != asize && isspace((u_char)ap[aoff])) { in magic_test_eq()
/openbsd/src/gnu/usr.bin/gcc/gcc/config/sparc/
Dsparc.c3822 int asize = num; local
3823 int inv = ~asize;
3824 int low = -0x400 + (asize & 0x3FF);