Home
last modified time | relevance | path

Searched refs:bl (Results 1 – 25 of 108) sorted by relevance

12345

/dragonfly/sys/kern/
H A Dsubr_alist.c145 alist_t bl; in alist_create() local
166 bl->bl_root = kmalloc(sizeof(almeta_t) * bl->bl_rootblks, in alist_create()
180 alst_radix_init(bl->bl_root, 0, bl->bl_radix, bl->bl_skip, blocks); in alist_create()
182 return(bl); in alist_create()
201 bzero(bl, sizeof(*bl)); in alist_init()
222 alst_radix_init(bl->bl_root, 0, bl->bl_radix, bl->bl_skip, blocks); in alist_init()
262 if (bl && count < bl->bl_radix) { in alist_alloc()
267 bl->bl_radix, bl->bl_skip); in alist_alloc()
283 if (bl) { in alist_free()
289 bl->bl_radix, bl->bl_skip, 0); in alist_free()
[all …]
H A Dsubr_blist.c213 bl->bl_rootblks, bl->bl_radix); in blist_create()
215 blst_radix_init(bl->bl_root, bl->bl_radix, bl->bl_skip, blocks); in blist_create()
238 if (bl) { in blist_alloc()
243 bl->bl_radix, bl->bl_skip); in blist_alloc()
255 if (bl) { in blist_allocat()
260 bl->bl_radix, bl->bl_skip); in blist_allocat()
276 if (bl) { in blist_free()
280 blst_meta_free(bl->bl_root, blkno, count, bl->bl_radix, bl->bl_skip, 0); in blist_free()
302 bl->bl_radix, bl->bl_skip, 0); in blist_fill()
349 blst_radix_print(bl->bl_root, 0, bl->bl_radix, bl->bl_skip, 4); in blist_print()
[all …]
/dragonfly/crypto/libressl/crypto/cmac/
H A Dcmac.c92 k1[bl - 1] ^= bl == 16 ? 0x87 : 0x1b; in make_kn()
138 int bl; in CMAC_CTX_copy() local
175 int bl; in CMAC_Init() local
203 size_t bl; in CMAC_Update() local
229 while (dlen > bl) { in CMAC_Update()
232 dlen -= bl; in CMAC_Update()
233 data += bl; in CMAC_Update()
244 int i, bl, lb; in CMAC_Final() local
249 *poutlen = (size_t)bl; in CMAC_Final()
254 if (lb == bl) { in CMAC_Final()
[all …]
/dragonfly/lib/libc/db/btree/
H A Dbt_utils.c64 BLEAF *bl; in __bt_ret() local
90 memmove(rkey->data, bl->bytes, bl->ksize); in __bt_ret()
91 key->size = bl->ksize; in __bt_ret()
94 key->size = bl->ksize; in __bt_ret()
103 if (__ovfl_get(t, bl->bytes + bl->ksize, in __bt_ret()
116 memmove(rdata->data, bl->bytes + bl->ksize, bl->dsize); in __bt_ret()
121 data->data = bl->bytes + bl->ksize; in __bt_ret()
144 BLEAF *bl; in __bt_cmp() local
164 bigkey = bl->bytes; in __bt_cmp()
166 k2.data = bl->bytes; in __bt_cmp()
[all …]
H A Dbt_debug.c148 BLEAF *bl; in __bt_dpage() local
197 bl = GETBLEAF(h, cur); in __bt_dpage()
198 if (bl->flags & P_BIGKEY) in __bt_dpage()
201 *(pgno_t *)bl->bytes, in __bt_dpage()
203 else if (bl->ksize) in __bt_dpage()
205 bl->ksize, bl->bytes); in __bt_dpage()
206 if (bl->flags & P_BIGDATA) in __bt_dpage()
209 *(pgno_t *)(bl->bytes + bl->ksize), in __bt_dpage()
210 *(uint32_t *)(bl->bytes + bl->ksize + in __bt_dpage()
212 else if (bl->dsize) in __bt_dpage()
[all …]
H A Dbt_split.c79 BLEAF *bl, *tbl; in __bt_split() local
176 bl = GETBLEAF(rchild, 0); in __bt_split()
183 b.size = bl->ksize; in __bt_split()
184 b.data = bl->bytes; in __bt_split()
235 memmove(dest, bl->bytes, nksize ? nksize : bl->ksize); in __bt_split()
514 BLEAF *bl; in bt_broot() local
533 bl = GETBLEAF(r, 0); in bt_broot()
538 memmove(dest, bl->bytes, bl->ksize); in bt_broot()
589 BLEAF *bl; in bt_psplit() local
622 nbytes = NBLEAF(bl); in bt_psplit()
[all …]
/dragonfly/contrib/gdb-7/gdb/
H A Dblock.c77 while ((BLOCK_FUNCTION (bl) == NULL || block_inlined_p (bl)) in block_linkage_function()
79 bl = BLOCK_SUPERBLOCK (bl); in block_linkage_function()
92 while (BLOCK_FUNCTION (bl) == NULL && BLOCK_SUPERBLOCK (bl) != NULL) in block_containing_function()
93 bl = BLOCK_SUPERBLOCK (bl); in block_containing_function()
103 return BLOCK_FUNCTION (bl) != NULL && SYMBOL_INLINED (BLOCK_FUNCTION (bl)); in block_inlined_p()
182 return bl; in blockvector_for_pc_sect()
246 if (bl) in block_for_pc_sect()
378 BLOCK_START (bl) = 0; in allocate_block()
379 BLOCK_END (bl) = 0; in allocate_block()
385 return bl; in allocate_block()
[all …]
H A Dblockframe.c60 struct block *bl; in get_frame_block() local
69 bl = block_for_pc (pc); in get_frame_block()
70 if (bl == NULL) in get_frame_block()
80 bl = BLOCK_SUPERBLOCK (bl); in get_frame_block()
84 return bl; in get_frame_block()
90 struct block *bl; in get_pc_function_start() local
93 bl = block_for_pc (pc); in get_pc_function_start()
94 if (bl) in get_pc_function_start()
124 if (bl == NULL) in get_frame_function()
127 while (BLOCK_FUNCTION (bl) == NULL && BLOCK_SUPERBLOCK (bl) != NULL) in get_frame_function()
[all …]
H A Dbreakpoint.c1953 for (bl = b->base.loc; bl; bl = bl->next) in update_watchpoint()
2007 if (!bl->enabled || bl->shlib_disabled || bl->duplicate) in should_be_inserted()
5204 for (bl = b->loc; bl != NULL; bl = bl->next) in bpstat_stop_status()
5662 for (bl = b->loc; bl; bl = bl->next) in bp_condition_evaluator()
5691 if (bl && bl->cond_bytecode) in bp_location_condition_evaluator()
6554 for (; bl; bl = bl->next) in breakpoint_has_pc()
7130 for (bl = b->loc; bl; bl = bl->next) in make_breakpoint_permanent()
8615 for (bl = b->loc; bl; bl = bl->next) in hw_breakpoint_used_count()
8638 for (bl = b->loc; bl; bl = bl->next) in hw_watchpoint_use_count()
12211 for (bl = b->loc; bl; bl = bl->next) in download_tracepoint_locations()
[all …]
H A Dblock.h117 #define BLOCK_START(bl) (bl)->startaddr argument
118 #define BLOCK_END(bl) (bl)->endaddr argument
119 #define BLOCK_FUNCTION(bl) (bl)->function argument
120 #define BLOCK_SUPERBLOCK(bl) (bl)->superblock argument
121 #define BLOCK_DICT(bl) (bl)->dict argument
122 #define BLOCK_NAMESPACE(bl) (bl)->language_specific.cplus_specific.namespace argument
/dragonfly/contrib/mpfr/src/
H A Dmpfr-longlong.h372 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
376 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
402 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
409 "rIJ" ((USItype) (bl)))
410 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
417 "rIJ" ((USItype) (bl)))
421 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
440 if (__builtin_constant_p (bl)) \
1222 if (__builtin_constant_p (bl) && bl > -0x8000 && bl <= 0x8000) { \
1735 __x = (al) + (bl); \
[all …]
/dragonfly/contrib/gmp/
H A Dlonglong.h378 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
382 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
408 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
415 "rIJ" ((USItype) (bl)))
416 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
423 "rIJ" ((USItype) (bl)))
427 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
446 if (__builtin_constant_p (bl)) \
1379 if (__builtin_constant_p (bl) && bl > -0x8000 && bl <= 0x8000) { \
1888 __x = (al) + (bl); \
[all …]
/dragonfly/contrib/gcc-4.7/libgcc/
H A Dlonglong.h185 "rIJ" ((USItype) (bl)))
193 "rIJ" ((USItype) (bl)))
290 "rM" ((USItype) (bl)))
298 "rM" ((USItype) (bl)))
398 "g" ((USItype) (bl)))
406 "g" ((USItype) (bl)))
490 if ((al) < (bl)) \
561 "g" ((USItype) (bl)))
569 "g" ((USItype) (bl)))
976 "r" ((USItype) (bl)))
[all …]
/dragonfly/contrib/binutils-2.27/include/
H A Dlonglong.h202 "rIJ" ((USItype) (bl)))
210 "rIJ" ((USItype) (bl)))
354 "rM" ((USItype) (bl)))
362 "rM" ((USItype) (bl)))
462 "g" ((USItype) (bl)))
470 "g" ((USItype) (bl)))
554 if ((al) < (bl)) \
625 "g" ((USItype) (bl)))
633 "g" ((USItype) (bl)))
1030 "r" ((USItype) (bl)))
[all …]
/dragonfly/contrib/gcc-8.0/include/
H A Dlonglong.h356 "rM" ((USItype) (bl)))
364 "rM" ((USItype) (bl)))
464 "g" ((USItype) (bl)))
472 "g" ((USItype) (bl)))
556 if ((al) < (bl)) \
627 "g" ((USItype) (bl)))
635 "g" ((USItype) (bl)))
996 "r" ((USItype) (bl)))
1004 "r" ((USItype) (bl)))
1469 "g" ((USItype) (bl)))
[all …]
/dragonfly/crypto/libressl/crypto/rc4/
H A Drc4-md5-elf-x86_64.S66 addb %bl,%cl
78 addb %dl,%bl
103 addb %bl,%cl
114 addb %dl,%bl
139 addb %bl,%cl
150 addb %dl,%bl
175 addb %bl,%cl
186 addb %dl,%bl
211 addb %bl,%cl
222 addb %dl,%bl
[all …]
H A Drc4-elf-x86_64.S69 addb %bl,%cl
75 addb %bl,%dl
85 addb %bl,%cl
91 addb %bl,%dl
101 addb %bl,%cl
107 addb %bl,%dl
118 addb %bl,%cl
124 addb %bl,%dl
164 movb %bl,%cl
176 addb %bl,%cl
[all …]
/dragonfly/contrib/gmp/mpn/generic/
H A Dhgcd2.c216 mpn_hgcd2 (mp_limb_t ah, mp_limb_t al, mp_limb_t bh, mp_limb_t bl, in mpn_hgcd2() argument
224 if (ah > bh || (ah == bh && al > bl)) in mpn_hgcd2()
226 sub_ddmmss (ah, al, ah, al, bh, bl); in mpn_hgcd2()
235 sub_ddmmss (bh, bl, bh, bl, ah, al); in mpn_hgcd2()
255 bh = (bh << (GMP_LIMB_BITS / 2) ) + (bl >> (GMP_LIMB_BITS / 2)); in mpn_hgcd2()
263 sub_ddmmss (ah, al, ah, al, bh, bl); in mpn_hgcd2()
277 mp_limb_t q = div2 (r, ah, al, bh, bl); in mpn_hgcd2()
298 bh = (bh << (GMP_LIMB_BITS / 2) ) + (bl >> (GMP_LIMB_BITS / 2)); in mpn_hgcd2()
305 sub_ddmmss (bh, bl, bh, bl, ah, al); in mpn_hgcd2()
319 mp_limb_t q = div2 (r, bh, bl, ah, al); in mpn_hgcd2()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgraphite-cloog-compat.h158 cloog_program_set_blocklist (CloogProgram *prog, CloogBlockList *bl) in cloog_program_set_blocklist() argument
160 prog->blocklist = bl; in cloog_program_set_blocklist()
248 cloog_block_list_next (CloogBlockList *bl) in cloog_block_list_next() argument
250 return bl->next; in cloog_block_list_next()
254 cloog_block_list_set_next (CloogBlockList *bl, CloogBlockList *next) in cloog_block_list_set_next() argument
256 bl->next = next; in cloog_block_list_set_next()
260 cloog_block_list_set_block (CloogBlockList *bl, CloogBlock *block) in cloog_block_list_set_block() argument
262 bl->block = block; in cloog_block_list_set_block()
/dragonfly/crypto/libressl/crypto/whrlpool/
H A Dwp-elf-x86_64.S85 movb %bl,%cl
92 movb %bl,%cl
113 movb %bl,%cl
120 movb %bl,%cl
141 movb %bl,%cl
148 movb %bl,%cl
169 movb %bl,%cl
176 movb %bl,%cl
197 movb %bl,%cl
204 movb %bl,%cl
[all …]
/dragonfly/crypto/libressl/crypto/evp/
H A Devp_enc.c299 int i, j, bl; in EVP_EncryptUpdate() local
335 if (bl - i > inl) { in EVP_EncryptUpdate()
341 j = bl - i; in EVP_EncryptUpdate()
349 if (((inl - j) & ~(bl - 1)) > INT_MAX - bl) { in EVP_EncryptUpdate()
358 out += bl; in EVP_EncryptUpdate()
359 *outl = bl; in EVP_EncryptUpdate()
363 i = inl&(bl - 1); in EVP_EncryptUpdate()
393 unsigned int i, b, bl; in EVP_EncryptFinal_ex() local
413 bl = ctx->buf_len; in EVP_EncryptFinal_ex()
415 if (bl) { in EVP_EncryptFinal_ex()
[all …]
H A De_camellia.c130 size_t i, bl; in camellia_128_ecb_cipher() local
132 bl = ctx->cipher->block_size; in camellia_128_ecb_cipher()
134 if (inl < bl) in camellia_128_ecb_cipher()
137 inl -= bl; in camellia_128_ecb_cipher()
139 for (i = 0; i <= inl; i += bl) in camellia_128_ecb_cipher()
288 size_t i, bl; in camellia_192_ecb_cipher() local
292 if (inl < bl) in camellia_192_ecb_cipher()
295 inl -= bl; in camellia_192_ecb_cipher()
446 size_t i, bl; in camellia_256_ecb_cipher() local
450 if (inl < bl) in camellia_256_ecb_cipher()
[all …]
/dragonfly/test/stress/stress2/testcases/link/
H A Dlink.c49 int64_t bl; in setup() local
56 getdf(&bl, &in); in setup()
73 if (reserve_bl > bl) in setup()
74 size = bl / 26 * op->incarnations; in setup()
80 size, op->incarnations, bl/1024, in, reserve_bl/1024, reserve_in); in setup()
/dragonfly/games/backgammon/common_source/
H A Dboard.c44 static const char bl[] = in wrboard() local
57 writel(bl); in wrboard()
58 strcpy(ln, bl); in wrboard()
98 strcpy(ln, bl); in wrboard()
134 strcpy(ln, bl); in wrboard()
/dragonfly/crypto/libressl/crypto/camellia/
H A Dcmll-elf-x86_64.S81 movzbl %bl,%edi
91 movzbl %bl,%edi
108 movzbl %bl,%edi
118 movzbl %bl,%edi
135 movzbl %bl,%edi
145 movzbl %bl,%edi
162 movzbl %bl,%edi
172 movzbl %bl,%edi
189 movzbl %bl,%edi
199 movzbl %bl,%edi
[all …]

12345