Searched refs:codep (Results 1 – 4 of 4) sorted by relevance
381 char *codep; in ptout1() local518 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 …]
175 bit_strip(uint16_t *codep, uint16_t mask, uint16_t shift) in bit_strip() argument177 uint8_t val = (*codep & mask) >> shift; in bit_strip()178 *codep &= ~mask; in bit_strip()182 #define BIT_STRIP(codep, name) \ argument183 bit_strip(codep, MCAX86_ERRCODE_##name##_MASK, \
215 uint64_t *codep, uint64_t *next_codep, void **fdep) in get_table_ent_val() argument291 *codep = code; in get_table_ent_val()
137 static long detzcode P((const char * codep));184 detzcode(codep) in detzcode() argument185 const char * const codep; in detzcode()192 result = (result << 8) | (codep[i] & 0xff);