| /NextBSD/sys/powerpc/pseries/ |
| HD | plpar_iommu.c | 166 bus_addr_t alloced; in phyp_iommu_map() local 183 boundary, minaddr, maxaddr, M_BESTFIT | M_NOWAIT, &alloced); in phyp_iommu_map() 188 KASSERT(alloced % PAGE_SIZE == 0, ("Alloc not page aligned")); in phyp_iommu_map() 189 KASSERT((alloced + (segs[i].ds_addr & PAGE_MASK)) % in phyp_iommu_map() 197 alloced + j, tce + j); in phyp_iommu_map() 204 segs[i].ds_addr = alloced + (segs[i].ds_addr & PAGE_MASK); in phyp_iommu_map()
|
| /NextBSD/sys/dev/sound/isa/ |
| HD | gusc.c | 356 int *alloced, rid_max, alloced_max; in gusc_alloc_resource() local 362 alloced = scp->io_alloced; in gusc_alloc_resource() 368 alloced = &scp->irq_alloced; in gusc_alloc_resource() 374 alloced = scp->drq_alloced; in gusc_alloc_resource() 383 if (*rid > rid_max || alloced[*rid] == alloced_max) in gusc_alloc_resource() 386 alloced[*rid]++; in gusc_alloc_resource() 395 int *alloced, rid_max; in gusc_release_resource() local 400 alloced = scp->io_alloced; in gusc_release_resource() 404 alloced = &scp->irq_alloced; in gusc_release_resource() 408 alloced = scp->drq_alloced; in gusc_release_resource() [all …]
|
| HD | sbc.c | 579 int *alloced, rid_max, alloced_max; in sbc_alloc_resource() local 588 alloced = scp->io_alloced; in sbc_alloc_resource() 600 alloced = scp->drq_alloced; in sbc_alloc_resource() 606 alloced = scp->irq_alloced; in sbc_alloc_resource() 615 if (*rid > rid_max || alloced[*rid] == alloced_max) in sbc_alloc_resource() 618 alloced[*rid]++; in sbc_alloc_resource() 627 int *alloced, rid_max; in sbc_release_resource() local 632 alloced = scp->io_alloced; in sbc_release_resource() 636 alloced = scp->drq_alloced; in sbc_release_resource() 640 alloced = scp->irq_alloced; in sbc_release_resource() [all …]
|
| /NextBSD/contrib/binutils/bfd/ |
| HD | elf-strtab.c | 53 bfd_size_type alloced; member 112 table->alloced = 64; in _bfd_elf_strtab_init() 114 table->array = bfd_malloc (table->alloced * amt); in _bfd_elf_strtab_init() 164 if (tab->size == tab->alloced) in _bfd_elf_strtab_add() 167 tab->alloced *= 2; in _bfd_elf_strtab_add() 168 tab->array = bfd_realloc (tab->array, tab->alloced * amt); in _bfd_elf_strtab_add()
|
| HD | ChangeLog-2006 | 200 (struct eh_frame_sec_info): Remove alloced field.
|
| HD | ChangeLog-0001 | 756 relocations in non-alloced sections against global symbols 3700 Only create .rela section for alloced sections in shared libraries.
|
| /NextBSD/contrib/bmake/ |
| HD | setenv.c | 87 static int alloced; /* if allocated space before */ local 107 if (alloced) { /* just increase size */ 114 alloced = 1; /* copy old entries into it */
|
| /NextBSD/contrib/gcc/config/ |
| HD | darwin-crt3.c | 491 struct one_atexit_routine *alloced; in atexit_common() local 498 alloced = malloc (sizeof (struct one_atexit_routine)); in atexit_common() 499 if (! alloced) in atexit_common() 501 *alloced = *r; in atexit_common() 502 return cxa_atexit (cxa_atexit_wrapper, alloced, dso); in atexit_common()
|
| /NextBSD/contrib/gdb/gdb/ |
| HD | interps.c | 421 int alloced = 0; in interpreter_completer() local 430 ++alloced; in interpreter_completer() 431 matches = (char **) xmalloc (alloced * sizeof (char *)); in interpreter_completer() 464 else if (num_matches < alloced) in interpreter_completer()
|
| /NextBSD/contrib/gcclibs/libiberty/testsuite/ |
| HD | test-demangle.c | 38 size_t alloced; member 53 size_t alloc = buf->alloced; 86 buf->alloced = alloc;
|
| /NextBSD/gnu/usr.bin/rcs/lib/ |
| HD | rcsutil.c | 237 static struct alloclist *alloced; variable 273 q->nextalloc = alloced; 274 alloced = q; 291 for (p = alloced; p; p = q) { in ffree() 296 alloced = 0; in ffree() 304 register struct alloclist *p, **a = &alloced;
|
| /NextBSD/sys/amd64/vmm/io/ |
| HD | ppt.c | 568 int numvec, alloced, rid, error; in ppt_setup_msix() local 614 alloced = numvec; in ppt_setup_msix() 615 error = pci_alloc_msix(ppt->dev, &alloced); in ppt_setup_msix() 616 if (error || alloced != numvec) { in ppt_setup_msix()
|
| /NextBSD/sys/kern/ |
| HD | kern_malloc.c | 1015 uint64_t alloced, freed; in DB_SHOW_COMMAND() local 1024 alloced = 0; in DB_SHOW_COMMAND() 1029 alloced += mtip->mti_stats[i].mts_memalloced; in DB_SHOW_COMMAND() 1034 (alloced - freed + 1023) / 1024, allocs); in DB_SHOW_COMMAND()
|
| /NextBSD/contrib/unbound/dnstap/ |
| HD | dnstap.c | 72 sbuf.alloced = DNSTAP_INITIAL_BUF_SIZE; in dt_pack() 73 sbuf.data = malloc(sbuf.alloced); in dt_pack()
|
| /NextBSD/crypto/openssl/apps/ |
| HD | s_server.c | 711 size_t alloced; member 727 wbuf->alloced = 1024; in ebcdic_new() 777 if (inl > (num = wbuf->alloced)) { in ebcdic_write() 787 wbuf->alloced = num; in ebcdic_write()
|
| /NextBSD/contrib/gcclibs/libdecnumber/ |
| HD | decNumber.c | 2245 Flag alloced = 0; /* set non-0 if any allocations */ in decAddOp() local 2267 alloced = 1; in decAddOp() 2275 alloced = 1; in decAddOp() 2525 alloced = 1; in decAddOp() 2626 if (alloced) in decAddOp()
|
| /NextBSD/contrib/gcc/cp/ |
| HD | parser.c | 9600 unsigned alloced = 10; in cp_parser_template_argument_list() local 9627 if (n_args == alloced) in cp_parser_template_argument_list() 9629 alloced *= 2; in cp_parser_template_argument_list() 9633 arg_ary = XNEWVEC (tree, alloced); in cp_parser_template_argument_list() 9637 arg_ary = XRESIZEVEC (tree, arg_ary, alloced); in cp_parser_template_argument_list()
|
| /NextBSD/contrib/binutils/binutils/ |
| HD | ChangeLog-0203 | 494 (dlltmp): Pass address of pointer being alloced or suffer neverending
|
| /NextBSD/contrib/ntp/sntp/libevent/ |
| HD | ChangeLog-2.0 | 969 o Delete stack-alloced event in new unit test before returning. (7ffd387)
|
| /NextBSD/contrib/unbound/doc/ |
| HD | Changelog | 5188 - caught bad free of un-alloced data in worker_send error case.
|