Searched refs:codep (Results 1 – 6 of 6) sorted by relevance
| /freebsd-13.1/contrib/libcbor/src/cbor/internal/ |
| H A D | unicode.c | 58 uint32_t _cbor_unicode_decode(uint32_t* state, uint32_t* codep, uint32_t byte) { in _cbor_unicode_decode() argument 61 *codep = (*state != UTF8_ACCEPT) ? (byte & 0x3fu) | (*codep << 6) in _cbor_unicode_decode()
|
| /freebsd-13.1/usr.sbin/ppp/ |
| H A D | fsm.c | 1050 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-13.1/contrib/tzcode/stdtime/ |
| H A D | localtime.c | 173 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-13.1/sbin/ipfw/ |
| H A D | ipv6.c | 59 fill_unreach6_code(u_short *codep, char *str) in fill_unreach6_code() argument 69 *codep = val; in fill_unreach6_code()
|
| H A D | ipfw2.h | 445 void fill_unreach6_code(u_short *codep, char *str);
|
| H A D | ipfw2.c | 1115 fill_reject_code(u_short *codep, char *str) in fill_reject_code() argument 1125 *codep = val; in fill_reject_code()
|