Home
last modified time | relevance | path

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

12345678910>>...12

/openbsd-src/lib/libc/arch/i386/string/
H A Dstrncmp.S28 movb (%eax),%bl
29 testb %bl,%bl
31 cmpb %bl,(%ecx)
38 movb (%eax),%bl
39 testb %bl,%bl
41 cmpb %bl,(%ecx)
48 movb (%eax),%bl
49 testb %bl,%bl
51 cmpb %bl,(%ecx)
58 movb (%eax),%bl
[all …]
H A Dstrrchr.S18 movb (%edx),%bl
19 cmpb %bl,%cl
24 testb %bl,%bl /* null terminator??? */
/openbsd-src/lib/libc/db/btree/
H A Dbt_utils.c63 BLEAF *bl; in __bt_ret() local
66 bl = GETBLEAF(e->page, e->index); in __bt_ret()
76 if (bl->flags & P_BIGKEY) { in __bt_ret()
77 if (__ovfl_get(t, bl->bytes, in __bt_ret()
82 if (bl->ksize > rkey->size) { in __bt_ret()
83 p = realloc(rkey->data, bl->ksize); in __bt_ret()
87 rkey->size = bl->ksize; in __bt_ret()
89 memmove(rkey->data, bl->bytes, bl->ksize); in __bt_ret()
90 key->size = bl->ksize; in __bt_ret()
93 key->size = bl->ksize; in __bt_ret()
[all …]
H A Dbt_debug.c145 BLEAF *bl; in __bt_dpage() local
194 bl = GETBLEAF(h, cur); in __bt_dpage()
195 if (bl->flags & P_BIGKEY) in __bt_dpage()
198 *(pgno_t *)bl->bytes, in __bt_dpage()
199 *(u_int32_t *)(bl->bytes + sizeof(pgno_t))); in __bt_dpage()
200 else if (bl->ksize) in __bt_dpage()
201 (void)fprintf(stderr, "%s/", bl->bytes); in __bt_dpage()
202 if (bl->flags & P_BIGDATA) in __bt_dpage()
205 *(pgno_t *)(bl->bytes + bl->ksize), in __bt_dpage()
206 *(u_int32_t *)(bl->bytes + bl->ksize + in __bt_dpage()
[all …]
H A Dbt_split.c77 BLEAF *bl, *tbl; in __bt_split() local
174 bl = GETBLEAF(rchild, 0); in __bt_split()
175 nbytes = NBINTERNAL(bl->ksize); in __bt_split()
176 if (t->bt_pfx && !(bl->flags & P_BIGKEY) && in __bt_split()
181 b.size = bl->ksize; in __bt_split()
182 b.data = bl->bytes; in __bt_split()
231 WR_BINTERNAL(dest, nksize ? nksize : bl->ksize, in __bt_split()
232 rchild->pgno, bl->flags & P_BIGKEY); in __bt_split()
233 memmove(dest, bl->bytes, nksize ? nksize : bl->ksize); in __bt_split()
234 if (bl->flags & P_BIGKEY && in __bt_split()
[all …]
/openbsd-src/sys/kern/
H A Dsubr_blist.c178 blist_t bl; in blist_create() local
200 bl = malloc(sizeof(struct blist), M_VMSWAP, M_WAITOK | M_ZERO); in blist_create()
202 bl->bl_blocks = blocks; in blist_create()
203 bl->bl_radix = radix; in blist_create()
204 bl->bl_skip = skip; in blist_create()
205 bl->bl_rootblks = 1 + in blist_create()
206 blst_radix_init(NULL, bl->bl_radix, bl->bl_skip, blocks); in blist_create()
207 bl->bl_root = mallocarray(bl->bl_rootblks, sizeof(blmeta_t), in blist_create()
214 bl->bl_blocks, in blist_create()
215 bl->bl_blocks * 4 / 1024, in blist_create()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dblock.c60 block_function (const struct block *bl) in block_function() argument
62 while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0) in block_function()
63 bl = BLOCK_SUPERBLOCK (bl); in block_function()
65 return BLOCK_FUNCTION (bl); in block_function()
79 struct blockvector *bl; in blockvector_for_pc_sect() local
89 bl = BLOCKVECTOR (symtab); in blockvector_for_pc_sect()
90 b = BLOCKVECTOR_BLOCK (bl, 0); in blockvector_for_pc_sect()
96 top = BLOCKVECTOR_NBLOCKS (bl); in blockvector_for_pc_sect()
101 b = BLOCKVECTOR_BLOCK (bl, bot + half); in blockvector_for_pc_sect()
112 b = BLOCKVECTOR_BLOCK (bl, bot); in blockvector_for_pc_sect()
[all …]
H A Dblock.h114 #define BLOCK_START(bl) (bl)->startaddr argument
115 #define BLOCK_END(bl) (bl)->endaddr argument
116 #define BLOCK_FUNCTION(bl) (bl)->function argument
117 #define BLOCK_SUPERBLOCK(bl) (bl)->superblock argument
118 #define BLOCK_GCC_COMPILED(bl) (bl)->gcc_compile_flag argument
119 #define BLOCK_DICT(bl) (bl)->dict argument
120 #define BLOCK_NAMESPACE(bl) (bl)->language_specific.cplus_specific.namespace argument
H A Dblockframe.c84 struct block *bl; in get_pc_function_start() local
87 bl = block_for_pc (pc); in get_pc_function_start()
88 if (bl) in get_pc_function_start()
90 struct symbol *symbol = block_function (bl); in get_pc_function_start()
94 bl = SYMBOL_BLOCK_VALUE (symbol); in get_pc_function_start()
95 return BLOCK_START (bl); in get_pc_function_start()
116 struct block *bl = get_frame_block (frame, 0); in get_frame_function() local
117 if (bl == 0) in get_frame_function()
119 return block_function (bl); in get_frame_function()
/openbsd-src/libexec/spamd-setup/
H A Dspamd-setup.c53 struct bl { struct
62 struct bl *bl; argument
74 int parse_netblock(char *, struct bl *, struct bl *, int);
80 struct bl *add_blacklist(struct bl *, size_t *, size_t *, gzFile, int);
82 struct cidr *collapse_blacklist(struct bl *, size_t, u_int *);
184 parse_netblock(char *buf, struct bl *start, struct bl *end, int white) in parse_netblock()
467 struct bl *
468 add_blacklist(struct bl *bl, size_t *blc, size_t *bls, gzFile gzf, int white) in add_blacklist() argument
472 struct bl *blt; in add_blacklist()
503 blt = reallocarray(bl, *bls, sizeof(struct bl)); in add_blacklist()
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dlonglong.h161 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
168 "rIJ" ((USItype) (bl)))
169 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
176 "rIJ" ((USItype) (bl)))
190 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
197 "rI" ((USItype) (bl)) __CLOBBER_CC)
198 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
205 "rI" ((USItype) (bl)) __CLOBBER_CC)
231 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
238 "rM" ((USItype) (bl)))
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dlonglong.h166 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
173 "rIJ" ((USItype) (bl)))
174 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
181 "rIJ" ((USItype) (bl)))
195 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
202 "rI" ((USItype) (bl)))
203 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \ argument
210 "rI" ((USItype) (bl)))
236 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \ argument
243 "rM" ((USItype) (bl)))
[all …]
H A Dunroll.c251 struct iv_class *bl; local
1188 for (bl = ivs->list; bl; bl = bl->next)
1190 if (REGNO (bl->biv->src_reg) != bl->regno)
1191 map->reg_map[bl->regno] = bl->biv->src_reg;
1194 for (v = bl->giv; v; v = v->next_iv)
1195 if (REGNO (v->src_reg) != bl->regno)
1847 struct iv_class *bl; local
1852 bl = REG_IV_CLASS (ivs, REGNO (v->src_reg));
1864 for (tv = bl->giv; tv; tv = tv->next_iv)
2471 biv_total_increment (bl) in biv_total_increment() argument
[all …]
H A Dloop.c3812 struct iv_class *bl; local
3843 for (bl = ivs->list; bl; bl = bl->next)
3845 struct induction *biv = bl->biv, *biv1;
3892 for (iv = bl->giv; iv; iv = iv->next_iv)
3957 temp = copy_rtx (bl->initial_value);
3997 info[i].class = bl;
4017 info[num_prefetches].class = bl;
4448 struct iv_class *bl, **backbl; local
4456 for (backbl = &ivs->list, bl = *backbl; bl; bl = bl->next)
4458 if (REG_IV_TYPE (ivs, bl->regno) != BASIC_INDUCT
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20020402-3.c39 struct blockvector *bl; in blockvector_for_pc_sect() local
41 bl = symtab->blockvector; in blockvector_for_pc_sect()
42 b = bl->block[0]; in blockvector_for_pc_sect()
45 top = bl->nblocks; in blockvector_for_pc_sect()
50 b = bl->block[bot + half]; in blockvector_for_pc_sect()
59 b = bl->block[bot]; in blockvector_for_pc_sect()
62 return bl; in blockvector_for_pc_sect()
/openbsd-src/usr.bin/dig/lib/isc/
H A Dbufferlist.c28 isc_bufferlist_usedcount(isc_bufferlist_t *bl) { in isc_bufferlist_usedcount() argument
32 REQUIRE(bl != NULL); in isc_bufferlist_usedcount()
35 buffer = ISC_LIST_HEAD(*bl); in isc_bufferlist_usedcount()
45 isc_bufferlist_availablecount(isc_bufferlist_t *bl) { in isc_bufferlist_availablecount() argument
49 REQUIRE(bl != NULL); in isc_bufferlist_availablecount()
52 buffer = ISC_LIST_HEAD(*bl); in isc_bufferlist_availablecount()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/rs6000/
H A Deabi.asm146 bl .Laddr /* get current address */
167 bl FUNC_NAME(__eabi_convert) /* convert pointers in .got2 section */
173 bl FUNC_NAME(__eabi_convert) /* convert constructors */
179 bl FUNC_NAME(__eabi_convert) /* convert destructors */
185 bl FUNC_NAME(__eabi_convert) /* convert exceptions */
191 bl FUNC_NAME(__eabi_convert) /* convert lower GOT */
197 bl FUNC_NAME(__eabi_convert) /* convert lower GOT */
205 bl FUNC_NAME(__eabi_uconvert) /* convert user initialized pointers */
/openbsd-src/gnu/gcc/gcc/config/rs6000/
H A Deabi.asm146 bl .Laddr /* get current address */
167 bl FUNC_NAME(__eabi_convert) /* convert pointers in .got2 section */
173 bl FUNC_NAME(__eabi_convert) /* convert constructors */
179 bl FUNC_NAME(__eabi_convert) /* convert destructors */
185 bl FUNC_NAME(__eabi_convert) /* convert exceptions */
191 bl FUNC_NAME(__eabi_convert) /* convert lower GOT */
197 bl FUNC_NAME(__eabi_convert) /* convert lower GOT */
205 bl FUNC_NAME(__eabi_uconvert) /* convert user initialized pointers */
/openbsd-src/gnu/usr.bin/gcc/gcc/config/sparc/
H A Dlb1spc.asm215 bl end_regular_divide
223 bl 1f
252 bl L1.16
257 bl L2.17
262 bl L3.19
267 bl L4.23
285 bl L4.21
302 bl L3.17
307 bl L4.19
324 bl L4.17
[all …]
/openbsd-src/gnu/gcc/gcc/config/sparc/
H A Dlb1spc.asm215 bl end_regular_divide
223 bl 1f
252 bl L1.16
257 bl L2.17
262 bl L3.19
267 bl L4.23
285 bl L4.21
302 bl L3.17
307 bl L4.19
324 bl L4.17
[all …]
/openbsd-src/sys/arch/arm64/arm64/
H A Dlocore0.S58 bl drop_to_el1
77 bl get_virt_delta
93 bl create_pagetables
102 bl start_mmu
159 bl initarm
160 bl main
233 bl build_l2_block_pagetable
242 bl link_l1_pagetable
255 bl build_l2_block_pagetable
264 bl link_l1_pagetable
[all …]
H A Dexception.S135 bl ast
162 bl do_el1h_sync
173 bl arm_cpu_irq
184 bl arm_cpu_fiq
195 bl do_el1h_error
214 bl do_el0_sync
226 bl arm_cpu_irq
238 bl arm_cpu_fiq
250 bl do_el0_error
/openbsd-src/sys/dev/pci/drm/display/
H A Ddrm_dp_helper.c3477 int drm_edp_backlight_set_level(struct drm_dp_aux *aux, const struct drm_edp_backlight_info *bl, in drm_edp_backlight_set_level() argument
3484 if (!bl->aux_set) in drm_edp_backlight_set_level()
3487 if (bl->lsb_reg_used) { in drm_edp_backlight_set_level()
3507 drm_edp_backlight_set_enable(struct drm_dp_aux *aux, const struct drm_edp_backlight_info *bl, in drm_edp_backlight_set_enable() argument
3514 if (!bl->aux_enable) in drm_edp_backlight_set_enable()
3556 int drm_edp_backlight_enable(struct drm_dp_aux *aux, const struct drm_edp_backlight_info *bl, in drm_edp_backlight_enable() argument
3562 if (bl->aux_set) in drm_edp_backlight_enable()
3567 if (bl->pwmgen_bit_count) { in drm_edp_backlight_enable()
3568 ret = drm_dp_dpcd_writeb(aux, DP_EDP_PWMGEN_BIT_COUNT, bl->pwmgen_bit_count); in drm_edp_backlight_enable()
3574 if (bl->pwm_freq_pre_divider) { in drm_edp_backlight_enable()
[all …]
/openbsd-src/sys/lib/libkern/arch/arm/
H A D__aeabi_ldivmod.S52 bl .Lnegate_b
67 bl __qdivrem
81 bl .Lnegate_a /* 1 means a only */
85 bl .Lnegate_a
88 bl .Lnegate_b /* negate it */
/openbsd-src/gnu/llvm/compiler-rt/lib/builtins/arm/
H A Daeabi_cfcmp.S30 bl __aeabi_cfcmpeq_check_nan
37 bl __aeabi_cfcmple
81 bl __aeabi_fcmplt
92 bl __aeabi_fcmpeq
110 bl __aeabi_fcmpeq

12345678910>>...12