Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/atf/atf-c++/detail/
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-12-stable/contrib/gperf/src/
Dpositions.h54 Positions (int pos1);
55 Positions (int pos1, int pos2);
Dpositions.icc39 Positions::Positions (int pos1)
43 _positions[0] = pos1;
47 Positions::Positions (int pos1, int pos2)
51 _positions[0] = pos1;
/freebsd-12-stable/usr.bin/sort/
Dsort.c749 char *pos1, *pos2; in parse_k() local
755 pos1 = sort_malloc((size1 + 1) * sizeof(char)); in parse_k()
757 strncpy(pos1, s, size1); in parse_k()
758 pos1[size1] = '\0'; in parse_k()
760 ret = parse_pos(pos1, ks, mef_flags, false); in parse_k()
762 sort_free(pos1); in parse_k()
/freebsd-12-stable/sys/contrib/octeon-sdk/
Dcvmx-pip.h610 bsel_pos.s.pos1 = val & 0x7f; in cvmx_pip_set_bsel_pos()
702 ptr += (bsel_pos.s.pos1 >> 3); in cvmx_pip_get_bsel_table_index()
703 bit_loc = 7 - (bsel_pos.s.pos1 & 0x3); in cvmx_pip_get_bsel_table_index()
Dcvmx-pip-defs.h1295 uint64_t pos1 : 7; /**< Bit position for the 2nd bit from 128 bit segment member
1305 uint64_t pos1 : 7;
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
Dbitmap.h150 extern int bt_range(ulong_t *bitmap, size_t *pos1, size_t *pos2,
/freebsd-12-stable/sys/dev/drm2/radeon/
Drs600.c71 u32 pos1, pos2; in avivo_is_counter_moving() local
73 pos1 = RREG32(AVIVO_D1CRTC_STATUS_POSITION + crtc_offsets[crtc]); in avivo_is_counter_moving()
76 if (pos1 != pos2) in avivo_is_counter_moving()
Devergreen.c127 u32 pos1, pos2; in dce4_is_counter_moving() local
129 pos1 = RREG32(EVERGREEN_CRTC_STATUS_POSITION + crtc_offsets[crtc]); in dce4_is_counter_moving()
132 if (pos1 != pos2) in dce4_is_counter_moving()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
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
993 (long)(pos1))
994 #define __sanitizer_syscall_pre_pwrite64(fd, buf, count, pos0, pos1) \ argument
996 (long)(fd), (long)(buf), (long)(count), (long)(pos0), (long)(pos1))
997 #define __sanitizer_syscall_post_pwrite64(res, fd, buf, count, pos0, pos1) \ argument
999 res, (long)(fd), (long)(buf), (long)(count), (long)(pos0), (long)(pos1))
2561 long pos0, long pos1);
2563 long count, long pos0, long pos1);
[all …]
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dstring_view121 constexpr int compare(size_type pos1, size_type n1, basic_string_view s) const;
122 constexpr int compare(size_type pos1, size_type n1,
125 constexpr int compare(size_type pos1, size_type n1, const charT* s) const;
126 constexpr int compare(size_type pos1, size_type n1,
Dstring214 basic_string& insert(size_type pos1, const basic_string& str);
216 basic_string& insert(size_type pos1, const T& t);
217 basic_string& insert(size_type pos1, const basic_string& str,
220 basic_string& insert(size_type pos1, const T& t, size_type pos2, size_type n); // C++17
234 basic_string& replace(size_type pos1, size_type n1, const basic_string& str);
236 basic_string& replace(size_type pos1, size_type n1, const T& t); // C++17
237 basic_string& replace(size_type pos1, size_type n1, const basic_string& str,
240 basic_string& replace(size_type pos1, size_type n1, const T& t,
313 int compare(size_type pos1, size_type n1, const basic_string& str) const;
315 int compare(size_type pos1, size_type n1, const T& t) const; // C++17
[all …]
/freebsd-12-stable/contrib/wpa/wpa_supplicant/
Dctrl_iface.c11155 char *pos1, *pos; in wpas_ctrl_iface_configure_scs() local
11174 pos1 = os_strstr(cmd, "scs_id="); in wpas_ctrl_iface_configure_scs()
11175 if (!pos1) { in wpas_ctrl_iface_configure_scs()
11182 while (pos1) { in wpas_ctrl_iface_configure_scs()
11189 desc_elem.scs_id = atoi(pos1 + 7); in wpas_ctrl_iface_configure_scs()
11190 pos1 += 7; in wpas_ctrl_iface_configure_scs()
11192 next_scs_desc = os_strstr(pos1, "scs_id="); in wpas_ctrl_iface_configure_scs()
11204 pos1[next_scs_desc - pos1 - 1] = '\0'; in wpas_ctrl_iface_configure_scs()
11215 if (os_strstr(pos1, "add ")) { in wpas_ctrl_iface_configure_scs()
11222 } else if (os_strstr(pos1, "remove")) { in wpas_ctrl_iface_configure_scs()
[all …]
/freebsd-12-stable/sys/compat/freebsd32/
Dfreebsd32_proto.h429 char pos1_l_[PADL_(uint32_t)]; uint32_t pos1; char pos1_r_[PADR_(uint32_t)]; member
472 char pos1_l_[PADL_(uint32_t)]; uint32_t pos1; char pos1_r_[PADR_(uint32_t)]; member
1071 char pos1_l_[PADL_(uint32_t)]; uint32_t pos1; char pos1_r_[PADR_(uint32_t)]; member
Dfreebsd32_systrace_args.c2384 uarg[6] = p->pos1; /* uint32_t */ in systrace_args()
2451 uarg[5] = p->pos1; /* uint32_t */ in systrace_args()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc1631 PRE_SYSCALL(pread64)(long fd, void *buf, long count, long pos0, long pos1) {}
1634 long pos1) {
1641 long pos1) {
1646 long pos0, long pos1) {}