HomeSort by: relevance | last modified time | path
    Searched refs:bl (Results 1 - 25 of 994) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/lgpl3/gmp/dist/mpn/generic/
jacobi_2.c 48 mp_limb_t ah, al, bh, bl; local
53 bl = bp[0];
56 ASSERT (bl & 1);
58 bl = ((bh << (GMP_NUMB_BITS - 1)) & GMP_NUMB_MASK) | (bl >> 1);
61 if ( (bh | bl) == 0)
71 bit ^= GMP_NUMB_BITS & (bl ^ (bl >> 1));
74 bit ^= c & (bl ^ (bl >> 1))
175 mp_limb_t ah, al, bh, bl; local
    [all...]
  /src/lib/libc/arch/i386/string/
strncmp.S 31 movb (%eax),%bl
32 testb %bl,%bl
34 cmpb %bl,(%ecx)
41 movb (%eax),%bl
42 testb %bl,%bl
44 cmpb %bl,(%ecx)
51 movb (%eax),%bl
52 testb %bl,%b
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
bufferlist.h 53 isc_bufferlist_usedcount(isc_bufferlist_t *bl);
56 * the buffer list 'bl'
60 *\li 'bl' is not NULL.
67 isc_bufferlist_availablecount(isc_bufferlist_t *bl);
70 * in the buffer list 'bl'
74 *\li 'bl' is not NULL.
  /src/crypto/external/apache2/openssl/dist/crypto/cmac/
cmac.c 41 static void make_kn(unsigned char *k1, const unsigned char *l, int bl)
47 for (i = 0; i < bl - 1; i++, c = cnext)
51 k1[i] = (c << 1) ^ ((0 - carry) & (bl == 16 ? 0x87 : 0x1b));
95 int bl; local
99 if ((bl = EVP_CIPHER_CTX_get_block_size(in->cctx)) == 0)
103 memcpy(out->k1, in->k1, bl);
104 memcpy(out->k2, in->k2, bl);
105 memcpy(out->tbl, in->tbl, bl);
106 memcpy(out->last_block, in->last_block, bl);
146 int bl; local
182 int bl; local
249 int i, bl, lb; local
    [all...]
  /src/external/bsd/blocklist/lib/
