Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/binutils/opcodes/
H A Di386-dis.c3381 codep++; in ckprefix()
3704 two_source_ops = (*codep == 0x62) || (*codep == 0xc8); in print_insn()
3707 && ((*codep < 0xd8) || (*codep > 0xdf))) in print_insn()
3733 codep++; in print_insn()
4301 codep++; in dofloat()
4905 codep++; in OP_E()
4996 codep++; in OP_E()
5887 codep++; in OP_EM()
5924 codep++; in OP_EMC()
5953 codep++; in OP_EX()
[all …]
/freebsd-12.1/usr.sbin/ppp/
H A Dfsm.c1050 const struct fsmcodedesc *codep; in fsm_Input() local
1081 codep = FsmCodes + lh.code - 1; in fsm_Input()
1082 if (lh.id != fp->reqid && codep->check_reqid && in fsm_Input()
1085 fp->link->name, codep->name, lh.id, fp->reqid); in fsm_Input()
1090 fp->link->name, codep->name, lh.id, State2Nam(fp->state)); in fsm_Input()
1092 if (codep->inc_reqid && (lh.id == fp->reqid || in fsm_Input()
1093 (!Enabled(fp->bundle, OPT_IDCHECK) && codep->check_reqid))) in fsm_Input()
1096 (*codep->recv)(fp, &lh, bp); in fsm_Input()
/freebsd-12.1/contrib/tzcode/stdtime/
H A Dlocaltime.c173 static long detzcode(const char * codep);
174 static time_t detzcode64(const char * codep);
274 detzcode(const char *const codep) in detzcode() argument
279 result = (codep[0] & 0x80) ? ~0L : 0; in detzcode()
281 result = (result << 8) | (codep[i] & 0xff); in detzcode()
286 detzcode64(const char *const codep) in detzcode64() argument
291 result = (codep[0] & 0x80) ? (~(int_fast64_t) 0) : 0; in detzcode64()
293 result = result * 256 + (codep[i] & 0xff); in detzcode64()
/freebsd-12.1/sbin/ipfw/
H A Dipv6.c59 fill_unreach6_code(u_short *codep, char *str) in fill_unreach6_code() argument
69 *codep = val; in fill_unreach6_code()
H A Dipfw2.h434 void fill_unreach6_code(u_short *codep, char *str);
H A Dipfw2.c1100 fill_reject_code(u_short *codep, char *str) in fill_reject_code() argument
1110 *codep = val; in fill_reject_code()