Home
last modified time | relevance | path

Searched refs:l_value (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/bmake/
H A Dsetenv.c89 int l_value, offset; local
94 l_value = strlen(value);
98 if (strlen(C) >= l_value) { /* old larger; copy over */
127 malloc((size_t)((int)(C - name) + l_value + 2))))
H A Dutil.c89 size_t l_value, size; in setenv() local
99 l_value = strlen(value); in setenv()
105 if (strlen(c) >= l_value) /* old larger; copy over */ in setenv()
129 if ((environ[offset] = malloc(size + l_value + 2)) == NULL) in setenv()
136 (void)memcpy(c, value, l_value + 1); in setenv()
/freebsd/crypto/openssh/openbsd-compat/
H A Dsetenv.c138 int l_value, offset = 0; in setenv() local
149 l_value = strlen(value); in setenv()
155 if (strlen(C) >= l_value) { /* old larger; copy over */ in setenv()
183 malloc((size_t)((int)(np - name) + l_value + 2)))) in setenv()
/freebsd/contrib/tzcode/
H A Dzic.c361 const int l_value; member
1775 else switch (lp->l_value) { in infile()
2092 month = lp->l_value; in getleapdatetime()
2142 leapadd(t, correction, lp->l_value); in inleap()
2197 rp->r_month = lp->l_value; in rulesub()
2230 if (lp) switch (lp->l_value) { in rulesub()
2245 if (!rp->r_hiwasnum) switch (lp->l_value) { in rulesub()
2278 rp->r_wday = lp->l_value; in rulesub()
2301 rp->r_wday = lp->l_value; in rulesub()
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h2008 inline ::std::reference_wrapper<T> ByRef(T& l_value) { // NOLINT
2009 return ::std::reference_wrapper<T>(l_value);