/src/lib/libc/string/ |
Lint_swab.c | 12 swab(const void *src, void *dst, ssize_t len) function in typeref:typename:void
|
swab.c | 1 /* $NetBSD: swab.c,v 1.20 2022/12/28 15:34:19 riastradh Exp $ */ 32 __RCSID("$NetBSD: swab.c,v 1.20 2022/12/28 15:34:19 riastradh Exp $"); 39 swab(const void *__restrict src, void *__restrict dst, ssize_t nbytes) function in typeref:typename:void 62 * that rely on swab(ptr, ptr, n) to do the swabbing
|
Makefile.inc | 21 SRCS+= strspn.c strstr.c swab.c strnstr.c 55 swab.3 wcstok.3 wcswidth.3 wmemchr.3 wcsdup.3 wcscasecmp.3
|
/src/lib/libc/arch/m68k/string/ |
Makefile.inc | 6 swab.S
|
swab.S | 1 /* $NetBSD: swab.S,v 1.11 2014/03/18 18:20:37 riastradh Exp $ */ 5 ENTRY(swab) function 27 END(swab)
|
/src/lib/libc/arch/i386/string/ |
Makefile.inc | 6 strcmp.S strcpy.S strlen.S strncmp.S strrchr.S swab.S
|
swab.S | 9 RCSID("$NetBSD: swab.S,v 1.14 2014/05/23 02:34:19 uebayasi Exp $") 18 ENTRY(swab) function 69 END(swab)
|
/src/lib/libc/arch/x86_64/string/ |
Makefile.inc | 6 strcmp.S strcpy.S strlen.S strncmp.S strrchr.S swab.S
|
swab.S | 9 RCSID("$NetBSD: swab.S,v 1.4 2014/05/22 15:01:57 uebayasi Exp $") 17 ENTRY(swab) function 47 END(swab)
|
/src/tests/bin/dd/ |
t_dd.sh | 125 atf_test_case swab 127 atf_set "descr" "Tests conv=swab" 135 dd if=testfile conv=swab msgfmt=quiet $2 139 dd if=testfile conv=swab msgfmt=quiet 157 atf_add_test_case swab
|
/src/bin/dd/ |
misc.c | 113 if (st.swab) { 114 (void)snprintf(buf, sizeof(buf), "%llu odd length swab %s\n", 115 (unsigned long long)st.swab, 116 (st.swab == 1) ? "block" : "blocks"); 277 (unsigned long long)st.swab); 290 if (st.swab != 1) ADDS("s"); 321 if (st.swab) { 322 (void)dd_write_msg("%w odd length swab %W\n", 1);
|
dd.h | 95 uint64_t swab; /* # of odd-length swab blocks */ member in struct:__anona918b54a0208
|
dd.c | 456 ++st.swab;
|
/src/tests/lib/libc/string/ |
t_swab.c | 70 atf_tc_set_md_var(tc, "descr", "Test swab results"); 82 swab(a, r, i);
|
/src/include/ |
unistd.h | 284 void swab(const void * __restrict, void * __restrict, ssize_t);
|