blocklist.c 41 #include <bl.h>
53 struct blocklist *bl; local
55 if ((bl = blocklist_open()) == NULL)
57 rv = blocklist_sa_r(bl, action, rfd, sa, salen, msg);
58 blocklist_close(bl);
63 blocklist_sa_r(struct blocklist *bl, int action, int rfd,
86 return bl_send(bl, internal_action, rfd, sa, slen, msg);
96 blocklist_r(struct blocklist *bl, int action, int rfd, const char *msg)
98 return blocklist_sa_r(bl, action, rfd, NULL, 0, msg);
114 blocklist_close(struct blocklist *bl)
    [all...]
  /src/common/lib/libc/arch/i386/string/
strcpy.S 38 movb (%eax),%bl
40 movb %bl,(%ecx)
42 testb %bl,%bl
62 movb %bl,(%ecx)
64 testb %bl,%bl
73 movb %bl,(%ecx)
75 testb %bl,%bl
    [all...]
strcat.S 51 testb %bl,%bl /* 1st byte == 0? */
62 testb %bl,%bl /* 3rd byte == 0? */
79 movb (%eax),%bl
81 movb %bl,(%ecx)
83 testb %bl,%bl
103 movb %bl,(%ecx)
105 testb %bl,%b
    [all...]
strchr.S 25 movb (%eax),%bl
26 cmpb %cl,%bl
28 testb %bl,%bl
65 cmpb %cl,%bl /* 1st byte == ch? */
69 1: testb %bl,%bl /* 1st byte == 0? */
80 cmpb %cl,%bl /* 3rd byte == ch? */
84 1: testb %bl,%bl /* 3rd byte == 0? *
    [all...]
strrchr.S 29 movb (%edx),%bl
30 cmpb %cl,%bl
33 1: testb %bl,%bl
65 cmpb %cl,%bl /* 1st byte == ch? */
68 1: testb %bl,%bl /* 1st byte == 0? */
78 cmpb %cl,%bl /* 3rd byte == ch? */
81 1: testb %bl,%bl /* 3rd byte == 0? *
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/
bufferlist.c 25 isc_bufferlist_usedcount(isc_bufferlist_t *bl) {
29 REQUIRE(bl != NULL);
32 buffer = ISC_LIST_HEAD(*bl);
43 isc_bufferlist_availablecount(isc_bufferlist_t *bl) {
47 REQUIRE(bl != NULL);
50 buffer = ISC_LIST_HEAD(*bl);
  /src/crypto/external/bsd/openssl/dist/crypto/cmac/
cmac.c 39 static void make_kn(unsigned char *k1, const unsigned char *l, int bl)
45 for (i = 0; i < bl - 1; i++, c = cnext)
49 k1[i] = (c << 1) ^ ((0 - carry) & (bl == 16 ? 0x87 : 0x1b));
95 int bl; local
99 if ((bl = EVP_CIPHER_CTX_get_block_size(in->cctx)) < 0)
103 memcpy(out->k1, in->k1, bl);
104 memcpy(out->k2, in->k2, bl);
105 memcpy(out->tbl, in->tbl, bl);
106 memcpy(out->last_block, in->last_block, bl);
136 int bl; local
166 int bl; local
208 int i, bl, lb; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/cmac/
cmac.c 33 static void make_kn(unsigned char *k1, const unsigned char *l, int bl)
39 for (i = 0; i < bl - 1; i++, c = cnext)
43 k1[i] = (c << 1) ^ ((0 - carry) & (bl == 16 ? 0x87 : 0x1b));
89 int bl; local
94 bl = EVP_CIPHER_CTX_block_size(in->cctx);
95 memcpy(out->k1, in->k1, bl);
96 memcpy(out->k2, in->k2, bl);
97 memcpy(out->tbl, in->tbl, bl);
98 memcpy(out->last_block, in->last_block, bl);
127 int bl; local
156 size_t bl; local
195 int i, bl, lb; local
    [all...]
  /src/external/lgpl3/gmp/dist/tune/
hgcd2.c 40 mpn_hgcd2 (mp_limb_t ah, mp_limb_t al, mp_limb_t bh, mp_limb_t bl,
43 return hgcd2_func(ah, al, bh, bl, M);
  /src/lib/libc/db/btree/
bt_utils.c 71 BLEAF *bl; local
74 bl = GETBLEAF(e->page, e->index);
84 if (bl->flags & P_BIGKEY) {
85 if (__ovfl_get(t, bl->bytes,
90 if (bl->ksize > rkey->size) {
91 p = realloc(rkey->data, bl->ksize);
95 rkey->size = bl->ksize;
97 memmove(rkey->data, bl->bytes, bl->ksize);
98 key->size = bl->ksize
151 BLEAF *bl; local
    [all...]
  /src/sys/dev/bi/
bi.c 81 const struct bi_list *bl; local
85 for (bl = &bi_list[0]; bl->bl_nr; bl++)
86 if (bl->bl_nr == nr)
90 if (bl->bl_nr == 0)
93 aprint_normal(bl->bl_name);
97 if (bl->bl_havedriver & DT_VEC)
106 if (bl->bl_havedriver & DT_QUIET)
108 return bl->bl_havedriver & DT_QUIET ? QUIET
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
blockframe.c 57 const struct block *bl; local
66 bl = block_for_pc (pc);
67 if (bl == NULL)
74 if (bl->inlined_p ())
77 bl = bl->superblock ();
78 gdb_assert (bl != NULL);
81 return bl;
87 const struct block *bl; local
89 bl = block_for_pc (pc)
118 const struct block *bl = get_frame_block (frame, 0); local
158 const block *bl = block_for_pc_sect (pc, section); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
blockframe.c 57 const struct block *bl; local
66 bl = block_for_pc (pc);
67 if (bl == NULL)
74 if (bl->inlined_p ())
77 bl = bl->superblock ();
78 gdb_assert (bl != NULL);
81 return bl;
87 const struct block *bl; local
90 bl = block_for_pc (pc)
119 const struct block *bl = get_frame_block (frame, 0); local
159 const block *bl = block_for_pc_sect (pc, section); local
    [all...]
  /src/external/nvidia-firmware/nouveau/gm200/acr/
Makefile 7 FILES+= ${.CURDIR}/../../dist/gm200/acr/bl.bin
13 SYMLINKS+= ${FIRMWAREDIR}/nouveau/nvidia/gm200/acr/bl.bin \
14 ${FIRMWAREDIR}/nouveau/nvidia/gm204/acr/bl.bin
20 SYMLINKS+= ${FIRMWAREDIR}/nouveau/nvidia/gm200/acr/bl.bin \
21 ${FIRMWAREDIR}/nouveau/nvidia/gm206/acr/bl.bin
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_common_interceptors_vfork_aarch64.inc.S 15 bl COMMON_INTERCEPTOR_SPILL_AREA
31 bl COMMON_INTERCEPTOR_HANDLE_VFORK
35 bl COMMON_INTERCEPTOR_SPILL_AREA
sanitizer_common_interceptors_vfork_arm.inc.S 13 bl COMMON_INTERCEPTOR_SPILL_AREA
31 bl COMMON_INTERCEPTOR_HANDLE_VFORK
35 bl COMMON_INTERCEPTOR_SPILL_AREA
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_common_interceptors_vfork_aarch64.inc.S 15 bl COMMON_INTERCEPTOR_SPILL_AREA
31 bl COMMON_INTERCEPTOR_HANDLE_VFORK
35 bl COMMON_INTERCEPTOR_SPILL_AREA
sanitizer_common_interceptors_vfork_arm.inc.S 13 bl COMMON_INTERCEPTOR_SPILL_AREA
31 bl COMMON_INTERCEPTOR_HANDLE_VFORK
35 bl COMMON_INTERCEPTOR_SPILL_AREA
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_backlight.c 57 struct nouveau_backlight *bl)
66 bl->id = nb;
230 struct nouveau_backlight *bl; local
275 bl = kzalloc(sizeof(*bl), GFP_KERNEL);
276 if (!bl)
279 if (!nouveau_get_backlight_name(backlight_name, bl)) {
284 bl->dev = backlight_device_register(backlight_name, connector->kdev,
286 if (IS_ERR(bl->dev)) {
287 if (bl->id >= 0
308 struct nouveau_backlight *bl = nv_conn->backlight; local
    [all...]
  /src/crypto/dist/ipsec-tools/src/racoon/
misc.c 72 bit2str(int n, int bl)
78 if (bl > MAXBITLEN)
80 memset(b, '0', bl);
81 b[bl] = '\0';
83 for (i = 0; i < bl; i++) {
85 b[bl - 1 - i] = '1';
  /src/common/lib/libc/arch/aarch64/string/
strcat.S 47 bl _C_LABEL(strlen) /* find length of dst */
51 bl _C_LABEL(strcpy) /* append string */

Completed in 37 milliseconds

1 2 3 4 5 6 7 8 91011>>