Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 1763) sorted by relevance

12345678910>>...71

/dflybsd-src/sys/dev/sound/pcm/
H A Dbuffer.c45 struct snd_dbuf *b; in sndbuf_create() local
56 sndbuf_destroy(struct snd_dbuf *b) in sndbuf_destroy()
71 struct snd_dbuf *b = (struct snd_dbuf *)arg; in sndbuf_setmap() local
90 sndbuf_alloc(struct snd_dbuf *b, bus_dma_tag_t dmatag, int dmaflags, in sndbuf_alloc()
120 sndbuf_setup(struct snd_dbuf *b, void *buf, unsigned int size) in sndbuf_setup()
132 sndbuf_free(struct snd_dbuf *b) in sndbuf_free()
161 sndbuf_resize(struct snd_dbuf *b, unsigned int blkcnt, unsigned int blksz) in sndbuf_resize()
211 sndbuf_remalloc(struct snd_dbuf *b, unsigned int blkcnt, unsigned int blksz) in sndbuf_remalloc()
267 sndbuf_clear(struct snd_dbuf *b, unsigned int length) in sndbuf_clear()
296 sndbuf_fillsilence(struct snd_dbuf *b) in sndbuf_fillsilence()
[all …]
/dflybsd-src/crypto/libressl/include/openssl/
H A Dbio.h212 #define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) argument
213 #define BIO_set_retry_special(b) \ argument
215 #define BIO_set_retry_read(b) \ argument
217 #define BIO_set_retry_write(b) \ argument
221 #define BIO_clear_retry_flags(b) \ argument
223 #define BIO_get_retry_flags(b) \ argument
386 #define BIO_set_conn_hostname(b,name) BIO_ctrl(b,BIO_C_SET_CONNECT,0,(char *)name) argument
387 #define BIO_set_conn_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,1,(char *)port) argument
388 #define BIO_set_conn_ip(b,ip) BIO_ctrl(b,BIO_C_SET_CONNECT,2,(char *)ip) argument
389 #define BIO_set_conn_int_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,3,(char *)port) argument
[all …]
/dflybsd-src/contrib/grep/lib/
H A Dintprops.h108 #define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485) argument
162 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \ argument
169 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \ argument
185 #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \ argument
200 #define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, max) \ argument
208 #define INT_REMAINDER_RANGE_OVERFLOW(a, b, min, max) \ argument
218 #define INT_LEFT_SHIFT_RANGE_OVERFLOW(a, b, min, max) \ argument
250 # define _GL_ADD_OVERFLOW(a, b, min, max) \ argument
252 # define _GL_SUBTRACT_OVERFLOW(a, b, min, max) \ argument
254 # define _GL_MULTIPLY_OVERFLOW(a, b, min, max) \ argument
[all …]
/dflybsd-src/sys/dev/drm/i915/
H A Dintel_breadcrumbs.c30 static unsigned int __intel_breadcrumbs_wakeup(struct intel_breadcrumbs *b) in __intel_breadcrumbs_wakeup()
49 struct intel_breadcrumbs *b = &engine->breadcrumbs; in intel_engine_wakeup() local
81 struct intel_breadcrumbs *b = &engine->breadcrumbs; in intel_breadcrumbs_hangcheck() local
116 struct intel_breadcrumbs *b = &engine->breadcrumbs; in intel_breadcrumbs_fake_irq() local
172 struct intel_breadcrumbs *b = &engine->breadcrumbs; in __intel_engine_disarm_breadcrumbs() local
187 struct intel_breadcrumbs *b = &engine->breadcrumbs; in intel_engine_disarm_breadcrumbs() local
223 static bool use_fake_irq(const struct intel_breadcrumbs *b) in use_fake_irq()
240 static void enable_fake_irq(struct intel_breadcrumbs *b) in enable_fake_irq()
249 static bool __intel_breadcrumbs_enable_irq(struct intel_breadcrumbs *b) in __intel_breadcrumbs_enable_irq()
301 static inline void __intel_breadcrumbs_finish(struct intel_breadcrumbs *b, in __intel_breadcrumbs_finish()
[all …]
/dflybsd-src/sys/sys/
H A Dlibkern.h69 static __inline int imax(int a, int b) { return (a > b ? a : b); } in imax()
70 static __inline int imin(int a, int b) { return (a < b ? a : b); } in imin()
71 static __inline long lmax(long a, long b) { return (a > b ? a : b); } in lmax()
72 static __inline long lmin(long a, long b) { return (a < b ? a : b); } in lmin()
73 static __inline u_int umax(u_int a, u_int b) { return (a > b ? a : b); } in umax()
74 static __inline u_int umin(u_int a, u_int b) { return (a < b ? a : b); } in umin()
75 static __inline u_int max(u_int a, u_int b) { return (a > b ? a : b); } in max()
76 static __inline u_int min(u_int a, u_int b) { return (a < b ? a : b); } in min()
77 static __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); } in qmax()
78 static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); } in qmin()
[all …]
/dflybsd-src/crypto/libressl/crypto/bio/
H A Dbio_lib.c78 bio_call_callback(BIO *b, int oper, const char *argp, size_t len, int argi, in bio_call_callback()
255 BIO_clear_flags(BIO *b, int flags) in BIO_clear_flags()
261 BIO_test_flags(const BIO *b, int flags) in BIO_test_flags()
267 BIO_set_flags(BIO *b, int flags) in BIO_set_flags()
273 BIO_get_callback(const BIO *b) in BIO_get_callback()
279 BIO_set_callback(BIO *b, BIO_callback_fn cb) in BIO_set_callback()
285 BIO_get_callback_ex(const BIO *b) in BIO_get_callback_ex()
291 BIO_set_callback_ex(BIO *b, BIO_callback_fn_ex cb) in BIO_set_callback_ex()
297 BIO_set_callback_arg(BIO *b, char *arg) in BIO_set_callback_arg()
303 BIO_get_callback_arg(const BIO *b) in BIO_get_callback_arg()
[all …]
/dflybsd-src/bin/ls/
H A Dcmp.c46 namecmp(const FTSENT *a, const FTSENT *b) in namecmp()
52 revnamecmp(const FTSENT *a, const FTSENT *b) in revnamecmp()
58 modcmp(const FTSENT *a, const FTSENT *b) in modcmp()
76 revmodcmp(const FTSENT *a, const FTSENT *b) in revmodcmp()
82 acccmp(const FTSENT *a, const FTSENT *b) in acccmp()
100 revacccmp(const FTSENT *a, const FTSENT *b) in revacccmp()
106 sizecmp(const FTSENT *a, const FTSENT *b) in sizecmp()
118 revsizecmp(const FTSENT *a, const FTSENT *b) in revsizecmp()
124 statcmp(const FTSENT *a, const FTSENT *b) in statcmp()
142 revstatcmp(const FTSENT *a, const FTSENT *b) in revstatcmp()
/dflybsd-src/crypto/libressl/crypto/
H A Dconstant_time_locl.h134 static inline unsigned int constant_time_lt(unsigned int a, unsigned int b) in constant_time_lt()
139 static inline unsigned char constant_time_lt_8(unsigned int a, unsigned int b) in constant_time_lt_8()
144 static inline unsigned int constant_time_ge(unsigned int a, unsigned int b) in constant_time_ge()
149 static inline unsigned char constant_time_ge_8(unsigned int a, unsigned int b) in constant_time_ge_8()
164 static inline unsigned int constant_time_eq(unsigned int a, unsigned int b) in constant_time_eq()
169 static inline unsigned char constant_time_eq_8(unsigned int a, unsigned int b) in constant_time_eq_8()
174 static inline unsigned int constant_time_eq_int(int a, int b) in constant_time_eq_int()
179 static inline unsigned char constant_time_eq_int_8(int a, int b) in constant_time_eq_int_8()
186 unsigned int b) in constant_time_select()
193 unsigned char b) in constant_time_select_8()
[all …]
/dflybsd-src/contrib/gcc-4.7/include/
H A Dsymcat.h23 #define CONCAT2(a,b) a##b argument
24 #define CONCAT3(a,b,c) a##b##c argument
25 #define CONCAT4(a,b,c,d) a##b##c##d argument
26 #define CONCAT5(a,b,c,d,e) a##b##c##d##e argument
27 #define CONCAT6(a,b,c,d,e,f) a##b##c##d##e##f argument
34 #define CONCAT2(a,b) a/**/b argument
35 #define CONCAT3(a,b,c) a/**/b/**/c argument
36 #define CONCAT4(a,b,c,d) a/**/b/**/c/**/d argument
37 #define CONCAT5(a,b,c,d,e) a/**/b/**/c/**/d/**/e argument
38 #define CONCAT6(a,b,c,d,e,f) a/**/b/**/c/**/d/**/e/**/f argument
[all …]
/dflybsd-src/contrib/gdb-7/include/
H A Dsymcat.h23 #define CONCAT2(a,b) a##b argument
24 #define CONCAT3(a,b,c) a##b##c argument
25 #define CONCAT4(a,b,c,d) a##b##c##d argument
26 #define CONCAT5(a,b,c,d,e) a##b##c##d##e argument
27 #define CONCAT6(a,b,c,d,e,f) a##b##c##d##e##f argument
34 #define CONCAT2(a,b) a/**/b argument
35 #define CONCAT3(a,b,c) a/**/b/**/c argument
36 #define CONCAT4(a,b,c,d) a/**/b/**/c/**/d argument
37 #define CONCAT5(a,b,c,d,e) a/**/b/**/c/**/d/**/e argument
38 #define CONCAT6(a,b,c,d,e,f) a/**/b/**/c/**/d/**/e/**/f argument
[all …]
/dflybsd-src/contrib/binutils-2.27/include/
H A Dsymcat.h23 #define CONCAT2(a,b) a##b argument
24 #define CONCAT3(a,b,c) a##b##c argument
25 #define CONCAT4(a,b,c,d) a##b##c##d argument
26 #define CONCAT5(a,b,c,d,e) a##b##c##d##e argument
27 #define CONCAT6(a,b,c,d,e,f) a##b##c##d##e##f argument
34 #define CONCAT2(a,b) a/**/b argument
35 #define CONCAT3(a,b,c) a/**/b/**/c argument
36 #define CONCAT4(a,b,c,d) a/**/b/**/c/**/d argument
37 #define CONCAT5(a,b,c,d,e) a/**/b/**/c/**/d/**/e argument
38 #define CONCAT6(a,b,c,d,e,f) a/**/b/**/c/**/d/**/e/**/f argument
[all …]
/dflybsd-src/contrib/binutils-2.34/include/
H A Dsymcat.h23 #define CONCAT2(a,b) a##b argument
24 #define CONCAT3(a,b,c) a##b##c argument
25 #define CONCAT4(a,b,c,d) a##b##c##d argument
26 #define CONCAT5(a,b,c,d,e) a##b##c##d##e argument
27 #define CONCAT6(a,b,c,d,e,f) a##b##c##d##e##f argument
34 #define CONCAT2(a,b) a/**/b argument
35 #define CONCAT3(a,b,c) a/**/b/**/c argument
36 #define CONCAT4(a,b,c,d) a/**/b/**/c/**/d argument
37 #define CONCAT5(a,b,c,d,e) a/**/b/**/c/**/d/**/e argument
38 #define CONCAT6(a,b,c,d,e,f) a/**/b/**/c/**/d/**/e/**/f argument
[all …]
/dflybsd-src/bin/expr/
H A Dexpr.y285 op_or(struct val *a, struct val *b) in op_or()
297 op_and(struct val *a, struct val *b) in op_and()
310 op_eq(struct val *a, struct val *b) in op_eq()
330 op_gt(struct val *a, struct val *b) in op_gt()
350 op_lt(struct val *a, struct val *b) in op_lt()
370 op_ge(struct val *a, struct val *b) in op_ge()
390 op_le(struct val *a, struct val *b) in op_le()
410 op_ne(struct val *a, struct val *b) in op_ne()
430 chk_plus(quad_t a, quad_t b, quad_t r) in chk_plus()
443 op_plus(struct val *a, struct val *b) in op_plus()
[all …]
/dflybsd-src/sys/netinet/
H A Dtcp_seq.h79 #define SEQ_LT(a,b) ((int)((a)-(b)) < 0) argument
80 #define SEQ_LEQ(a,b) ((int)((a)-(b)) <= 0) argument
81 #define SEQ_GT(a,b) ((int)((a)-(b)) > 0) argument
82 #define SEQ_GEQ(a,b) ((int)((a)-(b)) >= 0) argument
85 seq_max(tcp_seq a, tcp_seq b) in seq_max()
91 seq_min(tcp_seq a, tcp_seq b) in seq_min()
97 #define TSTMP_LT(a,b) ((int)((a)-(b)) < 0) argument
98 #define TSTMP_GT(a,b) ((int)((a)-(b)) > 0) argument
99 #define TSTMP_GEQ(a,b) ((int)((a)-(b)) >= 0) argument
/dflybsd-src/usr.bin/tip/
H A Dtod.c35 int tod_cmp (const struct timeval *a, const struct timeval *b) in tod_cmp()
49 int tod_lt (const struct timeval *a, const struct timeval *b) in tod_lt()
54 int tod_gt (const struct timeval *a, const struct timeval *b) in tod_gt()
59 int tod_lte (const struct timeval *a, const struct timeval *b) in tod_lte()
64 int tod_gte (const struct timeval *a, const struct timeval *b) in tod_gte()
69 int tod_eq (const struct timeval *a, const struct timeval *b) in tod_eq()
77 void tod_addto (struct timeval *a, const struct timeval *b) in tod_addto()
87 void tod_subfrom (struct timeval *a, struct timeval b) in tod_subfrom()
/dflybsd-src/crypto/openssh/
H A Dbitmap.c54 bitmap_free(struct bitmap *b) in bitmap_free()
65 bitmap_zero(struct bitmap *b) in bitmap_zero()
72 bitmap_test_bit(struct bitmap *b, u_int n) in bitmap_test_bit()
82 reserve(struct bitmap *b, u_int n) in reserve()
101 bitmap_set_bit(struct bitmap *b, u_int n) in bitmap_set_bit()
117 retop(struct bitmap *b) in retop()
126 bitmap_clear_bit(struct bitmap *b, u_int n) in bitmap_clear_bit()
141 bitmap_nbits(struct bitmap *b) in bitmap_nbits()
162 bitmap_nbytes(struct bitmap *b) in bitmap_nbytes()
168 bitmap_to_string(struct bitmap *b, void *p, size_t l) in bitmap_to_string()
[all …]
/dflybsd-src/contrib/ncurses/include/
H A Dnc_tparm.h56 #define TPARM_9(a,b,c,d,e,f,g,h,i,j) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f)… argument
59 #define TPARM_8(a,b,c,d,e,f,g,h,i) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),T… argument
60 #define TPARM_7(a,b,c,d,e,f,g,h) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),TPA… argument
61 #define TPARM_6(a,b,c,d,e,f,g) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),TPARM… argument
62 #define TPARM_5(a,b,c,d,e,f) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f)) argument
63 #define TPARM_4(a,b,c,d,e) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e)) argument
64 #define TPARM_3(a,b,c,d) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d)) argument
65 #define TPARM_2(a,b,c) tparm(a,TPARM_N(b),TPARM_N(c)) argument
66 #define TPARM_1(a,b) tparm(a,TPARM_N(b)) argument
69 #define TPARM_8(a,b,c,d,e,f,g,h,i) TPARM_9(a,b,c,d,e,f,g,h,i,0) argument
[all …]
/dflybsd-src/contrib/awk/
H A Dparse.c50 Node *node1(int a, Node *b) in node1()
60 Node *node2(int a, Node *b, Node *c) in node2()
71 Node *node3(int a, Node *b, Node *c, Node *d) in node3()
83 Node *node4(int a, Node *b, Node *c, Node *d, Node *e) in node4()
96 Node *stat1(int a, Node *b) in stat1()
105 Node *stat2(int a, Node *b, Node *c) in stat2()
114 Node *stat3(int a, Node *b, Node *c, Node *d) in stat3()
123 Node *stat4(int a, Node *b, Node *c, Node *d, Node *e) in stat4()
132 Node *op1(int a, Node *b) in op1()
141 Node *op2(int a, Node *b, Node *c) in op2()
[all …]
/dflybsd-src/crypto/libressl/crypto/asn1/
H A Dbio_asn1.c149 asn1_bio_new(BIO *b) in asn1_bio_new()
173 asn1_bio_free(BIO *b) in asn1_bio_free()
189 asn1_bio_write(BIO *b, const char *in , int inl) in asn1_bio_write()
284 asn1_bio_flush_ex(BIO *b, BIO_ASN1_BUF_CTX *ctx, asn1_ps_func *cleanup, in asn1_bio_flush_ex()
312 asn1_bio_setup_ex(BIO *b, BIO_ASN1_BUF_CTX *ctx, asn1_ps_func *setup, in asn1_bio_setup_ex()
327 asn1_bio_read(BIO *b, char *in , int inl) in asn1_bio_read()
335 asn1_bio_puts(BIO *b, const char *str) in asn1_bio_puts()
341 asn1_bio_gets(BIO *b, char *str, int size) in asn1_bio_gets()
349 asn1_bio_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) in asn1_bio_callback_ctrl()
357 asn1_bio_ctrl(BIO *b, int cmd, long arg1, void *arg2) in asn1_bio_ctrl()
[all …]
/dflybsd-src/crypto/libressl/crypto/bn/
H A Dbn_blind.c192 BN_BLINDING_update(BN_BLINDING *b, BN_CTX *ctx) in BN_BLINDING_update()
225 BN_BLINDING_convert(BIGNUM *n, BN_BLINDING *b, BN_CTX *ctx) in BN_BLINDING_convert()
231 BN_BLINDING_convert_ex(BIGNUM *n, BIGNUM *r, BN_BLINDING *b, BN_CTX *ctx) in BN_BLINDING_convert_ex()
260 BN_BLINDING_invert(BIGNUM *n, BN_BLINDING *b, BN_CTX *ctx) in BN_BLINDING_invert()
266 BN_BLINDING_invert_ex(BIGNUM *n, const BIGNUM *r, BN_BLINDING *b, BN_CTX *ctx) in BN_BLINDING_invert_ex()
288 BN_BLINDING_get_thread_id(const BN_BLINDING *b) in BN_BLINDING_get_thread_id()
294 BN_BLINDING_set_thread_id(BN_BLINDING *b, unsigned long n) in BN_BLINDING_set_thread_id()
301 BN_BLINDING_thread_id(BN_BLINDING *b) in BN_BLINDING_thread_id()
307 BN_BLINDING_get_flags(const BN_BLINDING *b) in BN_BLINDING_get_flags()
313 BN_BLINDING_set_flags(BN_BLINDING *b, unsigned long flags) in BN_BLINDING_set_flags()
[all …]
/dflybsd-src/usr.bin/top/
H A Dos.h57 #define setbuffer(f, b, s) setvbuf((f), (b), (b) ? _IOFBF : _IONBF, (s)) argument
58 #define memzero(a, b) memset((a), 0, (b)) argument
61 #define strchr(a, b) index((a), (b)) argument
62 #define strrchr(a, b) rindex((a), (b)) argument
65 #define memzero(a, b) memset((a), 0, (b)) argument
67 #define memcpy(a, b, c) bcopy((b), (a), (c)) argument
68 #define memzero(a, b) bzero((a), (b)) argument
69 #define memcmp(a, b, c) bcmp((a), (b), (c)) argument
/dflybsd-src/sys/netgraph7/bluetooth/hci/
H A Dng_hci_var.h81 #define NG_HCI_BUFF_CMD_SET(b, v) (b).cmd_free = (v) argument
82 #define NG_HCI_BUFF_CMD_GET(b, v) (v) = (b).cmd_free argument
83 #define NG_HCI_BUFF_CMD_USE(b, v) (b).cmd_free -= (v) argument
85 #define NG_HCI_BUFF_ACL_USE(b, v) (b).acl_free -= (v) argument
86 #define NG_HCI_BUFF_ACL_FREE(b, v) \ argument
92 #define NG_HCI_BUFF_ACL_AVAIL(b, v) (v) = (b).acl_free argument
93 #define NG_HCI_BUFF_ACL_TOTAL(b, v) (v) = (b).acl_pkts argument
94 #define NG_HCI_BUFF_ACL_SIZE(b, v) (v) = (b).acl_size argument
95 #define NG_HCI_BUFF_ACL_SET(b, n, s, f) \ argument
102 #define NG_HCI_BUFF_SCO_USE(b, v) (b).sco_free -= (v) argument
[all …]
/dflybsd-src/contrib/gdb-7/gdb/
H A Dbreakpoint.c361 breakpoint_commands (struct breakpoint *b) in breakpoint_commands()
621 breakpoint_enabled (struct breakpoint *b) in breakpoint_enabled()
663 struct breakpoint *b; in clear_breakpoint_hit_counts() local
734 struct breakpoint *b; in get_breakpoint() local
749 mark_breakpoint_modified (struct breakpoint *b) in mark_breakpoint_modified()
875 struct bp_location *b = *(void **) bp; in bp_location_compare_addrs() local
918 set_breakpoint_condition (struct breakpoint *b, char *exp, in set_breakpoint_condition()
1003 struct breakpoint *b; in VEC() local
1040 struct breakpoint *b; in condition_command() local
1116 is_tracepoint (const struct breakpoint *b) in is_tracepoint()
[all …]
/dflybsd-src/sys/crypto/serpent/
H A Dserpent.c42 #define sb0(a,b,c,d,e,f,g,h) \ argument
61 #define ib0(a,b,c,d,e,f,g,h) \ argument
81 #define sb1(a,b,c,d,e,f,g,h) \ argument
100 #define ib1(a,b,c,d,e,f,g,h) \ argument
122 #define sb2(a,b,c,d,e,f,g,h) \ argument
143 #define ib2(a,b,c,d,e,f,g,h) \ argument
164 #define sb3(a,b,c,d,e,f,g,h) \ argument
212 #define ib3(a,b,c,d,e,f,g,h) \ argument
234 #define sb4(a,b,c,d,e,f,g,h) \ argument
254 #define ib4(a,b,c,d,e,f,g,h) \ argument
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Ddouble-int.c60 #define OVERFLOW_SUM_SIGN(a, b, sum) ((~((a) ^ (b)) & ((a) ^ (sum))) < 0) argument
819 double_int::mul_with_sign (double_int b, bool unsigned_p, bool *overflow) const in mul_with_sign()
830 double_int::wide_mul_with_sign (double_int b, bool unsigned_p, in wide_mul_with_sign()
867 double_int::add_with_sign (double_int b, bool unsigned_p, bool *overflow) const in add_with_sign()
903 double_int::sub_with_overflow (double_int b, bool *overflow) const in sub_with_overflow()
937 double_int::divmod_with_overflow (double_int b, bool uns, unsigned code, in divmod_with_overflow()
950 double_int::divmod (double_int b, bool uns, unsigned code, in divmod()
965 double_int::sdivmod (double_int b, unsigned code, double_int *mod) const in sdivmod()
973 double_int::udivmod (double_int b, unsigned code, double_int *mod) const in udivmod()
983 double_int::div (double_int b, bool uns, unsigned code) const in div()
[all …]

12345678910>>...71