Searched refs:lc (Results 1 - 4 of 4) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dproc_internal.h108 LIST_HEAD(, proc) lc_members; /* Pointer to lc members. */
488 #define LCTX_LOCK(lc) lck_mtx_lock(&(lc)->lc_mtx)
489 #define LCTX_UNLOCK(lc) lck_mtx_unlock(&(lc)->lc_mtx)
490 #define LCTX_LOCKED(lc)
491 #define LCTX_LOCK_ASSERT(lc, type)
/macosx-10.5.8/xnu-1228.15.4/libkern/
H A Dzlib.c565 static int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
3128 * unsigned lc; match length-MIN_MATCH or unmatched char (if dist==0)
3131 _tr_tally(deflate_state *s, unsigned int dist, unsigned int lc) argument
3134 s->l_buf[s->last_lit++] = (uch)lc;
3136 /* lc is the unmatched char */
3137 s->dyn_ltree[lc].Freq++;
3140 /* Here, lc is the match length - MIN_MATCH */
3143 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
3146 s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
3185 int lc; /* matc local
3195 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dzalloc.c415 const char *lc = logname; local
421 for (len = 1; len <= MAX_ZONE_NAME; zc++, lc++, len++) {
429 if (*zc != *lc && !(*zc == ' ' && *lc == '.'))
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/dtrace/
H A Ddtrace.c6452 char lc = '\0';
6466 if (c == '-' && lc != '\0' && *p != ']') {
6473 if (s1 < lc || s1 > c)
6477 } else if (lc <= s1 && s1 <= c)
6483 lc = c; /* save left-hand 'c' for next iteration */

Completed in 107 milliseconds