/illumos-gate/usr/src/tools/smatch/src/validation/optim/ |
H A D | bitfield-size.c | 6 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 D | bitfield-init-zero.c | 10 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 D | bitfield-store-load0.c | 6 } 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 D | fcntl.c | 79 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 D | arn_xmit.c | 399 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 D | arn_beacon.c | 43 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 D | arn_recv.c | 39 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 D | arn_core.h | 363 #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 D | clearok.c | 47 clearok(WINDOW *w, bool bf) in clearok() argument 50 __m_trace("clearok(%p, %d)", w, bf); in clearok() 54 if (bf) in clearok() 61 immedok(WINDOW *w, bool bf) in immedok() argument 68 if (bf) in immedok() 75 leaveok(WINDOW *w, bool bf) in leaveok() argument 82 if (bf) in leaveok() 89 notimeout(WINDOW *w, bool bf) in notimeout() argument 96 if (!bf) in notimeout() 103 scrollok(WINDOW *w, bool bf) in scrollok() argument [all …]
|
H A D | wtouchln.c | 51 wtouchln(w, y, n, bf) in wtouchln() argument 53 int y, n, bf; 58 __m_trace("wtouchln(%p, %d, %d, %d)", w, y, n, bf); 60 first = bf ? 0 : w->_maxx; 61 last = bf ? w->_maxx : -1;
|
H A D | meta.c | 51 meta(WINDOW *w, bool bf) in meta() argument 54 __m_trace("meta(%p, %d)", w, bf); in meta() 57 cur_term->_prog.c_cflag |= bf ? CS8 : CS7; in meta() 64 if (bf) { in meta()
|
H A D | intrflsh.c | 52 (intrflush)(WINDOW *w, bool bf) 55 __m_trace("intrflush(%p, %d)", w, bf); 59 if (!bf)
|
H A D | timeout.c | 47 (nodelay)(WINDOW *w, bool bf) 50 __m_trace("nodelay(%p, %d)", w, bf); 53 wtimeout(w, bf ? 0 : -1);
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | clearok.c | 50 clearok(WINDOW *w, bool bf) in clearok() argument 53 if (bf) in clearok() 60 immedok(WINDOW *w, bool bf) in immedok() argument 63 if (bf) in immedok() 68 leaveok(WINDOW *w, bool bf) in leaveok() argument 71 if (bf) in leaveok() 78 notimeout(WINDOW *w, bool bf) in notimeout() argument 81 if (!bf) in notimeout() 88 scrollok(WINDOW *w, bool bf) in scrollok() argument 91 if (bf) in scrollok()
|
H A D | wtouchln.c | 56 wtouchln(WINDOW *w, int y, int n, int bf) in wtouchln() argument 60 first = bf ? 0 : w->_maxx; in wtouchln() 61 last = bf ? w->_maxx : -1; in wtouchln()
|
H A D | meta.c | 57 meta(WINDOW *w, bool bf) in meta() argument 60 PTERMIOS(_prog)->c_cflag |= bf ? CS8 : CS7; in meta() 67 if (bf) { in meta()
|
/illumos-gate/usr/src/data/ucode/ |
H A D | update.intel | 67 bf=$(basename $f) 68 [[ -n "${seen[$bf]}" ]] && continue 71 links[$bf]=${inodes[$inode]} 73 inodes[$inode]=$bf 74 cp $f intel/$bf 76 seen[$bf]=1 80 bf=$(basename $f) 81 [[ $bf = THIRDPARTYLICENSE* ]] && continue 82 echo "file path=$fw/$bf group=sys mode=0444 reboot-needed=true" >> $mf
|
/illumos-gate/usr/src/uts/common/io/ath/ |
H A D | ath_main.c | 307 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 D | htable.c | 131 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 D | double_decim.c | 355 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 D | bf.c | 55 struct bf struct 110 struct bf *bfp; 134 bfp = (struct bf *) sm_malloc(sizeof(struct bf)); 270 struct bf *bfp; 304 struct bf *bfp; 348 struct bf *bfp; 445 struct bf *bfp; 493 struct bf *bfp; 677 struct bf *bfp; 789 struct bf *bfp; [all …]
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | ring.c | 48 _ring(bool bf) in _ring() argument 56 _PUTS(str_array[offsets[bf]] ? str_array[offsets[bf]] : in _ring() 57 str_array[offsets[1 - bf]], 0); in _ring()
|
H A D | meta.c | 50 _meta(int bf) in _meta() argument 58 if (bf) in _meta() 64 if (bf) in _meta() 72 if ((SP->fl_meta = bf) != 0) in _meta()
|
H A D | keypad.c | 50 keypad(WINDOW *win, bool bf) in keypad() argument 57 win->_use_keypad = (bf) ? TRUE : FALSE; in keypad() 58 if (bf && (!SP->kp_state)) { in keypad()
|
/illumos-gate/usr/src/cmd/bhyve/ |
H A D | acpi.c | 785 basl_open(struct basl_fio *bf, int suffix) in basl_open() argument 793 bf->fd = mkstemps(bf->f_name, strlen(BHYVE_ASL_SUFFIX)); in basl_open() 796 bf->fd = mkstemp(bf->f_name); in basl_open() 799 if (bf->fd > 0) { in basl_open() 800 bf->fp = fdopen(bf->fd, "w+"); in basl_open() 801 if (bf->fp == NULL) { in basl_open() 802 unlink(bf->f_name); in basl_open() 803 close(bf->fd); in basl_open() 813 basl_close(struct basl_fio *bf) in basl_close() argument 817 unlink(bf->f_name); in basl_close() [all …]
|