Home
last modified time | relevance | path

Searched refs:bf (Results 1 – 25 of 241) sorted by relevance

12345678910

/illumos-gate/usr/src/tools/smatch/src/validation/optim/
H A Dbitfield-size.c6 unsigned int get__bfu_a(struct bfu bf) { return bf.a; } in get__bfu_a() argument
7 unsigned int get__bfu_b(struct bfu bf) { return bf.b; } in get__bfu_b() argument
8 unsigned int get_pbfu_a(struct bfu *bf) { return bf->a; } in get_pbfu_a() argument
9 unsigned int get_pbfu_b(struct bfu *bf) { return bf->b; } in get_pbfu_b() argument
17 signed int get__bfs_a(struct bfs bf) { return bf.a; } in get__bfs_a() argument
18 signed int get__bfs_b(struct bfs bf) { return bf.b; } in get__bfs_b() argument
19 signed int get_pbfs_a(struct bfs *bf) { return bf->a; } in get_pbfs_a() argument
20 signed int get_pbfs_b(struct bfs *bf) { return bf->b; } in get_pbfs_b() argument
28 unsigned int get__bfi_a(struct bfi bf) { return bf.a; } in get__bfi_a() argument
29 unsigned int get__bfi_b(struct bfi bf) { return bf.b; } in get__bfi_b() argument
[all …]
H A Dbitfield-init-zero.c10 struct bfu bf = { .f = a, }; in bfuu_init() local
11 return bf; in bfuu_init()
16 struct bfu bf = { .f = a, }; in bfus_init() local
17 return bf; in bfus_init()
22 struct bfu bf = { }; in bfu_get0() local
23 return bf.f; in bfu_get0()
36 struct bfs bf = { .f = a, }; in bfsu_init() local
37 return bf; in bfsu_init()
43 return bf; in bfss_init()
48 struct bfs bf = { }; in bfs_get0() local
[all …]
H A Dbitfield-store-load0.c6 } bf; in ufoo() local
8 bf.a = a; in ufoo()
9 return bf.a; in ufoo()
17 } bf; in sfoo() local
19 bf.a = a; in sfoo()
20 return bf.a; in sfoo()
/illumos-gate/usr/src/uts/common/syscall/
H A Dfcntl.c79 struct flock64 bf; in fcntl() local
357 if (bf.l_whence != 0 || bf.l_start != 0 || in fcntl()
358 bf.l_len != 0) { in fcntl()
362 if (bf.l_type < F_RDLCK || bf.l_type > F_UNLCK) { in fcntl()
374 if (bf.l_whence != 0 || bf.l_start != 0 || in fcntl()
430 if (bf.l_sysid > SHRT_MAX || bf.l_pid > SHRT_MAX) { in fcntl()
449 if (bf.l_start > maxoffset || bf.l_len > maxoffset) { in fcntl()
558 if (copyin((void *)arg, &bf, sizeof (bf))) { in fcntl()
709 if (bf.l_whence != 0 || bf.l_start != 0 || in fcntl()
714 if (bf.l_type < F_RDLCK || bf.l_type > F_UNLCK) { in fcntl()
[all …]
/illumos-gate/usr/src/uts/common/io/arn/
H A Darn_xmit.c399 while (bf) { in arn_tx_complete_aggr()
490 bf = bf_next; in arn_tx_complete_aggr()
1072 while (bf) { in arn_tx_num_badfrms()
1077 bf = bf->bf_next; in arn_tx_num_badfrms()
1098 bf->bf_lastbf = bf; in arn_tx_send_ht_normal()
1137 txq->axq_qnum, ito64(bf->bf_daddr), bf->bf_desc)); in arn_tx_txqaddbuf()
1142 ito64(bf->bf_daddr), bf->bf_desc)); in arn_tx_txqaddbuf()
1166 return (bf); in arn_tx_get_buffer()
1263 pktlen = bf_isaggr(bf) ? bf->bf_al : bf->bf_frmlen; in ath_pkt_duration()
1357 (!bf_isaggr(bf) || (bf_isaggr(bf) && bf->bf_al < 8192))) { in ath_buf_set_rate()
[all …]
H A Darn_beacon.c43 mblk_t *mp = bf->bf_m; in arn_beacon_setup()
55 ds = bf->bf_desc; in arn_beacon_setup()
126 mp = bf->bf_m; in arn_beacon_start_adhoc()
150 ito64(bf->bf_daddr), bf->bf_desc)); in arn_beacon_start_adhoc()
171 struct ath_buf *bf; in arn_beacon_alloc() local
176 if (bf == NULL) { in arn_beacon_alloc()
191 bf->bf_m = mp; in arn_beacon_alloc()
203 struct ath_buf *bf; in arn_beacon_return() local
210 bf->bf_m = NULL; in arn_beacon_return()
214 bf->bf_in = NULL; in arn_beacon_return()
[all …]
H A Darn_recv.c39 ds = bf->bf_desc; in arn_rx_buf_link()
277 struct ath_buf *bf; in arn_startrecv() local
288 while (bf != NULL) { in arn_startrecv()
289 arn_rx_buf_link(sc, bf); in arn_startrecv()
290 bf = list_next(&sc->sc_rxbuf_list, bf); in arn_startrecv()
408 ds, bf->bf_daddr, in arn_printrxbuf()
423 struct ath_buf *bf; in arn_rx_handler() local
443 if (bf == NULL) { in arn_rx_handler()
451 ds = bf->bf_desc; in arn_rx_handler()
465 bf->bf_daddr, in arn_rx_handler()
[all …]
H A Darn_core.h363 #define bf_isdata(bf) (bf->bf_state.bf_type & BUF_DATA) argument
364 #define bf_isaggr(bf) (bf->bf_state.bf_type & BUF_AGGR) argument
365 #define bf_isampdu(bf) (bf->bf_state.bf_type & BUF_AMPDU) argument
366 #define bf_isht(bf) (bf->bf_state.bf_type & BUF_HT) argument
367 #define bf_isretried(bf) (bf->bf_state.bf_type & BUF_RETRY) argument
368 #define bf_isxretried(bf) (bf->bf_state.bf_type & BUF_XRETRY) argument
369 #define bf_isshpreamble(bf) (bf->bf_state.bf_type & BUF_SHORT_PREAMBLE) argument
370 #define bf_isbar(bf) (bf->bf_state.bf_type & BUF_BAR) argument
371 #define bf_ispspoll(bf) (bf->bf_state.bf_type & BUF_PSPOLL) argument
372 #define bf_isaggrburst(bf) (bf->bf_state.bf_type & BUF_AGGR_BURST) argument
[all …]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dclearok.c45 clearok(WINDOW *w, bool bf) in clearok() argument
48 __m_trace("clearok(%p, %d)", w, bf); in clearok()
52 if (bf) in clearok()
59 immedok(WINDOW *w, bool bf) in immedok() argument
66 if (bf) in immedok()
73 leaveok(WINDOW *w, bool bf) in leaveok() argument
80 if (bf) in leaveok()
87 notimeout(WINDOW *w, bool bf) in notimeout() argument
94 if (!bf) in notimeout()
101 scrollok(WINDOW *w, bool bf) in scrollok() argument
[all …]
H A Dwtouchln.c49 wtouchln(w, y, n, bf) in wtouchln() argument
51 int y, n, bf;
56 __m_trace("wtouchln(%p, %d, %d, %d)", w, y, n, bf);
58 first = bf ? 0 : w->_maxx;
59 last = bf ? w->_maxx : -1;
H A Dmeta.c49 meta(WINDOW *w, bool bf) in meta() argument
52 __m_trace("meta(%p, %d)", w, bf); in meta()
55 cur_term->_prog.c_cflag |= bf ? CS8 : CS7; in meta()
62 if (bf) { in meta()
H A Dintrflsh.c50 (intrflush)(WINDOW *w, bool bf)
53 __m_trace("intrflush(%p, %d)", w, bf);
57 if (!bf)
H A Dtimeout.c45 (nodelay)(WINDOW *w, bool bf)
48 __m_trace("nodelay(%p, %d)", w, bf);
51 wtimeout(w, bf ? 0 : -1);
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dclearok.c48 clearok(WINDOW *w, bool bf) in clearok() argument
51 if (bf) in clearok()
58 immedok(WINDOW *w, bool bf) in immedok() argument
61 if (bf) in immedok()
66 leaveok(WINDOW *w, bool bf) in leaveok() argument
69 if (bf) in leaveok()
76 notimeout(WINDOW *w, bool bf) in notimeout() argument
79 if (!bf) in notimeout()
86 scrollok(WINDOW *w, bool bf) in scrollok() argument
89 if (bf) in scrollok()
H A Dwtouchln.c54 wtouchln(WINDOW *w, int y, int n, int bf) in wtouchln() argument
58 first = bf ? 0 : w->_maxx; in wtouchln()
59 last = bf ? w->_maxx : -1; in wtouchln()
/illumos-gate/usr/src/data/ucode/
H A Dupdate.amd100 bf=${f##*/}
101 bf=${bf#microcode_}
102 bf=${bf%.bin}
103 [[ $bf = amd* ]] || errexit "$f does not look like a firmware file"
104 echo "Converting $bf"
105 mkdir $tmp/out/$bf
108 $UCODEADM -i -R $tmp/out/$bf $tmp/amd-fw
135 bf=${f##*/}
136 [[ $bf = THIRDPARTYLICENSE* ]] && continue
137 [[ $bf = Makefile* ]] && continue
[all …]
H A Dupdate.intel94 bf=$(basename $f)
95 [[ -n "${seen[$bf]}" ]] && continue
98 links[$bf]=${inodes[$inode]}
100 inodes[$inode]=$bf
101 cp $f intel/$bf
103 seen[$bf]=1
107 bf=$(basename $f)
108 [[ $bf = THIRDPARTYLICENSE* ]] && continue
109 [[ $bf = Makefile* ]] && continue
110 echo "file path=$FW/$bf group=sys mode=0444 reboot-needed=true" >> $mf
/illumos-gate/usr/src/uts/common/io/ath/
H A Dath_main.c307 ds = bf->bf_desc; in ath_setup_desc()
397 bf->bf_desc = ds; in ath_buflist_setup()
409 *pbf = bf; in ath_buflist_setup()
430 bf->bf_m = NULL; in ath_buflist_cleanup()
546 if (bf == NULL) { in ath_rx_handler()
744 bf->bf_in = in; in ath_tx_start()
747 ds = bf->bf_desc; in ath_tx_start()
977 if (bf != NULL) in ath_xmit()
985 if (bf == NULL) { in ath_xmit()
1128 in = bf->bf_in; in ath_tx_processq()
[all …]
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Dhtable.c131 a->bf = 0; in avl_ll()
133 b->bf = 0; in avl_ll()
157 a->bf = 0; in avl_rr()
159 b->bf = 0; in avl_rr()
195 a->bf = 0; in avl_lr()
196 b->bf = 1; in avl_lr()
200 a->bf = 0; in avl_lr()
201 b->bf = 0; in avl_lr()
209 c->bf = 0; in avl_lr()
259 c->bf = 0; in avl_rl()
[all …]
/illumos-gate/usr/src/lib/libc/port/fp/
H A Ddouble_decim.c355 pbf = bf; in __bigfloat_to_decimal()
367 powten = -bf->bexponent; in __bigfloat_to_decimal()
372 sigbits = bf->bexponent + (bf->blength << 4) + in __bigfloat_to_decimal()
381 if (bf->bexponent < 0) { in __bigfloat_to_decimal()
383 i = bf->bexponent + ((bf->blength - 1) << 4); in __bigfloat_to_decimal()
396 powten = -bf->bexponent; in __bigfloat_to_decimal()
421 if (pbf != bf) in __bigfloat_to_decimal()
533 _big_float bf; in single_to_decimal() local
605 _big_float bf; in double_to_decimal() local
650 _big_float bf; in extended_to_decimal() local
[all …]
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dbf.c53 struct bf struct
108 struct bf *bfp;
132 bfp = (struct bf *) sm_malloc(sizeof(struct bf));
268 struct bf *bfp;
302 struct bf *bfp;
346 struct bf *bfp;
443 struct bf *bfp;
491 struct bf *bfp;
675 struct bf *bfp;
787 struct bf *bfp;
[all …]
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dring.c46 _ring(bool bf) in _ring() argument
54 _PUTS(str_array[offsets[bf]] ? str_array[offsets[bf]] : in _ring()
55 str_array[offsets[1 - bf]], 0); in _ring()
H A Dmeta.c48 _meta(int bf) in _meta() argument
56 if (bf) in _meta()
62 if (bf) in _meta()
70 if ((SP->fl_meta = bf) != 0) in _meta()
H A Dkeypad.c48 keypad(WINDOW *win, bool bf) in keypad() argument
55 win->_use_keypad = (bf) ? TRUE : FALSE; in keypad()
56 if (bf && (!SP->kp_state)) { in keypad()
/illumos-gate/usr/src/cmd/bhyve/
H A Dacpi.c259 basl_open(struct basl_fio *bf, int suffix) in basl_open() argument
267 bf->fd = mkstemps(bf->f_name, strlen(BHYVE_ASL_SUFFIX)); in basl_open()
270 bf->fd = mkstemp(bf->f_name); in basl_open()
273 if (bf->fd > 0) { in basl_open()
274 bf->fp = fdopen(bf->fd, "w+"); in basl_open()
275 if (bf->fp == NULL) { in basl_open()
276 unlink(bf->f_name); in basl_open()
277 close(bf->fd); in basl_open()
287 basl_close(struct basl_fio *bf) in basl_close() argument
291 unlink(bf->f_name); in basl_close()
[all …]

12345678910