| /src/tests/usr.bin/xlint/lint1/ |
| H A D | msg_361.c | 21 char buf[64]; local in function:old_style_number_base 24 snprintb(buf, sizeof(buf), "", 0); 26 snprintb(buf, sizeof(buf), "\002", 0); 27 snprintb(buf, sizeof(buf), "\010", 0); 28 snprintb(buf, sizeof(buf), "\n", 0); 29 snprintb(buf, sizeo 38 char buf[64]; local in function:new_style_number_base [all...] |
| H A D | msg_366.c | 25 char buf[64]; local in function:example 28 snprintb(buf, sizeof(buf), 35 snprintb(buf, sizeof(buf), 42 snprintb(buf, sizeof(buf), 48 snprintb(buf, sizeof(buf), 54 snprintb(buf, sizeo [all...] |
| H A D | msg_360.c | 22 char buf[64]; local in function:new_style_number_base 25 snprintb(buf, sizeof(buf), "\177", 0); 27 snprintb(buf, sizeof(buf), "\177\002", 0);
|
| H A D | msg_359.c | 23 char buf[64]; local in function:old_style_number_base 26 snprintb(buf, sizeof(buf), "", 0); 27 snprintb(buf, sizeof(buf), "\010", 0); 28 snprintb(buf, sizeof(buf), "" "\177\020" "", 0);
|
| H A D | msg_358.c | 28 char buf[64]; local in function:examples 31 snprintb(buf, sizeof(buf), 36 snprintb(buf, sizeof(buf), 43 snprintb(buf, sizeof(buf), 48 snprintb(buf, sizeof(buf), 53 snprintb(buf, sizeo [all...] |
| H A D | msg_367.c | 23 char buf[64]; local in function:old_style 29 snprintb(buf, sizeof(buf), 41 snprintb(buf, sizeof(buf), 50 snprintb(buf, sizeof(buf), 62 char buf[64]; local in function:new_style 65 snprintb(buf, sizeof(buf), [all...] |
| H A D | msg_386.c | 21 char buf[50]; local in function:test_snprintb 23 snprintb(buf, sizeof buf,
|
| H A D | msg_357.c | 28 char buf[64]; local in function:examples 33 snprintb(buf, sizeof(buf), 40 snprintb(buf, sizeof(buf), 47 snprintb(buf, sizeof(buf), 54 snprintb(buf, sizeof(buf),
|
| H A D | msg_363.c | 23 char buf[64]; local in function:old_style_description 28 snprintb(buf, sizeof(buf), 40 snprintb(buf, sizeof(buf), 49 snprintb(buf, sizeof(buf), 60 snprintb(buf, sizeof(buf),
|
| H A D | msg_374.c | 21 char buf[64]; local in function:example 24 snprintb(buf, sizeof(buf), 30 snprintb(buf, sizeof(buf), 36 snprintb(buf, sizeof(buf), 45 snprintb(buf, sizeof(buf),
|
| H A D | msg_364.c | 21 char buf[64]; local in function:example 24 snprintb(buf, sizeof(buf), 31 snprintb(buf, sizeof(buf),
|
| H A D | msg_365.c | 20 char buf[64]; local in function:example 23 snprintb(buf, sizeof(buf), 30 snprintb(buf, sizeof(buf),
|
| H A D | msg_368.c | 21 char buf[64]; local in function:example 24 snprintb(buf, sizeof(buf), 30 snprintb(buf, sizeof(buf),
|
| H A D | msg_370.c | 23 char buf[64]; local in function:example 31 snprintb(buf, sizeof(buf), 45 snprintb(buf, sizeof(buf),
|
| H A D | msg_373.c | 22 char buf[64]; local in function:example 30 snprintb(buf, sizeof(buf), 40 snprintb(buf, sizeof(buf),
|
| H A D | msg_377.c | 24 char buf[64]; local in function:example 28 snprintb(buf, sizeof(buf), 36 snprintb(buf, sizeof(buf),
|
| H A D | msg_369.c | 23 char buf[64]; local in function:example 28 snprintb(buf, sizeof(buf), 38 snprintb(buf, sizeof(buf), 47 snprintb(buf, sizeof(buf),
|
| H A D | msg_371.c | 22 char buf[64]; local in function:example 28 snprintb(buf, sizeof(buf), 41 snprintb(buf, sizeof(buf), 55 snprintb(buf, sizeof(buf),
|
| H A D | msg_376.c | 20 char buf[64]; local in function:example 23 snprintb(buf, sizeof(buf), 41 snprintb(buf, sizeof(buf), 52 snprintb(buf, sizeof(buf),
|
| H A D | msg_378.c | 23 char buf[64]; local in function:example 26 snprintb(buf, sizeof(buf), 33 snprintb(buf, sizeof(buf), 43 snprintb(buf, sizeof(buf),
|
| H A D | msg_362.c | 21 char buf[64]; local in function:example 27 snprintb(buf, sizeof(buf),
|
| H A D | msg_372.c | 21 char buf[64]; local in function:example 29 snprintb(buf, sizeof(buf),
|
| /src/usr.bin/fmt/ |
| H A D | buffer.h | 46 buf_init(struct buffer *buf) argument 48 buf->ptr = buf->bptr = calloc(BUF_SIZE, sizeof(*buf->ptr)); 49 if (buf->ptr == NULL) 51 buf->eptr = buf->ptr + BUF_SIZE; 55 buf_end(struct buffer *buf) argument 57 free(buf->bptr); 61 buf_grow(struct buffer *buf, size_ argument 83 buf_putc(struct buffer * buf,wchar_t c) argument 91 buf_reset(struct buffer * buf) argument 97 buf_unputc(struct buffer * buf) argument [all...] |
| /src/sys/arch/ia64/unwind/ |
| H A D | decode.c | 19 unwind_decode_ule128(char *buf, unsigned long *val) argument 25 val[0] += ((buf[i] & 0x7f) << (i * 7)); 27 }while((0x80 & buf[i++]) && (i < 9)); 34 buf+= i; 35 return buf; 40 unwind_decode_R1(char *buf, union unwind_desc *uwd) argument 43 if(!IS_R1(buf[0])) return NULL; 44 uwd->R1.r = ((buf[0] & 0x20) == 0x20); 45 uwd->R1.rlen = (buf[0] & 0x1f); 46 buf 51 unwind_decode_R2(char * buf,union unwind_desc * uwd) argument 65 unwind_decode_R3(char * buf,union unwind_desc * uwd) argument 78 unwind_decode_P1(char * buf,union unwind_desc * uwd) argument 90 unwind_decode_P2(char * buf,union unwind_desc * uwd) argument 102 unwind_decode_P3(char * buf,union unwind_desc * uwd) argument 114 unwind_decode_P4(char * buf,union unwind_desc * uwd,vsize_t len) argument 129 unwind_decode_P5(char * buf,union unwind_desc * uwd) argument 141 unwind_decode_P6(char * buf,union unwind_desc * uwd) argument 154 unwind_decode_P7(char * buf,union unwind_desc * uwd) argument 170 unwind_decode_P8(char * buf,union unwind_desc * uwd) argument 183 unwind_decode_P9(char * buf,union unwind_desc * uwd) argument 197 unwind_decode_P10(char * buf,union unwind_desc * uwd) argument 210 unwind_decode_B1(char * buf,union unwind_desc * uwd) argument 224 unwind_decode_B2(char * buf,union unwind_desc * uwd) argument 238 unwind_decode_B3(char * buf,union unwind_desc * uwd) argument 251 unwind_decode_B4(char * buf,union unwind_desc * uwd) argument 266 unwind_decode_X1(char * buf,union unwind_desc * uwd) argument 285 unwind_decode_X2(char * buf,union unwind_desc * uwd) argument 304 unwind_decode_X3(char * buf,union unwind_desc * uwd) argument 323 unwind_decode_X4(char * buf,union unwind_desc * uwd) argument [all...] |
| /src/usr.sbin/sdpd/ |
| H A D | compat.c | 57 dun_profile(sdp_data_t *buf, void *arg, ssize_t len) argument 60 uint8_t *first = buf->next; 67 sdp_put_uint16(buf, SDP_ATTR_SERVICE_RECORD_HANDLE); 68 sdp_put_uint32(buf, 0x00000000); 70 sdp_put_uint16(buf, SDP_ATTR_SERVICE_CLASS_ID_LIST); 71 sdp_put_seq(buf, 3); 72 sdp_put_uuid16(buf, SDP_SERVICE_CLASS_DIALUP_NETWORKING); 74 sdp_put_uint16(buf, SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST); 75 sdp_put_seq(buf, 12); 76 sdp_put_seq(buf, 110 ftrn_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 162 hset_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 213 hf_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 268 irmc_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 328 irmc_cmd_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 380 lan_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 441 opush_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 501 sp_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 560 nap_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 630 gn_profile(sdp_data_t * buf,void * arg,ssize_t len) argument 694 panu_profile(sdp_data_t * buf,void * arg,ssize_t len) argument [all...] |