Home
last modified time | relevance | path

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

12345

/dflybsd-src/sys/kern/
H A Dsubr_alist.c145 alist_t bl; in alist_create() local
159 bl = kmalloc(sizeof(struct alist), mtype, M_WAITOK | M_ZERO); in alist_create()
161 bl->bl_blocks = blocks; in alist_create()
162 bl->bl_radix = radix; in alist_create()
163 bl->bl_skip = skip; in alist_create()
164 bl->bl_rootblks = 1 + alst_radix_init(NULL, 0, bl->bl_radix, in alist_create()
165 bl->bl_skip, blocks); in alist_create()
166 bl->bl_root = kmalloc(sizeof(almeta_t) * bl->bl_rootblks, in alist_create()
173 bl->bl_blocks, in alist_create()
174 bl->bl_blocks * 4 / 1024, in alist_create()
[all …]
H A Dsubr_blist.c176 blist_t bl; in blist_create() local
194 bl = kmalloc(sizeof(struct blist), M_SWAP, M_WAITOK | M_ZERO); in blist_create()
196 bl->bl_blocks = blocks; in blist_create()
197 bl->bl_radix = radix; in blist_create()
198 bl->bl_skip = skip; in blist_create()
199 bl->bl_rootblks = 1 + in blist_create()
200 blst_radix_init(NULL, bl->bl_radix, bl->bl_skip, blocks); in blist_create()
201 bl->bl_root = kmalloc(sizeof(blmeta_t) * bl->bl_rootblks, in blist_create()
208 bl->bl_blocks, in blist_create()
209 bl->bl_blocks * 4 / 1024, in blist_create()
[all …]
/dflybsd-src/crypto/libressl/crypto/cmac/
H A Dcmac.c80 make_kn(unsigned char *k1, unsigned char *l, int bl) in make_kn() argument
85 for (i = 0; i < bl; i++) { in make_kn()
87 if (i < bl - 1 && l[i + 1] & 0x80) in make_kn()
92 k1[bl - 1] ^= bl == 16 ? 0x87 : 0x1b; in make_kn()
138 int bl; in CMAC_CTX_copy() local
144 bl = EVP_CIPHER_CTX_block_size(&in->cctx); in CMAC_CTX_copy()
145 memcpy(out->k1, in->k1, bl); in CMAC_CTX_copy()
146 memcpy(out->k2, in->k2, bl); in CMAC_CTX_copy()
147 memcpy(out->tbl, in->tbl, bl); in CMAC_CTX_copy()
148 memcpy(out->last_block, in->last_block, bl); in CMAC_CTX_copy()
[all …]
/dflybsd-src/lib/libc/db/btree/
H A Dbt_utils.c64 BLEAF *bl; in __bt_ret() local
67 bl = GETBLEAF(e->page, e->index); in __bt_ret()
77 if (bl->flags & P_BIGKEY) { in __bt_ret()
78 if (__ovfl_get(t, bl->bytes, in __bt_ret()
83 if (bl->ksize > rkey->size) { in __bt_ret()
84 p = realloc(rkey->data, bl->ksize); in __bt_ret()
88 rkey->size = bl->ksize; in __bt_ret()
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()
[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()
202 *(uint32_t *)(bl->bytes + sizeof(pgno_t))); 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()
[all …]
H A Dbt_split.c79 BLEAF *bl, *tbl; in __bt_split() local
176 bl = GETBLEAF(rchild, 0); in __bt_split()
177 nbytes = NBINTERNAL(bl->ksize); in __bt_split()
178 if (t->bt_pfx && !(bl->flags & P_BIGKEY) && in __bt_split()
183 b.size = bl->ksize; in __bt_split()
184 b.data = bl->bytes; in __bt_split()
233 WR_BINTERNAL(dest, nksize ? nksize : bl->ksize, in __bt_split()
234 rchild->pgno, bl->flags & P_BIGKEY); in __bt_split()
235 memmove(dest, bl->bytes, nksize ? nksize : bl->ksize); in __bt_split()
236 if (bl->flags & P_BIGKEY && in __bt_split()
[all …]
/dflybsd-src/contrib/gdb-7/gdb/
H A Dblock.c75 block_linkage_function (const struct block *bl) in block_linkage_function() argument
77 while ((BLOCK_FUNCTION (bl) == NULL || block_inlined_p (bl)) in block_linkage_function()
78 && BLOCK_SUPERBLOCK (bl) != NULL) in block_linkage_function()
79 bl = BLOCK_SUPERBLOCK (bl); in block_linkage_function()
81 return BLOCK_FUNCTION (bl); in block_linkage_function()
90 block_containing_function (const struct block *bl) in block_containing_function() argument
92 while (BLOCK_FUNCTION (bl) == NULL && BLOCK_SUPERBLOCK (bl) != NULL) in block_containing_function()
93 bl = BLOCK_SUPERBLOCK (bl); in block_containing_function()
95 return BLOCK_FUNCTION (bl); in block_containing_function()
101 block_inlined_p (const struct block *bl) in block_inlined_p() argument
[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()
77 if (block_inlined_p (bl)) in get_frame_block()
80 bl = BLOCK_SUPERBLOCK (bl); in get_frame_block()
81 gdb_assert (bl != NULL); 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()
[all …]
H A Dbreakpoint.c177 static int breakpoint_location_address_match (struct bp_location *bl,
1409 bp_location_has_shadow (struct bp_location *bl) in bp_location_has_shadow() argument
1411 if (bl->loc_type != bp_loc_software_breakpoint) in bp_location_has_shadow()
1413 if (!bl->inserted) in bp_location_has_shadow()
1415 if (bl->target_info.shadow_len == 0) in bp_location_has_shadow()
1456 struct bp_location *bl; in breakpoint_xfer_memory() local
1459 bl = bp_location[bc]; in breakpoint_xfer_memory()
1470 if ((bl->address + bp_location_shadow_len_after_address_max in breakpoint_xfer_memory()
1471 >= bl->address) in breakpoint_xfer_memory()
1472 && (bl->address + bp_location_shadow_len_after_address_max in breakpoint_xfer_memory()
[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
/dflybsd-src/contrib/mpfr/src/
H A Dmpfr-longlong.h294 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
297 __x = (al) - (bl); \
298 if ((al) < (bl)) \
372 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
375 : "r" (ah), "rI" (bh), "%r" (al), "rI" (bl))
376 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
379 : "r" (ah), "rI" (bh), "r" (al), "rI" (bl))
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
[all …]
/dflybsd-src/contrib/gmp/
H A Dlonglong.h300 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
303 __x = (al) - (bl); \
304 if ((al) < (bl)) \
378 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
381 : "r" (ah), "rI" (bh), "%r" (al), "rI" (bl))
382 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
385 : "r" (ah), "rI" (bh), "r" (al), "rI" (bl))
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
[all …]
/dflybsd-src/contrib/gcc-4.7/libgcc/
H A Dlonglong.h178 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
185 "rIJ" ((USItype) (bl)))
186 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
193 "rIJ" ((USItype) (bl)))
207 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
214 "rI" ((USItype) (bl)) __CLOBBER_CC)
215 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
222 "rI" ((USItype) (bl)) __CLOBBER_CC)
283 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
290 "rM" ((USItype) (bl)))
[all …]
/dflybsd-src/contrib/binutils-2.27/include/
H A Dlonglong.h195 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
202 "rIJ" ((USItype) (bl)))
203 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
210 "rIJ" ((USItype) (bl)))
229 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
236 "rI" ((USItype) (bl)) __CLOBBER_CC)
237 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
244 "rI" ((USItype) (bl)) __CLOBBER_CC)
347 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
354 "rM" ((USItype) (bl)))
[all …]
/dflybsd-src/contrib/gcc-8.0/include/
H A Dlonglong.h195 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
202 "rICal" ((USItype) (bl)) \
204 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
211 "rICal" ((USItype) (bl)) \
231 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
238 "rI" ((USItype) (bl)) __CLOBBER_CC)
239 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
246 "rI" ((USItype) (bl)) __CLOBBER_CC)
349 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
356 "rM" ((USItype) (bl)))
[all …]
/dflybsd-src/crypto/libressl/crypto/rc4/
H A Drc4-md5-elf-x86_64.S66 addb %bl,%cl
78 addb %dl,%bl
82 movzbl %bl,%ebx
103 addb %bl,%cl
114 addb %dl,%bl
118 movzbl %bl,%ebx
139 addb %bl,%cl
150 addb %dl,%bl
154 movzbl %bl,%ebx
175 addb %bl,%cl
[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 …]
/dflybsd-src/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 …]
/dflybsd-src/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()
/dflybsd-src/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 …]
/dflybsd-src/crypto/libressl/crypto/evp/
H A Devp_enc.c299 int i, j, bl; in EVP_EncryptUpdate() local
328 bl = ctx->cipher->block_size; in EVP_EncryptUpdate()
329 if ((size_t)bl > sizeof(ctx->buf)) { in EVP_EncryptUpdate()
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()
354 if (!ctx->cipher->do_cipher(ctx, out, ctx->buf, bl)) in EVP_EncryptUpdate()
358 out += bl; in EVP_EncryptUpdate()
359 *outl = bl; in EVP_EncryptUpdate()
363 i = inl&(bl - 1); in EVP_EncryptUpdate()
[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
290 bl = ctx->cipher->block_size; in camellia_192_ecb_cipher()
292 if (inl < bl) in camellia_192_ecb_cipher()
295 inl -= bl; in camellia_192_ecb_cipher()
297 for (i = 0; i <= inl; i += bl) in camellia_192_ecb_cipher()
[all …]
/dflybsd-src/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()
/dflybsd-src/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()
/dflybsd-src/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