Searched refs:i_ (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/openpam/lib/libpam/ |
H A D | openpam_debug.h | 42 int i_ = (i); \ 43 if (i_ > 0 && i_ < PAM_NUM_ITEMS) \ 44 openpam_log(PAM_LOG_LIBDEBUG, "entering: %s", pam_item_name[i_]); \ 46 openpam_log(PAM_LOG_LIBDEBUG, "entering: %d", i_); \
|
H A D | openpam_subst.c | 52 int i_ = (i); \ 54 ret = pam_get_item(pamh, i_, &p_); \
|
/freebsd/contrib/bmake/ |
H A D | bmake.cat1 | 7 bbmmaakkee [--BBeeiikkNNnnqqrrSSssttWWwwXX] [--CC _d_i_r_e_c_t_o_r_y] [--DD _v_a_r_i_a_b_l_e] [--dd _f_l_a_g_s] 8 [--ff _m_a_k_e_f_i_l_e] [--II _d_i_r_e_c_t_o_r_y] [--JJ _p_r_i_v_a_t_e] [--jj _m_a_x___j_o_b_s] 9 [--mm _d_i_r_e_c_t_o_r_y] [--TT _f_i_l_e] [--VV _v_a_r_i_a_b_l_e] [--vv _v_a_r_i_a_b_l_e] 10 [_v_a_r_i_a [all...] |
/freebsd/contrib/less/ |
H A D | less.hlp | 94 :e [_f_i_l_e] Examine a new file. 115 s _f_i_l_e Save input to a file. 163 -k _f_i_l_e ... --lesskey-file=_f_i_l_e 175 -o [_f_i_l_e] .. --log-file=[_f_i_l_e] 177 -O [_f_i_l_e] .. --LOG-FILE=[_f_i_l_e] 193 -T [_t_a_g_s_f_i_l_e] --tag-file=[_t_a_g_s_f_i_l [all...] |
/freebsd/contrib/netbsd-tests/bin/sh/dotcmd/ |
H A D | scoped_command | 127 for i_${4} in 1 2
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | kernel-kuid-helpers.m4 | 18 AC_MSG_CHECKING([whether i_(uid|gid)_(read|write) exist])
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-matchers-comparisons_test.cc | 945 explicit MoveOnly(int i) : i_(i) {} in MoveOnly() 951 bool operator==(const MoveOnly& other) const { return i_ == other.i_; } in operator ==() 952 bool operator!=(const MoveOnly& other) const { return i_ != other.i_; } in operator !=() 953 bool operator<(const MoveOnly& other) const { return i_ < other.i_; } in operator <() 954 bool operator<=(const MoveOnly& other) const { return i_ <= other.i_; } in operator <=() 955 bool operator>(const MoveOnly& other) const { return i_ > other.i_; } in operator >() 956 bool operator>=(const MoveOnly& other) const { return i_ >= other.i_; } in operator >=() 959 int i_; member in testing::gmock_matchers_test::__anonbdf523750111::MoveOnly
|
H A D | gmock-matchers-misc_test.cc | 728 SampleVariantIntString(int i) : i_(i), has_int_(true) {} in SampleVariantIntString() 742 const int& get_impl(int*) const { return i_; } in get_impl() 745 int i_; member in testing::gmock_matchers_test::__anonebb175b30111::SampleVariantIntString 792 explicit SampleAnyType(int i) : index_(0), i_(i) {} in SampleAnyType() 802 int i_; member in testing::gmock_matchers_test::__anonebb175b30111::SampleAnyType 805 const int* get_impl(int*) const { return index_ == 0 ? &i_ : nullptr; } in get_impl()
|
/freebsd/sys/dev/netmap/ |
H A D | netmap.c | 2032 #define within_sel(p_, t_, i_) \ argument 2033 ((i_) < (p_)->np_qlast[(t_)]) 2036 #define foreach_selected_ring(p_, t_, i_, kring_) \ argument 2038 (i_) = (p_)->np_qfirst[(t_)]; \ 2040 (t == NR_TX && within_sel((p_), (t_), (i_)))) && \ 2041 ((kring_) = NMR((p_)->np_na, (t_))[(i_)]); \ 2042 (i_) = within_sel((p_), (t_), (i_) + 1) ? (i_) + 1 : \ 2043 (++(t_) < NR_TXRX ? (p_)->np_qfirst[(t_)] : (i_)))
|