Home
last modified time | relevance | path

Searched refs:pos1 (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/atf/atf-c++/detail/
H A Dtext.cpp108 std::string::size_type pos1 = str.find_first_not_of(" \t"); in trim() local
111 if (pos1 == std::string::npos && pos2 == std::string::npos) in trim()
113 else if (pos1 == std::string::npos) in trim()
116 return str.substr(pos1); in trim()
118 return str.substr(pos1, pos2 - pos1 + 1); in trim()
/freebsd/usr.bin/sort/
H A Dsort.c743 char *pos1, *pos2; in parse_k() local
749 pos1 = sort_malloc((size1 + 1) * sizeof(char)); in parse_k()
751 strncpy(pos1, s, size1); in parse_k()
752 pos1[size1] = '\0'; in parse_k()
754 ret = parse_pos(pos1, ks, mef_flags, false); in parse_k()
756 sort_free(pos1); in parse_k()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h153 auto pos1 = vec1.begin(); in GetOverlaps() local
157 while (pos1 != end1 && pos2 != end2) { in GetOverlaps()
158 Entry entry = pos1->Intersect(*pos2); in GetOverlaps()
161 if (pos1->GetRangeEnd() < pos2->GetRangeEnd()) in GetOverlaps()
162 ++pos1; in GetOverlaps()
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dbitmap.h150 extern int bt_range(ulong_t *bitmap, size_t *pos1, size_t *pos2,
/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h987 #define __sanitizer_syscall_pre_pread64(fd, buf, count, pos0, pos1) \ argument
989 (long)(pos0), (long)(pos1))
990 #define __sanitizer_syscall_post_pread64(res, fd, buf, count, pos0, pos1) \ argument
992 res, (long)(fd), (long)(buf), (long)(count), (long)(pos0), (long)(pos1))
993 #define __sanitizer_syscall_pre_pwrite64(fd, buf, count, pos0, pos1) \ argument
995 (long)(fd), (long)(buf), (long)(count), (long)(pos0), (long)(pos1))
998 res, (long)(fd), (long)(buf), (long)(count), (long)(pos0), (long)(pos1))
2568 long pos0, long pos1);
2570 long count, long pos0, long pos1);
2572 long pos0, long pos1);
[all …]
/freebsd/contrib/wpa/wpa_supplicant/
H A Dctrl_iface.c11155 char *pos1, *pos; in wpas_ctrl_iface_configure_scs() local
11175 if (!pos1) { in wpas_ctrl_iface_configure_scs()
11182 while (pos1) { in wpas_ctrl_iface_configure_scs()
11190 pos1 += 7; in wpas_ctrl_iface_configure_scs()
11204 pos1[next_scs_desc - pos1 - 1] = '\0'; in wpas_ctrl_iface_configure_scs()
11242 pos1 = os_strstr(pos1, "scs_up="); in wpas_ctrl_iface_configure_scs()
11243 if (!pos1) { in wpas_ctrl_iface_configure_scs()
11249 val = atoi(pos1 + 7); in wpas_ctrl_iface_configure_scs()
11312 pos1 = os_strstr(pos1, "tclas_processing="); in wpas_ctrl_iface_configure_scs()
11313 if (!pos1) { in wpas_ctrl_iface_configure_scs()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstring_view134 constexpr int compare(size_type pos1, size_type n1, basic_string_view s) const;
135 constexpr int compare(size_type pos1, size_type n1,
138 constexpr int compare(size_type pos1, size_type n1, const charT* s) const;
139 constexpr int compare(size_type pos1, size_type n1,
H A Dstring234 …basic_string& insert(size_type pos1, const basic_string& str); // con…
236 …basic_string& insert(size_type pos1, const T& t); // constex…
237 basic_string& insert(size_type pos1, const basic_string& str,
256 …basic_string& replace(size_type pos1, size_type n1, const basic_string& str); // con…
259 basic_string& replace(size_type pos1, size_type n1, const basic_string& str,
262 basic_string& replace(size_type pos1, size_type n1, const T& t,
338 …int compare(size_type pos1, size_type n1, const basic_string& str) const; // con…
341 int compare(size_type pos1, size_type n1, const basic_string& str,
344 int compare(size_type pos1, size_type n1, const T& t,
347 …int compare(size_type pos1, size_type n1, const value_type* s) const; // con…
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc1753 PRE_SYSCALL(pread64)(long fd, void *buf, long count, long pos0, long pos1) {}
1756 (long res, long fd, void *buf, long count, long pos0, long pos1) {
1764 (long fd, const void *buf, long count, long pos0, long pos1) {
1770 (long res, long fd, const void *buf, long count, long pos0, long pos1) {}
/freebsd/sys/compat/freebsd32/
H A Dfreebsd32_proto.h442 char pos1_l_[PADL_(uint32_t)]; uint32_t pos1; char pos1_r_[PADR_(uint32_t)]; member
978 char pos1_l_[PADL_(uint32_t)]; uint32_t pos1; char pos1_r_[PADR_(uint32_t)]; member
H A Dfreebsd32_systrace_args.c2388 uarg[a++] = p->pos1; /* uint32_t */ in systrace_args()