Home
last modified time | relevance | path

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

12345678910>>...77

/dragonfly/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()
132 sndbuf_free(struct snd_dbuf *b) in sndbuf_free()
331 sndbuf_reset(struct snd_dbuf *b) in sndbuf_reset()
346 sndbuf_getfmt(struct snd_dbuf *b) in sndbuf_getfmt()
370 sndbuf_getspd(struct snd_dbuf *b) in sndbuf_getspd()
412 sndbuf_getbps(struct snd_dbuf *b) in sndbuf_getbps()
418 sndbuf_getbuf(struct snd_dbuf *b) in sndbuf_getbuf()
432 sndbuf_getsize(struct snd_dbuf *b) in sndbuf_getsize()
450 sndbuf_runsz(struct snd_dbuf *b) in sndbuf_runsz()
[all …]
/dragonfly/crypto/libressl/include/openssl/
H A Dbio.h213 #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
459 #define BIO_get_num_renegotiates(b) \ argument
470 #define BIO_set_mem_eof_return(b,v) \ argument
518 #define BIO_dgram_recv_timedout(b) \ argument
520 #define BIO_dgram_send_timedout(b) \ argument
522 #define BIO_dgram_get_peer(b,peer) \ argument
[all …]
/dragonfly/contrib/grep/lib/
H A Dintprops.h335 #define INT_ADD_OVERFLOW(a, b) \ argument
337 #define INT_SUBTRACT_OVERFLOW(a, b) \ argument
345 #define INT_MULTIPLY_OVERFLOW(a, b) \ argument
347 #define INT_DIVIDE_OVERFLOW(a, b) \ argument
349 #define INT_REMAINDER_OVERFLOW(a, b) \ argument
351 #define INT_LEFT_SHIFT_OVERFLOW(a, b) \ argument
370 # define INT_ADD_WRAPV(a, b, r) \ argument
372 # define INT_SUBTRACT_WRAPV(a, b, r) \ argument
381 # define INT_MULTIPLY_WRAPV(a, b, r) \ argument
388 # define INT_MULTIPLY_WRAPV(a, b, r) \ argument
[all …]
/dragonfly/sys/dev/drm/i915/
H A Dintel_breadcrumbs.c49 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
324 struct intel_breadcrumbs *b = &engine->breadcrumbs; in __intel_breadcrumbs_next() local
343 struct intel_breadcrumbs *b = &engine->breadcrumbs; in __intel_engine_add_wait() local
449 struct intel_breadcrumbs *b = &engine->breadcrumbs; in intel_engine_add_wait() local
480 struct intel_breadcrumbs *b = &engine->breadcrumbs; in __intel_engine_remove_wait() local
541 struct intel_breadcrumbs *b = &engine->breadcrumbs; in intel_engine_remove_wait() local
[all …]
/dragonfly/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 …]
/dragonfly/crypto/libressl/crypto/bio/
H A Dbio_lib.c267 BIO_set_flags(BIO *b, int flags) in BIO_set_flags()
273 BIO_get_callback(const BIO *b) in BIO_get_callback()
309 BIO_method_name(const BIO *b) in BIO_method_name()
315 BIO_method_type(const BIO *b) in BIO_method_type()
616 BIO_push(BIO *b, BIO *bio) in BIO_push()
635 BIO_pop(BIO *b) in BIO_pop()
658 BIO *b, *last; in BIO_get_retry_BIO() local
709 BIO_next(BIO *b) in BIO_next()
717 BIO_set_next(BIO *b, BIO *next) in BIO_set_next()
725 BIO *b; in BIO_free_all() local
[all …]
/dragonfly/contrib/diffutils/lib/
H A Dintprops.h162 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \ argument
169 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \ argument
319 #define INT_ADD_OVERFLOW(a, b) \ argument
321 #define INT_SUBTRACT_OVERFLOW(a, b) \ argument
329 #define INT_MULTIPLY_OVERFLOW(a, b) \ argument
331 #define INT_DIVIDE_OVERFLOW(a, b) \ argument
333 #define INT_REMAINDER_OVERFLOW(a, b) \ argument
335 #define INT_LEFT_SHIFT_OVERFLOW(a, b) \ argument
350 #define INT_ADD_WRAPV(a, b, r) \ argument
352 #define INT_SUBTRACT_WRAPV(a, b, r) \ argument
[all …]
/dragonfly/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()
/dragonfly/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 …]
/dragonfly/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
42 #define XCONCAT2(a,b) CONCAT2(a,b) argument
43 #define XCONCAT3(a,b,c) CONCAT3(a,b,c) argument
[all …]
/dragonfly/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
42 #define XCONCAT2(a,b) CONCAT2(a,b) argument
43 #define XCONCAT3(a,b,c) CONCAT3(a,b,c) argument
[all …]
/dragonfly/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
42 #define XCONCAT2(a,b) CONCAT2(a,b) argument
43 #define XCONCAT3(a,b,c) CONCAT3(a,b,c) argument
[all …]
/dragonfly/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
42 #define XCONCAT2(a,b) CONCAT2(a,b) argument
43 #define XCONCAT3(a,b,c) CONCAT3(a,b,c) argument
[all …]
/dragonfly/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()
523 chk_div(quad_t a, quad_t b) in chk_div()
534 op_div(struct val *a, struct val *b) in op_div()
[all …]
/dragonfly/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
/dragonfly/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()
/dragonfly/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 …]
/dragonfly/contrib/ncurses/include/
H A Dnc_tparm.h64 #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
70 #define TPARM_7(a,b,c,d,e,f,g,h) TPARM_8(a,b,c,d,e,f,g,h,0) argument
71 #define TPARM_6(a,b,c,d,e,f,g) TPARM_7(a,b,c,d,e,f,g,0) argument
72 #define TPARM_5(a,b,c,d,e,f) TPARM_6(a,b,c,d,e,f,0) argument
73 #define TPARM_4(a,b,c,d,e) TPARM_5(a,b,c,d,e,0) argument
74 #define TPARM_3(a,b,c,d) TPARM_4(a,b,c,d,0) argument
75 #define TPARM_2(a,b,c) TPARM_3(a,b,c,0) argument
[all …]
/dragonfly/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()
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()
132 Node *op1(int a, Node *b) in op1()
141 Node *op2(int a, Node *b, Node *c) in op2()
150 Node *op3(int a, Node *b, Node *c, Node *d) in op3()
168 Node *celltonode(Cell *a, int b) in celltonode()
[all …]
/dragonfly/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()
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()
438 asn1_bio_set_ex(BIO *b, int cmd, asn1_ps_func *ex_func, asn1_ps_func in asn1_bio_set_ex()
[all …]
/dragonfly/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 …]
/dragonfly/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
/dragonfly/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
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
103 #define NG_HCI_BUFF_SCO_FREE(b, v) \ argument
111 #define NG_HCI_BUFF_SCO_SIZE(b, v) (v) = (b).sco_size argument
[all …]
/dragonfly/contrib/gdb-7/gdb/
H A Dbreakpoint.c663 struct breakpoint *b; in clear_breakpoint_hit_counts() local
734 struct breakpoint *b; in get_breakpoint() local
1040 struct breakpoint *b; in condition_command() local
1195 struct breakpoint *b; in VEC() local
3033 struct breakpoint *b; in create_internal_breakpoint() local
4195 struct breakpoint *b; in bpstat_num() local
4622 struct breakpoint *b; in watchpoints_triggered() local
4716 struct watchpoint *b; in watchpoint_check() local
4875 struct watchpoint *b; in bpstat_check_watchpoint() local
5038 struct breakpoint *b; in bpstat_check_breakpoint_conditions() local
[all …]
/dragonfly/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
414 #define k_get(r,a,b,c,d) \ argument
423 #define rot(a,b,c,d) \ argument
436 #define irot(a,b,c,d) \ argument
[all …]

12345678910>>...77