Home
last modified time | relevance | path

Searched refs:new_level (Results 1 – 7 of 7) sorted by relevance

/freebsd-12-stable/lib/libthr/thread/
Dthr_concurrency.c57 _pthread_setconcurrency(int new_level) in _pthread_setconcurrency() argument
61 if (new_level < 0) { in _pthread_setconcurrency()
64 current_concurrency = new_level; in _pthread_setconcurrency()
/freebsd-12-stable/contrib/wpa/wpa_supplicant/
Dbss.h190 static inline void wpa_bss_update_level(struct wpa_bss *bss, int new_level) in wpa_bss_update_level() argument
192 if (bss != NULL && new_level > -WPA_INVALID_NOISE && new_level < 0) in wpa_bss_update_level()
193 bss->level = new_level; in wpa_bss_update_level()
/freebsd-12-stable/sys/dev/acpica/
Dacpi_video.c686 int i, j, level, new_level; in acpi_video_vo_notify_handler() local
713 new_level = level; in acpi_video_vo_notify_handler()
718 new_level = vo->vo_numlevels > i + 1 ? in acpi_video_vo_notify_handler()
729 (j < new_level || level == new_level)) in acpi_video_vo_notify_handler()
730 new_level = j; in acpi_video_vo_notify_handler()
733 (j > new_level || level == new_level)) in acpi_video_vo_notify_handler()
734 new_level = j; in acpi_video_vo_notify_handler()
741 new_level = 0; in acpi_video_vo_notify_handler()
746 if (new_level != level) { in acpi_video_vo_notify_handler()
747 vo_set_brightness(vo, new_level); in acpi_video_vo_notify_handler()
[all …]
/freebsd-12-stable/sys/contrib/dev/ath/ath_hal/ar9300/
Dar9300_xmit.c43 u_int32_t txcfg, cur_level, new_level; in ar9300_update_tx_trig_level() local
59 new_level = cur_level; in ar9300_update_tx_trig_level()
63 new_level++; in ar9300_update_tx_trig_level()
66 new_level--; in ar9300_update_tx_trig_level()
69 if (new_level != cur_level) { in ar9300_update_tx_trig_level()
72 AR_TXCFG, (txcfg &~ AR_FTRIG) | SM(new_level, AR_FTRIG)); in ar9300_update_tx_trig_level()
78 AH9300(ah)->ah_tx_trig_level = new_level; in ar9300_update_tx_trig_level()
80 return (new_level != cur_level); in ar9300_update_tx_trig_level()
/freebsd-12-stable/contrib/gdb/gdb/
Dui-out.c375 int new_level; in ui_out_begin() local
395 new_level = push_level (uiout, type, id); in ui_out_begin()
400 && uiout->table.entry_level == new_level) in ui_out_begin()
403 uo_begin (uiout, type, new_level, id); in ui_out_begin()
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
Ddnode_sync.c46 int new_level = dn->dn_next_nlevels[txgoff]; in dnode_increase_indirection() local
54 ASSERT(new_level > 1 && dn->dn_phys->dn_nlevels > 0); in dnode_increase_indirection()
59 dn->dn_phys->dn_nlevels = new_level; in dnode_increase_indirection()
/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
Dkmp_runtime.cpp2013 int new_level = parent_team->t.t_level + 1; in __kmp_fork_call() local
2014 KMP_CHECK_UPDATE(team->t.t_level, new_level); in __kmp_fork_call()
2015 new_level = parent_team->t.t_active_level + 1; in __kmp_fork_call()
2016 KMP_CHECK_UPDATE(team->t.t_active_level, new_level); in __kmp_fork_call()
2019 int new_level = parent_team->t.t_level; in __kmp_fork_call() local
2020 KMP_CHECK_UPDATE(team->t.t_level, new_level); in __kmp_fork_call()
2021 new_level = parent_team->t.t_active_level; in __kmp_fork_call()
2022 KMP_CHECK_UPDATE(team->t.t_active_level, new_level); in __kmp_fork_call()