Searched refs:bl (Results 1 - 25 of 195) sorted by relevance

12345678

/freebsd-9.3-release/lib/libc/i386/string/
H A Dstrncmp.S69 movb (%eax),%bl
70 testb %bl,%bl
72 cmpb %bl,(%ecx)
78 * movb n(%eax),%bl; testb %bl, %bl; je L3; cmpb n(%ecx); jne L3
80 * movb n(%eax),%bl; cmpb n(%ecx); jne L3; testb %bl,%bl; j
[all...]
H A Dindex.S42 * %bl - character at %edx
54 movb (%eax),%bl
55 cmpb %bl,%cl /* found char??? */
58 testb %bl,%bl /* null terminator??? */
H A Drindex.S42 * %bl - character at %edx
55 movb (%edx),%bl
56 cmpb %bl,%cl
61 testb %bl,%bl /* null terminator??? */
H A Dstrchr.S42 * %bl - character at %edx
54 movb (%eax),%bl
55 cmpb %bl,%cl /* found char??? */
58 testb %bl,%bl /* null terminator??? */
H A Dstrrchr.S42 * %bl - character at %edx
55 movb (%edx),%bl
56 cmpb %bl,%cl
61 testb %bl,%bl /* null terminator??? */
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dbufferlist.h57 isc_bufferlist_usedcount(isc_bufferlist_t *bl);
60 * the buffer list 'bl'
64 *\li 'bl' is not NULL.
71 isc_bufferlist_availablecount(isc_bufferlist_t *bl);
74 * the buffer list 'bl'
78 *\li 'bl' is not NULL.
/freebsd-9.3-release/lib/libc/arm/gen/
H A D_ctx_start.S8 bl _C_LABEL(ctx_done)
9 bl _C_LABEL(abort)
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dbufferlist.h57 isc_bufferlist_usedcount(isc_bufferlist_t *bl);
60 * the buffer list 'bl'
64 *\li 'bl' is not NULL.
71 isc_bufferlist_availablecount(isc_bufferlist_t *bl);
74 * the buffer list 'bl'
78 *\li 'bl' is not NULL.
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dblock.h114 #define BLOCK_START(bl) (bl)->startaddr
115 #define BLOCK_END(bl) (bl)->endaddr
116 #define BLOCK_FUNCTION(bl) (bl)->function
117 #define BLOCK_SUPERBLOCK(bl) (bl)->superblock
118 #define BLOCK_GCC_COMPILED(bl) (bl)
[all...]
H A Dblock.c60 block_function (const struct block *bl) argument
62 while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0)
63 bl = BLOCK_SUPERBLOCK (bl);
65 return BLOCK_FUNCTION (bl);
79 struct blockvector *bl; local
89 bl = BLOCKVECTOR (symtab);
90 b = BLOCKVECTOR_BLOCK (bl, 0);
96 top = BLOCKVECTOR_NBLOCKS (bl);
141 struct blockvector *bl; local
284 struct block *bl = obstack_alloc (obstack, sizeof (struct block)); local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dbufferlist.c31 isc_bufferlist_usedcount(isc_bufferlist_t *bl) { argument
35 REQUIRE(bl != NULL);
38 buffer = ISC_LIST_HEAD(*bl);
49 isc_bufferlist_availablecount(isc_bufferlist_t *bl) { argument
53 REQUIRE(bl != NULL);
56 buffer = ISC_LIST_HEAD(*bl);
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dbufferlist.c31 isc_bufferlist_usedcount(isc_bufferlist_t *bl) { argument
35 REQUIRE(bl != NULL);
38 buffer = ISC_LIST_HEAD(*bl);
49 isc_bufferlist_availablecount(isc_bufferlist_t *bl) { argument
53 REQUIRE(bl != NULL);
56 buffer = ISC_LIST_HEAD(*bl);
/freebsd-9.3-release/lib/libc/powerpc/gen/
H A D_ctx_start.S38 bl PIC_PLT(CNAME(_ctx_done)) /* branch to ctxt completion func */
43 bl PIC_PLT(CNAME(abort)) /* abort */
/freebsd-9.3-release/lib/libc/db/btree/
H A Dbt_utils.c67 BLEAF *bl; local
70 bl = GETBLEAF(e->page, e->index);
80 if (bl->flags & P_BIGKEY) {
81 if (__ovfl_get(t, bl->bytes,
86 if (bl->ksize > rkey->size) {
87 p = realloc(rkey->data, bl->ksize);
91 rkey->size = bl->ksize;
93 memmove(rkey->data, bl->bytes, bl->ksize);
94 key->size = bl
147 BLEAF *bl; local
[all...]
H A Dbt_debug.c151 BLEAF *bl; local
200 bl = GETBLEAF(h, cur);
201 if (bl->flags & P_BIGKEY)
204 *(pgno_t *)bl->bytes,
205 *(u_int32_t *)(bl->bytes + sizeof(pgno_t)));
206 else if (bl->ksize)
208 bl->ksize, bl->bytes);
209 if (bl->flags & P_BIGDATA)
212 *(pgno_t *)(bl
[all...]
/freebsd-9.3-release/lib/libc/powerpc64/gen/
H A D_ctx_start.S41 bl CNAME(_ctx_done) /* branch to ctxt completion func */
47 bl CNAME(abort) /* abort */
/freebsd-9.3-release/sys/kern/
H A Dsubr_blist.c161 blist_t bl; local
175 bl = malloc(sizeof(struct blist), M_SWAP, flags | M_ZERO);
177 bl->bl_blocks = blocks;
178 bl->bl_radix = radix;
179 bl->bl_skip = skip;
180 bl->bl_rootblks = 1 +
181 blst_radix_init(NULL, bl->bl_radix, bl->bl_skip, blocks);
182 bl->bl_root = malloc(sizeof(blmeta_t) * bl
201 blist_destroy(blist_t bl) argument
214 blist_alloc(blist_t bl, daddr_t count) argument
236 blist_free(blist_t bl, daddr_t blkno, daddr_t count) argument
255 blist_fill(blist_t bl, daddr_t blkno, daddr_t count) argument
306 blist_print(blist_t bl) argument
1002 blist_t bl; local
[all...]
/freebsd-9.3-release/sys/arm/arm/
H A Dcpufunc_asm_arm7tdmi.S51 bl _C_LABEL(arm7tdmi_cache_flushID)
57 bl _C_LABEL(arm7tdmi_tlb_flushID)
60 bl _C_LABEL(arm7tdmi_cache_flushID)
/freebsd-9.3-release/contrib/compiler-rt/lib/arm/
H A Daeabi_idivmod.S24 bl SYMBOL_NAME(__divmodsi4)
H A Daeabi_uidivmod.S25 bl SYMBOL_NAME(__udivmodsi4)
H A Dsync_synchronize.S28 bl _OSMemoryBarrier
/freebsd-9.3-release/contrib/ofed/libsdp/config/
H A Dlibsdp_indent46 # -bl Break after if line
70 eval indent -bad -bap -nbbb -nbbo -bl -bli0 -bls -cbi0 -ci3 -cli0 -ncs \
/freebsd-9.3-release/contrib/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 */
/freebsd-9.3-release/sys/crypto/blowfish/arch/i386/
H A Dbf_enc_686.S92 movb %cl, %bl
98 movb %cl, %bl
111 movb %dl, %bl
117 movb %dl, %bl
130 movb %cl, %bl
136 movb %cl, %bl
149 movb %dl, %bl
155 movb %dl, %bl
168 movb %cl, %bl
174 movb %cl, %bl
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dlonglong.h161 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
168 "rIJ" ((USItype) (bl)))
169 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
176 "rIJ" ((USItype) (bl)))
190 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
197 "rI" ((USItype) (bl)) __CLOBBER_CC)
198 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
205 "rI" ((USItype) (bl)) __CLOBBER_CC)
231 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
238 "rM" ((USItype) (bl)))
[all...]

Completed in 256 milliseconds

12345678