Home
last modified time | relevance | path

Searched refs:bmap (Results 1 – 23 of 23) sorted by relevance

/dragonfly/contrib/gcc-8.0/gcc/
H A Dsbitmap.c45 sbitmap bmap; in sbitmap_alloc() local
54 return bmap; in sbitmap_alloc()
73 bmap = (sbitmap) xrealloc (bmap, amt); in sbitmap_resize()
80 memset (bmap->elms + bmap->size, -1, in sbitmap_resize()
86 bmap->elms[bmap->size - 1] in sbitmap_resize()
96 memset (bmap->elms + bmap->size, 0, bytes - sbitmap_size_bytes (bmap)); in sbitmap_resize()
109 return bmap; in sbitmap_resize()
134 return bmap; in sbitmap_realloc()
433 memset (bmap->elms, 0, sbitmap_size_bytes (bmap)); in bitmap_clear()
443 memset (bmap->elms, -1, sbitmap_size_bytes (bmap)); in bitmap_ones()
[all …]
H A Dgcse-common.c112 compute_transp (const_rtx x, int indx, sbitmap *bmap, in compute_transp() argument
137 bitmap_clear_bit (bmap[DF_REF_BB (def)->index], indx); in compute_transp()
156 bitmap_clear_bit (bmap[bb_index], indx); in compute_transp()
178 bitmap_clear_bit (bmap[bb_index], indx); in compute_transp()
215 compute_transp (XEXP (x, i), indx, bmap, blocks_with_calls, in compute_transp()
220 compute_transp (XVECEXP (x, i, j), indx, bmap, blocks_with_calls, in compute_transp()
H A Ddse.c265 bitmap bmap; member
737 BITMAP_FREE (cur->positions_needed.large.bmap); in free_store_info()
1230 if (bitmap_set_bit (s_info->positions_needed.large.bmap, pos)) in set_position_unneeded()
1248 bitmap_set_range (s_info->positions_needed.large.bmap, 0, width); in set_all_positions_unneeded()
1253 gcc_checking_assert (!s_info->positions_needed.large.bmap); in set_all_positions_unneeded()
1271 gcc_checking_assert (s_info->positions_needed.large.bmap); in any_positions_needed_p()
1276 gcc_checking_assert (!s_info->positions_needed.large.bmap); in any_positions_needed_p()
1295 && !s_info->positions_needed.large.bmap); in all_positions_needed_p()
1310 if (bitmap_bit_p (s_info->positions_needed.large.bmap, i)) in all_positions_needed_p()
1640 store_info->positions_needed.large.bmap = NULL; in record_store()
[all …]
H A Dgengtype-state.c2481 lang_bitmap bmap = t2->stok_un.stok_num; in read_state_files_list() local
2502 set_lang_bitmap (curgt, bmap); in read_state_files_list()
H A Dgengtype.c400 lang_bitmap bmap = get_lang_bitmap (inpf); in read_input_list() local
401 if (bmap & curlangs) in read_input_list()
409 bmap |= curlangs; in read_input_list()
410 set_lang_bitmap (inpf, bmap); in read_input_list()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dsbitmap.c102 bmap->popcount = XNEWVEC (unsigned char, bmap->size); in sbitmap_alloc_with_popcount()
122 bmap = (sbitmap) xrealloc (bmap, amt); in sbitmap_resize()
131 memset (bmap->elms + bmap->size, -1, in sbitmap_resize()
137 bmap->elms[bmap->size - 1] in sbitmap_resize()
148 memset (bmap->elms + bmap->size, 0, in sbitmap_resize()
151 memset (bmap->popcount + bmap->size, 0, in sbitmap_resize()
338 memset (bmap->elms, 0, SBITMAP_SIZE_BYTES (bmap)); in sbitmap_zero()
350 memset (bmap->elms, -1, SBITMAP_SIZE_BYTES (bmap)); in sbitmap_ones()
357 bmap->elms[bmap->size - 1] in sbitmap_ones()
360 bmap->popcount[bmap->size - 1] in sbitmap_ones()
[all …]
H A Debitmap.c377 dump_ebitmap (FILE *file, ebitmap bmap) in dump_ebitmap() argument
384 res = sbitmap_last_set_bit (bmap->wordmask); in dump_ebitmap()
390 fprintf (file, "n_words = %d, set = {", bmap->numwords); in dump_ebitmap()
393 if (ebitmap_bit_p (bmap, i)) in dump_ebitmap()
410 debug_ebitmap (ebitmap bmap) in debug_ebitmap() argument
412 dump_ebitmap (stderr, bmap); in debug_ebitmap()
H A Dgcse.c1629 compute_transp (const_rtx x, int indx, sbitmap *bmap) in compute_transp() argument
1651 RESET_BIT (bmap[DF_REF_BB (def)->index], indx); in compute_transp()
1670 RESET_BIT (bmap[bb_index], indx); in compute_transp()
1691 RESET_BIT (bmap[bb_index], indx); in compute_transp()
1729 compute_transp (XEXP (x, i), indx, bmap); in compute_transp()
1733 compute_transp (XVECEXP (x, i, j), indx, bmap); in compute_transp()
H A Ddse.c251 bitmap bmap; member
825 BITMAP_FREE (store_info->positions_needed.large.bmap); in free_store_info()
1368 if (bitmap_set_bit (s_info->positions_needed.large.bmap, pos)) in set_position_unneeded()
1385 bitmap_set_bit (s_info->positions_needed.large.bmap, pos); in set_all_positions_unneeded()
1415 if (bitmap_bit_p (s_info->positions_needed.large.bmap, start++)) in all_positions_needed_p()
1756 store_info->positions_needed.large.bmap = BITMAP_ALLOC (NULL); in record_store()
2911 BITMAP_FREE (s_info->positions_needed.large.bmap); in dse_step1()
H A Dgengtype-state.c2312 lang_bitmap bmap = t2->stok_un.stok_num; in read_state_files_list() local
2333 set_lang_bitmap (curgt, bmap); in read_state_files_list()
H A Dgengtype.c394 lang_bitmap bmap = get_lang_bitmap (inpf); in read_input_list() local
395 if (bmap & curlangs) in read_input_list()
403 bmap |= curlangs; in read_input_list()
404 set_lang_bitmap (inpf, bmap); in read_input_list()
/dragonfly/sys/vfs/hammer2/
H A Dhammer2_freemap.c408 (bmap->class == 0 || bmap->class == class || in hammer2_freemap_try_alloc()
451 (bmap->class == 0 || bmap->class == class || in hammer2_freemap_try_alloc()
745 if (bmap[-1].radix == 0 && bmap[-1].avail) in hammer2_bmap_alloc()
748 if (bmap[1].radix == 0 && bmap[1].avail) in hammer2_bmap_alloc()
779 if (bmap->class == 0) in hammer2_bmap_alloc()
780 bmap->class = class; in hammer2_bmap_alloc()
863 bmap->avail = 0; in hammer2_freemap_init()
871 ++bmap; in hammer2_freemap_init()
1080 bmap->linear = 0; in hammer2_freemap_adjust()
1095 bmap->avail -= in hammer2_freemap_adjust()
[all …]
H A Dhammer2_bulkfree.c761 hammer2_bmap_data_t *bmap = cbinfo->bmap; in cbinfo_bmap_init() local
772 bzero(bmap, sizeof(*bmap)); in cbinfo_bmap_init()
787 ++bmap; in cbinfo_bmap_init()
1006 bmap = cbinfo->bmap; in h2_bulkfree_sync()
1135 ++bmap; in h2_bulkfree_sync()
1345 bmap->class, in h2_bulkfree_sync_adjust()
1346 bmap->avail, in h2_bulkfree_sync_adjust()
1347 bmap->bitmap[0], bmap->bitmap[1], in h2_bulkfree_sync_adjust()
1348 bmap->bitmap[2], bmap->bitmap[3], in h2_bulkfree_sync_adjust()
1349 bmap->bitmap[4], bmap->bitmap[5], in h2_bulkfree_sync_adjust()
[all …]
H A DTODO53 * bulkfree - limit kernel memory allocation for bmap space
/dragonfly/usr.sbin/makefs/hammer2/
H A Dhammer2_freemap.c412 (bmap->class == 0 || bmap->class == class || in hammer2_freemap_try_alloc()
455 (bmap->class == 0 || bmap->class == class || in hammer2_freemap_try_alloc()
749 if (bmap[-1].radix == 0 && bmap[-1].avail) in hammer2_bmap_alloc()
752 if (bmap[1].radix == 0 && bmap[1].avail) in hammer2_bmap_alloc()
783 if (bmap->class == 0) in hammer2_bmap_alloc()
784 bmap->class = class; in hammer2_bmap_alloc()
867 bmap->avail = 0; in hammer2_freemap_init()
875 ++bmap; in hammer2_freemap_init()
1084 bmap->linear = 0; in hammer2_freemap_adjust()
1099 bmap->avail -= in hammer2_freemap_adjust()
[all …]
H A Dhammer2_bulkfree.c772 hammer2_bmap_data_t *bmap = cbinfo->bmap; in cbinfo_bmap_init() local
783 bzero(bmap, sizeof(*bmap)); in cbinfo_bmap_init()
798 ++bmap; in cbinfo_bmap_init()
1017 bmap = cbinfo->bmap; in h2_bulkfree_sync()
1146 ++bmap; in h2_bulkfree_sync()
1356 bmap->class, in h2_bulkfree_sync_adjust()
1357 bmap->avail, in h2_bulkfree_sync_adjust()
1358 bmap->bitmap[0], bmap->bitmap[1], in h2_bulkfree_sync_adjust()
1359 bmap->bitmap[2], bmap->bitmap[3], in h2_bulkfree_sync_adjust()
1360 bmap->bitmap[4], bmap->bitmap[5], in h2_bulkfree_sync_adjust()
[all …]
/dragonfly/sys/sys/
H A D_malloc.h75 __uint64_t bmap[(KMALLOC_SLAB_MAXOBJS + 63) / 64]; member
/dragonfly/sys/kern/
H A Dkern_kmalloc.c630 ptr = &slab->bmap[i >> 6]; in bmap_set()
644 ptr = &slab->bmap[i >> 6]; in bmap_clr()
H A Dvfs_vopops.c121 VNODEOP_DESC_INIT(bmap);
/dragonfly/sbin/hammer2/
H A Dcmd_debug.c50 static void count_blocks(hammer2_bmap_data_t *bmap, int value,
1225 count_blocks(hammer2_bmap_data_t *bmap, int value, in count_blocks() argument
1240 hammer2_bitmap_t bm = bmap->bitmapq[i]; in count_blocks()
/dragonfly/sys/dev/sound/pci/
H A Demu10k1.c167 u_int8_t bmap[EMUMAXPAGES / 8]; member
1362 if (mem->bmap[idx >> 3] & (1 << (idx & 7))) in emu_memalloc()
1387 mem->bmap[idx >> 3] |= 1 << (idx & 7); in emu_memalloc()
1418 mem->bmap[idx >> 3] &= ~(1 << (idx & 7)); in emu_memfree()
H A Demu10kx.c278 uint8_t bmap[EMU_MAXPAGES / 8]; member
1110 if (mem->bmap[idx >> 3] & (1 << (idx & 7))) in emu_memalloc()
1142 mem->bmap[idx >> 3] |= 1 << (idx & 7); in emu_memalloc()
1168 mem->bmap[idx >> 3] &= ~(1 << (idx & 7)); in emu_memfree()
/dragonfly/etc/
H A Dservices2229 bmap 3421/tcp #Bull Apprise portmapper
2230 bmap 3421/udp #Bull Apprise portmapper