Searched refs:asize (Results 1 - 13 of 13) sorted by relevance

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dcrash28.C5 inline unsigned int asize(ARRY &a) function
13 asize(x); // ERROR - no matching function
/openbsd-current/gnu/gcc/libcpp/
H A Dcharset.c101 size_t asize; member in struct:_cpp_strbuf
467 outbytesleft = to->asize - to->len;
478 to->len = to->asize - outbytesleft;
488 to->asize += OUTBUF_BLOCK_SIZE;
489 to->text = XRESIZEVEC (uchar, to->text, to->asize);
490 outbuf = to->text + to->asize - outbytesleft;
538 if (to->len + flen > to->asize)
540 to->asize = to->len + flen;
541 to->text = XRESIZEVEC (uchar, to->text, to->asize);
566 outbytesleft = to->asize
[all...]
H A Dpch.c377 size_t asize; member in struct:ht_node_list
390 if (nl->n_defs == nl->asize)
392 nl->asize *= 2;
393 nl->defs = XRESIZEVEC (cpp_hashnode *, nl->defs, nl->asize);
497 nl.asize = 10;
498 nl.defs = XNEWVEC (cpp_hashnode *, nl.asize);
/openbsd-current/usr.bin/sed/
H A Dcompile.c473 size_t asize, ref, size; local
484 asize = size = 0;
487 if (asize - size < len) {
489 asize += len;
490 } while (asize - size < len);
491 text = xrealloc(text, asize);
679 size_t asize, size, bufsize; local
684 asize = size = 0;
687 if (asize - size < len) {
689 asize
[all...]
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_ioctl.c1026 unsigned int usize, asize; local
1055 usize = asize = IOCPARM_LEN(cmd);
1056 if (drv_size > asize)
1057 asize = drv_size;
1063 usize = asize = IOCPARM_LEN(cmd);
1064 if (drv_size > asize)
1065 asize = drv_size;
1080 if (asize > usize) {
1081 adata = malloc(asize, M_DRM, M_WAITOK | M_ZERO);
1095 if (asize > usiz
[all...]
/openbsd-current/gnu/usr.bin/perl/
H A Dreentr.c430 Size_t asize; local
443 asize = va_arg(ap, Size_t);
446 retptr = gethostbyaddr(host_addr, (socklen_t) asize, anint); break;
/openbsd-current/gnu/gcc/gcc/
H A Dtree-dfa.c969 tree asize = TYPE_SIZE (TREE_TYPE (TREE_OPERAND (exp, 0))); local
974 && asize && host_integerp (asize, 1))
976 maxsize = (TREE_INT_CST_LOW (asize)
/openbsd-current/sbin/dump/
H A Dtape.c63 static int64_t asize; /* number of 0.1" units written on cur tape */ variable
348 asize += tenths;
352 (blocksthisvol >= blocksperfile) : (asize > tsize))) {
676 asize = 0;
/openbsd-current/usr.sbin/ypserv/ypserv/
H A Dypserv.c391 socklen_t asize = sizeof(saddr); local
427 if (getsockname(0, (struct sockaddr *)&saddr, &asize) == 0) {
/openbsd-current/usr.bin/file/
H A Dmagic-test.c134 magic_test_eq(const char *ap, size_t asize, const char *bp, size_t bsize, argument
140 while (aoff != asize && boff != bsize) {
143 while (aoff != asize && isspace((u_char)ap[aoff])) {
/openbsd-current/gnu/usr.bin/perl/regen/
H A Dreentr.pl932 Size_t asize;
945 asize = va_arg(ap, Size_t);
948 retptr = gethostbyaddr(host_addr, (socklen_t) asize, anint); break;
/openbsd-current/sys/dev/pci/drm/amd/amdkfd/
H A Dkfd_chardev.c3235 unsigned int usize, asize; local
3248 usize = asize = _IOC_SIZE(cmd);
3249 if (amdkfd_size > asize)
3250 asize = amdkfd_size;
3300 if (asize <= sizeof(stack_kdata)) {
3303 kdata = kmalloc(asize, GFP_KERNEL);
3309 if (asize > usize)
3310 memset(kdata + usize, 0, asize - usize);
/openbsd-current/gnu/usr.bin/gcc/gcc/config/sparc/
H A Dsparc.c3836 int asize = num;
3837 int inv = ~asize;
3838 int low = -0x400 + (asize & 0x3FF);
3822 int asize = num; local

Completed in 282 milliseconds