Searched refs:fpos (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/contrib/llvm-project/libcxx/include/__ios/
H A Dfpos.h23 class _LIBCPP_TEMPLATE_VIS fpos { class
29 _LIBCPP_HIDE_FROM_ABI fpos(streamoff __off = streamoff()) : __st_(), __off_(__off) {} function in class:fpos
36 _LIBCPP_HIDE_FROM_ABI fpos& operator+=(streamoff __off) {
41 _LIBCPP_HIDE_FROM_ABI fpos operator+(streamoff __off) const {
42 fpos __t(*this);
47 _LIBCPP_HIDE_FROM_ABI fpos& operator-=(streamoff __off) {
52 _LIBCPP_HIDE_FROM_ABI fpos operator-(streamoff __off) const {
53 fpos __t(*this);
60 inline _LIBCPP_HIDE_FROM_ABI streamoff operator-(const fpos<_StateT>& __x, const fpos<_State
[all...]
/freebsd-current/contrib/ntp/scripts/monitoring/
H A Dntploopwatch569 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[
[all...]
/freebsd-current/contrib/wpa/src/ap/
H A Dtaxonomy.c87 char *fpos = fstr; local
116 *fpos = '\0';
150 ret = os_snprintf(fpos, fend - fpos,
219 ret = os_snprintf(fpos, fend - fpos, "%s%d", sep, id);
221 if (os_snprintf_error(fend - fpos, ret))
223 fpos += ret;
229 ret = os_snprintf(fpos, fend - fpos, "
[all...]
/freebsd-current/contrib/dialog/
H A Dtailbox.c107 long fpos = 0; local
110 || (fpos = ftell(fp)) < 0)
113 if (fpos != 0) {
124 if (fpos >= BUFSIZ) {
127 size_to_read = (size_t) fpos;
129 fpos = fpos - (long) size_to_read;
130 if (fseek(fp, fpos, SEEK_SET) == -1)
137 fpos = 0;
153 } else if (fpos
[all...]
H A Dtextbox.c55 long fpos; local
56 if ((fpos = (long) lseek(obj->fd, (off_t) offset, mode)) == -1) {
70 return fpos;
234 long fpos; local
241 fpos = ftell_obj(obj);
243 lseek_set(obj, fpos - obj->fd_bytes_read);
270 lseek_set(obj, fpos);
288 long fpos = ftell_obj(obj); local
290 if (fpos < obj->file_size) { /* Not end of file yet */
333 long fpos; local
473 long fpos; local
595 long fpos; local
717 long fpos; local
[all...]
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Diosfwd.inc35 using std::fpos;
H A Dios.inc12 using std::fpos;
13 // based on [tab:fpos.operations]
/freebsd-current/lib/libsm/
H A DMakefile26 fflush.c fget.c fpos.c findfp.c flags.c fopen.c fprintf.c \
/freebsd-current/contrib/ntp/libntp/
H A Dsnprintf.c1112 int fpos = 0; local
1291 fpos = convert(fracpart, fconvert, sizeof(fconvert), 10, 0);
1293 leadfraczeros = precision - fpos;
1296 if (fpos > 0) /* Omit trailing fractional part zeros. */
1297 while (omitcount < fpos && fconvert[omitcount] == '0')
1366 while (fpos > omitcount) { /* The remaining fractional part. */
1367 fpos--;
1368 OUTCHAR(str, *len, size, fconvert[fpos]);
/freebsd-current/contrib/less/
H A Dch.c64 POSITION fpos; member in struct:filestate
76 #define ch_fpos thisfile->fpos
831 thisfile->fpos = 0;
913 printf(" file %d, flags %x, fpos %x, fsize %x, blk/off %x/%x\n",
914 fs->file, fs->flags, fs->fpos,
/freebsd-current/lib/libc++/
H A DMakefile822 IOS_HEADERS+= fpos.h

Completed in 298 milliseconds