Home
last modified time | relevance | path

Searched refs:codep (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/cmd/troff/nroff.d/
H A Dn10.c381 char *codep; in ptout1() local
518 codep = t.codetab[k-_SPECCHAR_ST]; in ptout1()
519 while (*codep != 0) { in ptout1()
520 if (*codep & 0200) { in ptout1()
521 codep = plot(codep); in ptout1()
524 if (*codep == '%') /* escape */ in ptout1()
525 codep++; in ptout1()
526 oput(*codep); in ptout1()
527 if (*codep == '\033') in ptout1()
528 oput(*++codep); in ptout1()
[all …]
/titanic_50/usr/src/uts/i86pc/cpu/amd_opteron/
H A Dao_mca.c175 bit_strip(uint16_t *codep, uint16_t mask, uint16_t shift) in bit_strip() argument
177 uint8_t val = (*codep & mask) >> shift; in bit_strip()
178 *codep &= ~mask; in bit_strip()
182 #define BIT_STRIP(codep, name) \ argument
183 bit_strip(codep, MCAX86_ERRCODE_##name##_MASK, \
/titanic_50/usr/src/lib/libc/amd64/unwind/
H A Deh_frame.c215 uint64_t *codep, uint64_t *next_codep, void **fdep) in get_table_ent_val() argument
291 *codep = code; in get_table_ent_val()
/titanic_50/usr/src/lib/libbc/libc/gen/common/
H A Dlocaltime.c137 static long detzcode P((const char * codep));
184 detzcode(codep) in detzcode() argument
185 const char * const codep; in detzcode()
192 result = (result << 8) | (codep[i] & 0xff);