Searched refs:lt (Results 1 - 25 of 419) sorted by relevance

1234567891011>>

/macosx-10.9.5/bash-92/bash-3.2/examples/functions/
H A Dksh-compat-test10 -lt|-gt|-eq|-ne|-le|-ge) n1=$(( $1 ))
25 -lt|-gt|-eq|-ne|-le|-ge) n1=$(( $1 ))
37 [ q -lt 10 ]
39 [ $q -lt 10 ]
/macosx-10.9.5/lsof-52/lsof/
H A Dutil.c63 struct tm *lt; local
67 lt = localtime(&tm);
68 return(strftime(fmtr, fmtl, fmt, lt));
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dmail_date.c57 struct tm *lt; local
82 lt = localtime(&when);
83 gmtoff = (lt->tm_hour - gmt.tm_hour) * HOUR_MIN + lt->tm_min - gmt.tm_min;
84 if (lt->tm_year < gmt.tm_year)
86 else if (lt->tm_year > gmt.tm_year)
88 else if (lt->tm_yday < gmt.tm_yday)
90 else if (lt->tm_yday > gmt.tm_yday)
92 if (lt->tm_sec <= gmt.tm_sec - MIN_SEC)
94 else if (lt
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/lock/
H A Dlock_region.c64 DB_LOCKTAB *lt; local
72 if ((ret = __os_calloc(env, 1, sizeof(DB_LOCKTAB), &lt)) != 0)
74 lt->env = env;
77 lt->reginfo.env = env;
78 lt->reginfo.type = REGION_TYPE_LOCK;
79 lt->reginfo.id = INVALID_REGION_ID;
80 lt->reginfo.flags = REGION_JOIN_OK;
82 F_SET(&lt->reginfo, REGION_CREATE_OK);
90 if ((ret = __env_region_attach(env, &lt->reginfo, size)) != 0)
94 if (F_ISSET(&lt
351 DB_LOCKTAB *lt; local
[all...]
H A Dlock.c112 DB_LOCKTAB *lt; local
121 lt = env->lk_handle;
122 region = lt->reginfo.primary;
125 LOCK_SYSTEM_LOCK(lt, region);
136 ret = __lock_get_internal(lt,
141 ret = __lock_inherit_locks(lt, sh_locker, flags);
205 OBJECT_LOCK_NDX(lt, region, ndx);
218 ret = __lock_put_internal(lt, lp,
221 OBJECT_UNLOCK(lt, region, ndx);
255 lock.off = R_OFFSET(&lt
445 DB_LOCKTAB *lt; local
1069 DB_LOCKTAB *lt; local
1102 DB_LOCKTAB *lt; local
1157 DB_LOCKTAB *lt; local
1568 DB_LOCKTAB *lt; local
1830 DB_LOCKTAB *lt; local
[all...]
H A Dlock_id.c55 DB_LOCKTAB *lt; local
60 lt = env->lk_handle;
61 region = lt->reginfo.primary;
98 ret = __lock_getlocker_int(lt, id, 1, &lk);
141 DB_LOCKTAB *lt; local
160 lt = env->lk_handle;
161 region = lt->reginfo.primary;
167 ret = __lock_freelocker(lt, region, sh_locker);
194 DB_LOCKTAB *lt; local
197 lt
228 DB_LOCKTAB *lt; local
350 DB_LOCKTAB *lt; local
[all...]
H A Dlock_stat.c68 DB_LOCKTAB *lt; local
76 lt = env->lk_handle;
84 region = lt->reginfo.primary;
90 stats->st_nrequests += lt->obj_stat[i].st_nrequests;
91 stats->st_nreleases += lt->obj_stat[i].st_nreleases;
92 stats->st_nupgrade += lt->obj_stat[i].st_nupgrade;
93 stats->st_ndowngrade += lt->obj_stat[i].st_ndowngrade;
94 stats->st_lock_wait += lt->obj_stat[i].st_lock_wait;
95 stats->st_lock_nowait += lt->obj_stat[i].st_lock_nowait;
96 stats->st_nlocktimeouts += lt
272 DB_LOCKTAB *lt; local
424 DB_LOCKTAB *lt; local
[all...]
H A Dlock_failchk.c33 DB_LOCKTAB *lt; local
39 lt = env->lk_handle;
40 lrp = lt->reginfo.primary;
46 SH_TAILQ_FOREACH(lip, &lt->locker_tab[i], links, __db_locker) {
97 (ret = __lock_freefamilylocker(lt, lip)) != 0)
/macosx-10.9.5/postfix-252/postfix/examples/chroot-setup/
H A DLINUX270 lt=/etc/localtime
71 if test ! -f $lt ; then lt=/usr/lib/zoneinfo/localtime ; fi
72 if test ! -f $lt ; then lt=/usr/share/zoneinfo/localtime ; fi
73 if test ! -f $lt ; then echo "cannot find localtime" ; exit 1 ; fi
77 $CP -f $lt /etc/services /etc/resolv.conf /etc/nsswitch.conf etc
/macosx-10.9.5/shell_cmds-175/date/
H A Ddate.c96 struct tm lt; local
182 lt = *ltp;
184 lt = *localtime(&tval);
186 badv = vary_apply(v, &lt);
194 (void)strftime(buf, sizeof(buf), format, &lt);
214 struct tm *lt; local
220 lt = localtime(&tval);
221 t = strptime(p, fmt, lt);
241 lt = localtime(&tval);
247 lt
[all...]
/macosx-10.9.5/bash-92/bash-3.2/tests/
H A Djobs3.sub5 while [ $i -lt $NJOB ]
18 while [ $i -lt $NJOB ]
/macosx-10.9.5/bash-92/bash-3.2/tests/misc/
H A Dwait-bg.tests4 while [ $i -lt $1 ]
17 while [ $i -lt $1 ]
/macosx-10.9.5/crontabs-51/files/daily/
H A D999.local30 [ $rc -lt 2 ] && rc=2
34 [ $rc -lt 2 ] && rc=2;;
/macosx-10.9.5/crontabs-51/files/monthly/
H A D999.local27 [ $rc -lt 2 ] && rc=2
31 [ $rc -lt 2 ] && rc=2;;
/macosx-10.9.5/crontabs-51/files/weekly/
H A D999.local27 [ $rc -lt 2 ] && rc=2
31 [ $rc -lt 2 ] && rc=2;;
/macosx-10.9.5/dtrace-118.1/test/tst/common/pid/
H A Dtst.manypids.ksh43 while [ "$i" -lt "$numkids" ]; do
57 while [ "$i" -lt "$numkids" ]; do
/macosx-10.9.5/file_cmds-230/xcodescripts/
H A Dhardlink.sh13 while [ "$X" -lt "$SCRIPT_INPUT_FILE_COUNT" ]; do
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/build/
H A Dbuildcheck.sh26 if test "$1" = "2" -a "$2" -lt "59" || test "$1" -lt "2"; then
53 if test "$2" -lt "4"; then
/macosx-10.9.5/apr-30/apr/apr/build/
H A Dbuildcheck.sh26 if test "$1" = "2" -a "$2" -lt "59" || test "$1" -lt "2"; then
53 if test "$2" -lt "4"; then
/macosx-10.9.5/groff-38/groff/src/preproc/pic/
H A Dcommon.cpp27 const line_type &lt)
29 assert(lt.type == line_type::dashed);
30 line_type slt = lt;
32 double dash_angle = lt.dash_width/rad;
55 solid_arc(cent, rad, start_angle, start_angle + dash_angle, lt);
62 const line_type &lt)
64 assert(lt.type == line_type::dotted);
65 double gap_angle = lt.dash_width/rad;
78 dot(cent + position(cos(ang), sin(ang))*rad, lt);
85 const distance &dim, const line_type &lt)
26 dashed_circle(const position &cent, double rad, const line_type &lt) argument
61 dotted_circle(const position &cent, double rad, const line_type &lt) argument
83 ellipse_arc(const position &cent, const position &z0, const position &z1, const distance &dim, const line_type &lt) argument
124 dashed_ellipse(const position &cent, const distance &dim, const line_type &lt) argument
183 dotted_ellipse(const position &cent, const distance &dim, const line_type &lt) argument
250 dashed_arc(const position &start, const position &cent, const position &end, const line_type &lt) argument
281 dotted_arc(const position &start, const position &cent, const position &end, const line_type &lt) argument
308 solid_arc(const position &cent, double rad, double start_angle, double end_angle, const line_type &lt) argument
321 rounded_box(const position &cent, const distance &dim, double rad, const line_type &lt, double fill) argument
344 dashed_rounded_box(const position &cent, const distance &dim, double rad, const line_type &lt) argument
404 dash_arc(const position &cent, double rad, double start_angle, double end_angle, const line_type &lt, double dash_width, double gap_width, double *offsetp) argument
443 dash_line(const position &start, const position &end, const line_type &lt, double dash_width, double gap_width, double *offsetp) argument
482 dotted_rounded_box(const position &cent, const distance &dim, double rad, const line_type &lt) argument
541 dot_arc(const position &cent, double rad, double start_angle, double end_angle, const line_type &lt, double gap_width, double *offsetp) argument
567 dot_line(const position &start, const position &end, const line_type &lt, double gap_width, double *offsetp) argument
591 solid_rounded_box(const position &cent, const distance &dim, double rad, const line_type &lt) argument
[all...]
H A Dtex.cpp60 double end_angle, const line_type &lt);
180 const line_type &lt)
182 set_pen_size(lt.thickness);
187 switch(lt.type) {
195 printf("dt %.3f", lt.dash_width/scale);
198 printf("da %.3f", lt.dash_width/scale);
205 const line_type &lt, double fill)
212 line(v[n-1], v, n, lt);
216 const line_type &lt)
218 if (lt
179 line(const position &start, const position *v, int n, const line_type &lt) argument
204 polygon(const position *v, int n, const line_type &lt, double fill) argument
215 spline(const position &start, const position *v, int n, const line_type &lt) argument
240 solid_arc(const position &cent, double rad, double start_angle, double end_angle, const line_type &lt) argument
256 arc(const position &start, const position &cent, const position &end, const line_type &lt) argument
285 circle(const position &cent, double rad, const line_type &lt, double fill) argument
312 ellipse(const position &cent, const distance &dim, const line_type &lt, double fill) argument
360 dot(const position &pos, const line_type &lt) argument
[all...]
H A Dtroff.cpp66 const position &end, const line_type &lt)
68 switch (lt.type) {
70 line_thickness(lt.thickness);
76 dashed_arc(start, cent, end, lt);
79 dotted_arc(start, cent, end, lt);
85 const line_type &lt)
88 line_thickness(lt.thickness);
90 switch (lt.type) {
98 int ndots = int(dist/lt.dash_width + .5);
100 dot(pos, lt);
65 arc(const position &start, const position &cent, const position &end, const line_type &lt) argument
84 line(const position &start, const position *v, int n, const line_type &lt) argument
135 spline(const position &start, const position *v, int n, const line_type &lt) argument
142 polygon(const position *v, int n, const line_type &lt, double fill) argument
160 circle(const position &cent, double rad, const line_type &lt, double fill) argument
186 ellipse(const position &cent, const distance &dim, const line_type &lt, double fill) argument
542 dot(const position &cent, const line_type &lt) argument
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/dbinc/
H A Dlock.h170 #define FREE_LOCKS(lt, part) ((lt)->part_array[part].free_locks)
171 #define FREE_OBJS(lt, part) ((lt)->part_array[part].free_objs)
250 #define LOCK_SYSTEM_LOCK(lt, reg) do { \
252 MUTEX_LOCK((lt)->env, (reg)->mtx_region); \
254 #define LOCK_SYSTEM_UNLOCK(lt, reg) do { \
256 MUTEX_UNLOCK((lt)->env, (reg)->mtx_region); \
258 #define MUTEX_LOCK_PARTITION(lt, reg, p) do { \
260 MUTEX_LOCK((lt)
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gpu/
H A DLoopBlinnTextureCoords.cpp57 float lt = 6.0f * classification.d1; local
59 float mt = lt;
60 float ltMinusLs = lt - ls;
65 result.klmCoordinates[1] = FloatPoint3D(OneThird * (3.0f * ls * ms - ls * mt - lt * ms),
66 ls * ls * (ls - lt),
68 result.klmCoordinates[2] = FloatPoint3D(OneThird * (lt * (mt - 2.0f * ms) + ls * (3.0f * ms - 2.0f * mt)),
82 float lt = 2.0f * classification.d1; local
84 float mt = lt;
88 float ql = ls / lt;
102 float ltMinusLs = lt
123 float lt = 3.0f * classification.d2; local
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/txn/
H A Dtxn_autop.c27 struct tm *lt; local
46 lt = localtime(&timeval);
50 (u_long)lt->tm_year - 100, (u_long)lt->tm_mon+1,
51 (u_long)lt->tm_mday, (u_long)lt->tm_hour,
52 (u_long)lt->tm_min, (u_long)lt->tm_sec);
73 struct tm *lt; local
92 lt
120 struct tm *lt; local
168 struct tm *lt; local
[all...]

Completed in 239 milliseconds

1234567891011>>