/freebsd/contrib/openbsm/man/ |
H A D | audit.log.5 | 79 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL" 85 .It "File pathname N bytes + 1 NUL File name of audit trail" 101 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL" 125 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL" 147 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL" 167 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL" 184 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL" 202 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL" 216 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL" 238 .Bl -column -offset 3n ".No Terminal Address Type/Length" ".No N bytes + 1 NUL" [all …]
|
/freebsd/contrib/ntp/libntp/lib/isc/include/isc/ |
H A D | string.h | 65 * 'source' == NULL or points to a NUL terminated string. 69 * 'target' will be a NUL terminated string of no more 70 * than 'size' bytes (including NUL). 90 * 'source' == NULL or points to a NUL terminated string. 93 * 'target' will be a NUL terminated string of no more 94 * than 'size' bytes (including NUL). 101 * pointer to a NUL terminated string of at least 'size' bytes. 104 * 'target' is a pointer to a NUL terminated char[] of at 107 * 'source' == NULL or points to a NUL terminated string. 111 * 'target' will be a NUL terminated string of no more [all …]
|
/freebsd/lib/libc/amd64/string/ |
H A D | strncmp.S | 51 test %ecx, %ecx # NUL char in first string? 155 test %r8d, %r10d # NUL byte present in first string? 158 test %r9d, %r11d # NUL byte present in second string? 174 pcmpeqb %xmm0, %xmm2 # NUL byte present? 176 pandn %xmm4, %xmm2 # match and not NUL byte? 178 xor $0xffff, %r9d # mismatch or NUL byte? 207 bts %ecx, %r10d # treat as if NUL byte present 210 test %r8w, %r10w # NUL byte present in first string head? 213 test %r9w, %r11w # NUL byte present in second string head? 223 pcmpeqb %xmm0, %xmm2 # NUL byte present? [all …]
|
H A D | strlcpy.S | 59 movb $0, (%rdi, %rdx, 1) # NUL-terminate output buffer 68 sub $1, %rdx # do not count NUL byte in buffer length 75 pcmpeqb (%rsi), %xmm1 # NUL found in head? 88 pcmpeqb %xmm3, %xmm1 # NUL found in second chunk? 111 0: pcmpeqb %xmm0, %xmm1 # NUL byte encountered? 123 pcmpeqb %xmm0, %xmm1 # NUL byte encountered? 138 2: pcmpeqb %xmm1, %xmm0 # NUL byte encountered? 146 movb $0, 16(%rdi, %r8, 1) # NUL terminate 167 2: tzcnt %eax, %eax # where is the NUL byte? 177 movdqu -15(%rsi, %rax, 1), %xmm0 # load string tail (incl. NUL) [all …]
|
H A D | stpncpy.S | 58 test %rax, %rax # NUL found? 62 sub %rsi, %rdx # copy until the NUL byte 130 pcmpeqb %xmm0, %xmm1 # NUL byte encountered? 143 pcmpeqb %xmm0, %xmm1 # NUL byte encountered? 158 pcmpeqb 16(%rsi), %xmm1 # NUL byte in source tail? 160 bts %r10d, %r8d # treat end of buffer as NUL 161 tzcnt %r8d, %r8d # where is the NUL byte? 162 movdqu (%rsi, %r8, 1), %xmm0 # load source tail before NUL 163 lea 16(%rdi, %r8, 1), %rax # point return value to NUL byte 175 lea (%rdi, %r8, 1), %rax # where the NUL byte will be [all …]
|
H A D | strcmp.S | 125 test %r8d, %r10d # NUL byte present in first string? 128 test %r9d, %r11d # NUL byte present in second string? 138 pcmpeqb %xmm0, %xmm2 # NUL byte present? 140 pandn %xmm4, %xmm2 # match and not NUL byte? 142 xor $0xffff, %r9d # mismatch or NUL byte? 178 * two strings. As RSI is known not to hold a NUL byte in regsions 1 230 /* a NUL has been found in RSI */ 234 shl %cl, %r8w # adjust NUL mask to positions in RDI/RDX 236 or %r8d, %r9d # NUL bytes also count as mismatches 240 * (RDI) == (RSI) and NUL is past the string. [all …]
|
H A D | stpcpy.S | 140 pcmpeqb %xmm1, %xmm0 # NUL byte present? 149 pcmpeqb %xmm0, %xmm1 # NUL byte present? 162 pcmpeqb %xmm2, %xmm1 # NUL byte present? 170 pcmpeqb %xmm0, %xmm1 # NUL byte present? 179 add %rsi, %rax # point to NUL byte 182 add %rdi, %rax # point to destination's NUL byte 185 /* NUL encountered in second iteration */ 191 /* NUL encountered in first iteration */ 192 .Lrunt: lea 1(%rax), %edi # string length including NUL byte 194 add %rdx, %rax # point to NUL byte [all …]
|
H A D | strchrnul.S | 46 * presence of both NUL and c in each iteration. 72 or %r10, %rax # str without NUL bytes before it 113 /* NUL or c found */ 115 2: tzcnt %rax, %rax # first NUL or c byte match 117 add %rdi, %rax # pointer to found c or NUL 135 pcmpeqb %xmm1, %xmm2 # NUL bytes present? 147 pcmpeqb %xmm1, %xmm2 # NUL bytes present? 157 pcmpeqb %xmm1, %xmm2 # NUL bytes present? 166 add %rdi, %rax # pointer to found c or NUL
|
/freebsd/sys/contrib/openzfs/lib/libzutil/os/linux/ |
H A D | zutil_setproctitle.c | 46 /* Pointer to original nul character within base. */ 47 char *nul; member 161 char *base, *end, *nul, *tmp; in zfs_setproctitle_init() local 172 nul = base + strlen(base); in zfs_setproctitle_init() 173 end = nul + 1; in zfs_setproctitle_init() 215 SPT.nul = nul; in zfs_setproctitle_init() 226 char *nul; in zfs_setproctitle() local 269 nul = SPT.base + len; in zfs_setproctitle() 271 if (nul < SPT.nul) { in zfs_setproctitle() 272 *SPT.nul = '.'; in zfs_setproctitle() [all …]
|
/freebsd/contrib/tcp_wrappers/ |
H A D | Banners.Makefile | 45 $(IN)rlogind: prototype nul 46 ( ./nul ; cat prototype ) > $@ 60 $(IN)rshd: prototype nul 61 ( ./nul ; cat prototype ) > $@ 67 nul: 68 echo 'main() { write(1,"",1); return(0); }' >nul.c 69 $(CC) $(CFLAGS) -s -o nul nul.c 70 rm -f nul.c
|
/freebsd/share/syscons/keymaps/ |
H A D | uk.cp850.kbd | 8 003 '2' '"' nul nul '2' '"' nul nul O 45 040 ''' '@' nul nul ''' '@' nul nul O 62 057 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O
|
H A D | uk.iso-ctrl.kbd | 8 003 '2' '"' nul nul '@' '@' nul nul O 45 040 ''' '@' nul nul ''' '@' nul nul O 62 057 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O
|
H A D | uk.iso.kbd | 8 003 '2' '"' nul nul '@' '@' nul nul O 45 040 ''' '@' nul nul ''' '@' nul nul O 62 057 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O
|
H A D | uk.cp850-ctrl.kbd | 8 003 '2' '"' nul nul '2' '"' nul nul O 45 040 ''' '@' nul nul ''' '@' nul nul O 62 057 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O
|
H A D | fr.iso.kbd | 8 003 233 '2' nul nul '~' nop nop nop C 45 040 249 '%' nul nul ''' '@' nul nul O 62 057 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O
|
/freebsd/share/vt/keymaps/ |
H A D | uk.capsctrl.kbd | 8 003 '2' '"' nul nul '@' '@' nul nul O 45 040 ''' '@' nul nul ''' '@' nul nul O 62 057 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O
|
H A D | uk.kbd | 8 003 '2' '"' nul nul '@' '@' nul nul O 45 040 ''' '@' nul nul ''' '@' nul nul O 62 057 ' ' ' ' nul ' ' ' ' ' ' susp ' ' O
|
/freebsd/contrib/arm-optimized-routines/string/aarch64/ |
H A D | strlen.S | 42 /* For the first 32 bytes, NUL detection works on the principle that 62 string for a NUL character without aligning the string. In order to use 65 If there is a NUL byte we calculate the length from the 2 8-byte words 74 and ignore any characters before the string. If it contains a NUL 82 /* Look for a NUL byte in the first 16 bytes. */ 103 /* Find the exact offset of the first NUL byte in the first 16 bytes 113 /* Look for a NUL byte at offset 16..31 in the string. */ 129 /* Find the exact offset of the first NUL byte at offset 16..31 from 153 /* Low 32 bits of synd are non-zero if a NUL was found in datav1. */
|
/freebsd/contrib/ntp/sntp/libopts/ |
H A D | parse-duration.c | 32 #ifndef NUL 33 #define NUL '\0' macro 128 if (*pz != NUL) in parse_hr_min_sec() 203 buf[4] = NUL; in parse_yearmonthday() 208 buf[2] = NUL; in parse_yearmonthday() 213 buf[2] = NUL; in parse_yearmonthday() 253 if (*pz != NUL) in parse_YMWD() 301 buf[2] = NUL; in parse_hourminutesecond() 306 buf[2] = NUL; in parse_hourminutesecond() 311 buf[2] = NUL; in parse_hourminutesecond() [all …]
|
H A D | tokenize.c | 40 case NUL: *ppSrc = NULL; return; in copy_cooked() 68 case NUL: *ppSrc = NULL; return; in copy_raw() 76 case NUL: *ppSrc = NULL; return; in copy_raw() 111 int max_token_ct = 2; /* allow for trailing NULL pointer & NUL on string */ in alloc_token_list() 120 if (*str == NUL) goto enoent_res; in alloc_token_list() 134 } while (*pz != NUL); in alloc_token_list() 265 case NUL: in ao_string_tokenize() 275 * NUL terminate the last token and see if we have any more tokens. in ao_string_tokenize() 277 *(pzDest++) = NUL; in ao_string_tokenize() 278 } while (*str != NUL); in ao_string_tokenize()
|
H A D | load.c | 6 * for options, either from a NUL-terminated string passed in or from an 143 if ( (*(dst++) = *(src++)) == NUL) in optionMakePath() 156 case NUL: in optionMakePath() 165 if (program_pkgdatadir[0] == NUL) in optionMakePath() 196 case NUL: in add_prog_path() 226 fname_len = strlen(fname) + 1; // + NUL byte in add_prog_path() 266 *dir_part = NUL; in add_env_val() 315 *end = NUL; in munge_str() 353 *(end++) = NUL; in assemble_arg_val() 363 *(end++) = NUL; in assemble_arg_val() [all …]
|
H A D | nested.c | 83 case NUL: return; in remove_continuation() 101 if (ch == NUL) in scan_q_str() 110 * IF the next character is NUL, drop the backslash, too. in scan_q_str() 112 if (ch == NUL) in scan_q_str() 120 if (*(pzTxt++) == NUL) in scan_q_str() 160 if (ch == NUL) goto data_copy_done; in add_string() 166 *pzDst = NUL; in add_string() 169 pNV->v.strVal[0] = NUL; in add_string() 176 pNV->pzName[ nm_len ] = NUL; in add_string() 217 new_val->pzName[ nm_len ] = NUL; in add_bool() [all …]
|
/freebsd/sys/dev/bhnd/nvram/ |
H A D | bhnd_nvram_data_bcmraw.c | 56 * The Broadcom NVRAM NUL-delimited ASCII format is used by most 59 * The NVRAM data is encoded as a stream of NUL-terminated 'key=value' 60 * strings; the end of the stream is denoted by a single extra NUL character. 94 * NUL */ in bhnd_nvram_bcmraw_probe() 106 * by NUL record delimiters */ in bhnd_nvram_bcmraw_probe() 118 /* A valid BCM-RAW buffer should contain a terminating NUL for in bhnd_nvram_bcmraw_probe() 120 * NUL */ in bhnd_nvram_bcmraw_probe() 195 /* Attempt to write NUL-terminated value to output */ in bhnd_nvram_bcmraw_serialize() 255 * an extra EOF-signaling NUL (on the chance it's missing from the in bhnd_nvram_bcmraw_init() 260 capacity = io_size + 1 /* room for extra NUL */; in bhnd_nvram_bcmraw_init() [all...] |
/freebsd/contrib/libc-vis/ |
H A D | vis.3 | 101 .Dv NUL ) ; 105 .Dv NUL . 135 .Dv NUL . 146 .Dv NUL Ns 's ) . 148 .Dv NUL 157 .Dv NUL ) . 162 .Dv NUL ) . 213 .Dv NUL 390 .Li \e0 Tn \(em NUL No (000) 396 .Dv NUL
|
/freebsd/crypto/krb5/src/util/support/ |
H A D | strlcpy.c | 26 * will be copied. Always NUL terminates (unless siz == 0). 44 /* Not enough room in dst, add NUL and traverse rest of src */ in krb5int_strlcpy() 47 *d = '\0'; /* NUL-terminate dst */ in krb5int_strlcpy() 52 return(s - src - 1); /* count does not include NUL */ in krb5int_strlcpy() 58 * will be copied. Always NUL terminates (unless siz <= strlen(dst)). 87 return(dlen + (s - src)); /* count does not include NUL */ in krb5int_strlcat()
|