| /freebsd-12-stable/contrib/libstdc++/include/bits/ |
| D | postypes.h | 81 class fpos; variable 95 class fpos 106 fpos() in fpos() function 116 fpos(streamoff __off) in fpos() function 136 fpos& 147 fpos& 160 fpos 163 fpos __pos(*this); 174 fpos 177 fpos __pos(*this); [all …]
|
| /freebsd-12-stable/contrib/ntp/scripts/monitoring/ |
| D | ntploopwatch | 569 local($cnt,$in,$out,$lo,$lf,@fpos) = @_; 606 $fpos[$[] = '' if !defined($fpos[$[]); 821 if ($fpos[$[] eq 'start') 823 if (grep($_ eq $fpos[$[+1],@f)) 825 shift(@f) while @f && $f[$[] ne $fpos[$[+1]; 829 @fpos = ('start', $f[$[], undef); 834 @fpos = ('start' , $f[$[], undef); 837 if (!defined($fpos[$[+2])) 841 $fpos[$[+2] = 0; 845 $fpos[$[+2] = [all …]
|
| /freebsd-12-stable/contrib/dialog/ |
| D | textbox.c | 55 long fpos; in lseek_obj() local 56 if ((fpos = (long) lseek(obj->fd, (off_t) offset, mode)) == -1) { in lseek_obj() 70 return fpos; in lseek_obj() 223 long fpos; in tabize() local 230 fpos = ftell_obj(obj); in tabize() 232 lseek_set(obj, fpos - obj->fd_bytes_read); in tabize() 259 lseek_set(obj, fpos); in tabize() 272 long fpos; in get_line() local 277 fpos = ftell_obj(obj); in get_line() 279 if (fpos < obj->file_size) { /* Not end of file yet */ in get_line() [all …]
|
| D | tailbox.c | 118 long fpos = 0; in last_lines() local 121 || (fpos = ftell(fp)) < 0) in last_lines() 124 if (fpos != 0) { in last_lines() 127 if (fpos >= BUFSIZ) { in last_lines() 130 size_to_read = (size_t) fpos; in last_lines() 132 fpos = fpos - (long) size_to_read; in last_lines() 133 if (fseek(fp, fpos, SEEK_SET) == -1) in last_lines() 140 fpos = 0; in last_lines() 156 } else if (fpos == 0) { in last_lines() 162 if (fseek(fp, fpos + offset, SEEK_SET) == -1) in last_lines()
|
| /freebsd-12-stable/contrib/wpa/src/ap/ |
| D | taxonomy.c | 87 char *fpos = fstr; in ie_to_string() local 116 *fpos = '\0'; in ie_to_string() 150 ret = os_snprintf(fpos, fend - fpos, in ie_to_string() 219 ret = os_snprintf(fpos, fend - fpos, "%s%d", sep, id); in ie_to_string() 221 if (os_snprintf_error(fend - fpos, ret)) in ie_to_string() 223 fpos += ret; in ie_to_string() 229 ret = os_snprintf(fpos, fend - fpos, "%s%s%s%s%s%s%s%s%s", in ie_to_string() 232 if (os_snprintf_error(fend - fpos, ret)) { in ie_to_string()
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/ |
| D | iosfwd | 86 template <class state> class fpos; 87 using streampos = fpos<char_traits<char>::state_type>; 88 using wstreampos = fpos<char_traits<wchar_t>::state_type>; 89 using u8streampos = fpos<char_traits<char8_t>::state_type>; // C++20 90 using u16streampos = fpos<char_traits<char16_t>::state_type>; 91 using u32streampos = fpos<char_traits<char32_t>::state_type>; 221 template <class _State> class _LIBCPP_TEMPLATE_VIS fpos; 222 typedef fpos<mbstate_t> streampos; 223 typedef fpos<mbstate_t> wstreampos; 225 typedef fpos<mbstate_t> u8streampos; [all …]
|
| D | string | 20 class fpos 25 fpos(streamoff = streamoff()); 32 fpos& operator+=(streamoff); 33 fpos operator+ (streamoff) const; 34 fpos& operator-=(streamoff); 35 fpos operator- (streamoff) const; 38 template <class stateT> streamoff operator-(const fpos<stateT>& x, const fpos<stateT>& y); 40 template <class stateT> bool operator==(const fpos<stateT>& x, const fpos<stateT>& y); 41 template <class stateT> bool operator!=(const fpos<stateT>& x, const fpos<stateT>& y); 552 // fpos [all …]
|
| D | ios | 23 template <class stateT> class fpos;
|
| /freebsd-12-stable/contrib/ntp/libntp/ |
| D | snprintf.c | 1112 int fpos = 0; in fmtflt() local 1291 fpos = convert(fracpart, fconvert, sizeof(fconvert), 10, 0); in fmtflt() 1293 leadfraczeros = precision - fpos; in fmtflt() 1296 if (fpos > 0) /* Omit trailing fractional part zeros. */ in fmtflt() 1297 while (omitcount < fpos && fconvert[omitcount] == '0') in fmtflt() 1366 while (fpos > omitcount) { /* The remaining fractional part. */ in fmtflt() 1367 fpos--; in fmtflt() 1368 OUTCHAR(str, *len, size, fconvert[fpos]); in fmtflt()
|
| /freebsd-12-stable/contrib/less/ |
| D | ch.c | 63 POSITION fpos; member 75 #define ch_fpos thisfile->fpos 867 thisfile->fpos = 0; 953 fs->file, fs->flags, fs->fpos,
|
| /freebsd-12-stable/lib/libsm/ |
| D | Makefile | 27 fflush.c fget.c fpos.c findfp.c flags.c fopen.c fprintf.c \
|
| /freebsd-12-stable/contrib/libstdc++/include/ext/ |
| D | pod_char_traits.h | 98 typedef fpos<state_type> pos_type;
|
| D | codecvt_specializations.h | 224 typedef typename std::fpos<state_type> pos_type;
|
| /freebsd-12-stable/contrib/libstdc++/ |
| D | ChangeLog-1999 | 492 * testsuite/27_io/fpos.cc: Likewise. 878 * bits/fpos.h: Default initialize. 879 * testsuite/27_io/fpos.cc (test03): Add test. 910 * bits/fpos.h (fpos::operator streamoff): Make const, don't return 912 * testsuite/27_io/fpos.cc: Add tests. 947 * bits/fpos.h: Fix discarding qualifiers on this when 948 using _M_position with a const fpos. 950 * testsuite/27_io/fpos.cc: New file. 1006 * bits/fpos.h: Test. 2141 * bits/fpos.h: Tweak, format. [all …]
|
| D | ChangeLog-2003 | 1510 Use streamoff as off_type and fpos<state_type> as pos_type. 1900 bits/fpos.h. 1914 (fpos): New implementation. Document implementation defined 1919 of bits/fpos.h. 1922 * testsuite/27_io/fpos/11450.cc: New test. 1923 * testsuite/27_io/fpos/mbstate_t/12065.cc: New test. 1924 * testsuite/27_io/fpos/mbstate_t/4_neg.cc: New test. 1934 * include/Makefile.am (host_headers): Remove fpos.h. 1938 * config/os/generic/fpos.h: Remove. 1955 * testsuite/27_io/fpos/mbstate_t/3.cc: Same. [all …]
|
| D | ChangeLog | 15 * testsuite/27_io/fpos/14320-1.cc: Check for "long long" and
|
| D | ChangeLog-2001 | 1008 include/bits/fpos.h, include/bits/gslice.h, include/bits/gslice_array.h, 2343 * testsuite/27_io/fpos.cc: Likewise. 3125 * include/bits/fpos.h (fpos::operator-): Don't return reference, 3127 (fpos::operator+): Same. 3128 * testsuite/27_io/fpos.cc: Add test. 4664 * include/bits/fpos.h: Define streampos/wstreampos here. 4773 * include/bits/fpos.h: Likewise. 5062 * include/bits/fpos.h: Ditto. 5981 * include/bits/fpos.h (fpos:::fpos(streamoff __pos)): Explicitly
|
| D | ChangeLog-2004 | 3783 * testsuite/27_io/fpos/14320-3.cc: Same. 3786 * testsuite/27_io/fpos/1.cc: Same. 3823 * testsuite/27_io/fpos/14775.cc: Same. 4089 * testsuite/27_io/fpos/14775.cc: New. 4623 * testsuite/27_io/fpos/14320-2.cc: Remove xfail. 4786 (class fpos): Tweak consistently. 4787 * testsuite/27_io/fpos/14320-1.cc: New. 4788 * testsuite/27_io/fpos/14320-2.cc: New. 4789 * testsuite/27_io/fpos/14320-3.cc: New. 4790 * testsuite/27_io/fpos/14320-4.cc: New. [all …]
|
| D | ChangeLog-2000 | 1440 * testsuite/27_io/fpos.cc: Same. 3563 fpos<>._M_position() to implicit calls to operator streamoff(). 4714 * bits/fpos.h: And here. 4964 * bits/fpos.h: And here. 4967 * bits/fpos.h: Move types for streamoff, streampos to.. 4968 * bits/basic_file.h: Move __c_file_type and fpos typedefs to... 5298 * bits/fpos.h: Use _GLIBCPP_USE_LIBIO guards for libio typenames
|
| D | ChangeLog-2006 | 2902 * include/bits/postypes.h (operator==(const fpos<>&, const fpos<>&), 2903 operator!=(const fpos<>&, const fpos<>&)): Add. 2904 * testsuite/27_io/fpos/mbstate_t/6.cc: New. 4408 * include/bits/postypes.h (fpos<>::operator==, operator!=): Remove, 4410 * testsuite/27_io/fpos/mbstate_t/5.cc: New.
|
| D | ChangeLog-1998 | 738 * bits/char_traits.h: make init order of fpos<> members
|
| D | acinclude.m4 | 1847 # Test wchar.h for mbstate_t, which is needed for char_traits and fpos.
|
| D | ChangeLog-2002 | 496 * include/bits/basic_ios.h, include/bits/fpos.h, 5464 * include/bits/fpos.h: Adjust includes, removing <bits/std_xxx.h>
|
| D | ChangeLog-2005 | 3961 * testsuite/27_io/fpos/1.cc: Same.
|
| /freebsd-12-stable/ |
| D | ObsoleteFiles.inc | 10200 OLD_FILES+=usr/include/c++/3.3/bits/fpos.h
|