Home
last modified time | relevance | path

Searched refs:fmtnum (Results 1 – 25 of 73) sorted by relevance

123

/dports/devel/ccdoc/ccdocv08r41/utils/
H A Dfile_sizes.pl45 printf $fmt, $file, &fmtnum($sz), &fmtnum($kb), &fmtnum($mb);
55 sub fmtnum subroutine
/dports/mail/smtpfeed/smtpfeed-1.23/
H A Dsnprintf.c160 void fmtnum __P((long value, int base, int dosign, int ljust, int len, int zpad));
225 fmtnum( value, 10,0, ljust, len, zpad ); break;
233 fmtnum( value, 8,0, ljust, len, zpad ); break;
240 fmtnum( value, 10,1, ljust, len, zpad ); break;
247 fmtnum( value, 16,0, ljust, len, zpad ); break;
254 fmtnum( value,-16,0, ljust, len, zpad ); break;
273 fmtnum(SyslogErrno, 10, 0, 0, 0, 0);
321 fmtnum( value, base, dosign, ljust, len, zpad ) in fmtnum() function
/dports/security/snort/snort-2.9.18/src/
H A Dsnprintf.c132 void fmtnum __P((long value, int base, int dosign, int ljust, int len, int zpad));
210 fmtnum( value, 10,0, ljust, len, zpad ); break;
222 fmtnum( value, 8,0, ljust, len, zpad ); break;
233 fmtnum( value, 10,1, ljust, len, zpad ); break;
243 fmtnum( value, 16,0, ljust, len, zpad ); break;
253 fmtnum( value,-16,0, ljust, len, zpad ); break;
273 fmtnum(SyslogErrno, 10, 0, 0, 0, 0);
324 fmtnum( value, base, dosign, ljust, len, zpad ) in fmtnum() function
/dports/net/nss_ldap/nss_ldap-265/
H A Dsnprintf.c106 static void fmtnum (long value, int base, int dosign,
171 fmtnum (value, 10, 0, ljust, len, zpad);
184 fmtnum (value, 8, 0, ljust, len, zpad);
196 fmtnum (value, 10, 1, ljust, len, zpad);
207 fmtnum (value, 16, 0, ljust, len, zpad);
218 fmtnum (value, -16, 0, ljust, len, zpad);
275 fmtnum (value, base, dosign, ljust, len, zpad) in fmtnum() function
/dports/devel/libast/libast-0.7/src/
H A Dsnprintf.c36 static void fmtnum(long value, int base, int dosign, int ljust, int len, int zpad, int precision);
151 fmtnum(value, 10, 0, ljust, len, zpad, precision); in dopr()
161 fmtnum(value, 8, 0, ljust, len, zpad, precision); in dopr()
171 fmtnum(value, 10, 1, ljust, len, zpad, precision); in dopr()
179 fmtnum(value, 16, 0, ljust, len, zpad, precision); in dopr()
187 fmtnum(value, -16, 0, ljust, len, zpad, precision); in dopr()
279 fmtnum(long value, int base, int dosign, int ljust, int len, int zpad, int precision) in fmtnum() function
/dports/sysutils/s6/s6-2.10.0.3/src/conn-tools/
H A Ds6-ipcserverd.c110 char fmtnum[UINT_FMT] = "?" ; in log_deny() local
115 fmtnum[uint_fmt(fmtnum, num)] = 0 ; in log_deny()
117 strerr_warni7sys("deny ", fmtuid, ":", fmtgid, " count ", fmtnum, fmtlocalmaxconn) ; in log_deny()
124 char fmtnum[UINT_FMT] = "?" ; in log_accept() local
131 fmtnum[uint_fmt(fmtnum, num)] = 0 ; in log_accept()
134 strerr_warni7x("allow ", fmtuidgid, " pid ", fmtpid, " count ", fmtnum, fmtlocalmaxconn) ; in log_accept()
/dports/databases/p5-DBI-Shell/DBI-Shell-11.97/lib/DBI/Shell/
H A DSQLMinus.pm1139 my ($num, $fmtnum, $dlen, $commify) = @_;
1140 my $formatted = sprintf "\$%${fmtnum}.${dlen}lf", $num;
1145 my ($num, $fmtnum, $dlen, $commify) = @_;
1146 my $formatted = sprintf "%0${fmtnum}.${dlen}lf", $num;
1151 my ($num, $fmtnum, $dlen, $commify) = @_;
1152 my $formatted = sprintf "%+${fmtnum}.${dlen}lf", $num;
1157 my ($num, $fmtnum, $dlen, $commify) = @_;
1158 my $formatted = sprintf "%+${fmtnum}.${dlen}lf", $num;
1163 my ($num, $fmtnum, $dlen, $commify) = @_;
1171 my ($num, $fmtnum, $dlen, $commify) = @_;
[all …]
/dports/net/sshping/sshping-0.1.4/src/
H A Dsshping.cxx130 std::string fmtnum(uint64_t n) { in fmtnum() function
495 printf("Minimum-Latency: %13s nsec\n", fmtnum(min_latency).c_str()); in run_echo_test()
496 printf("Median-Latency: %13s nsec\n", fmtnum(med_latency).c_str()); in run_echo_test()
497 printf("Average-Latency: %13s nsec\n", fmtnum(avg_latency).c_str()); in run_echo_test()
498 printf("Average-Deviation: %13s nsec\n", fmtnum(stddev).c_str()); in run_echo_test()
499 printf("Maximum-Latency: %13s nsec\n", fmtnum(max_latency).c_str()); in run_echo_test()
500 printf("Echo-Count: %13s Bytes\n", fmtnum(num_sent).c_str()); in run_echo_test()
517 printf("Upload-Size: %13s Bytes\n", fmtnum(size * MEGA).c_str()); in run_upload_test()
562 printf("Upload-Rate: %13s Bytes/second\n", fmtnum(Bps).c_str()); in run_upload_test()
576 printf("Download-Size: %13s Bytes\n", fmtnum(size * MEGA).c_str()); in run_download_test()
[all …]
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/pdf/render/
H A Dserialize.py17 fmtnum)
338 cm = ' '.join(map(fmtnum, vals))
351 self.current_page.write('%s re '%' '.join(map(fmtnum, (x, y, width, height))))
360 (fmtnum(x) if isinstance(x, numbers.Number) else x) + ' ')
403 self.current_page.write(' %s Tf '%fmtnum(size))
404 self.current_page.write('%s Tm '%' '.join(map(fmtnum, transform)))
407 fmtnum(x), fmtnum(y), glyph_id)).encode('ascii'))
500 wl(' '.join(map(fmtnum, color)) + (' RG' if stroke else ' rg'))
505 col = ' '.join(map(fmtnum, color))
/dports/audio/picard/picard-release-2.6.2/picard/util/
H A Dbytes2human.py88 fmtnum = locale.format_string(fmt, num)
89 return _("%s " + unit) % fmtnum
/dports/textproc/miller/miller-5.10.2/go/reg-test/expected/
H A Dcase-dsl-number-formatting.sh.out21 $hi = "0x".fmtnum($i, "%04x");
22 $ex = fmtnum($x, "%8.3e");
/dports/graphics/xsane/xsane-d01b4089ce6778e76fa86a0410d4e80cf6eb819e/lib/
H A Dsnprintf.c139 static void fmtnum( long value, int base, int dosign,
245 fmtnum( value, 10,0, ljust, len, zpad, precision ); break; in dopr()
253 fmtnum( value, 8,0, ljust, len, zpad, precision ); break; in dopr()
260 fmtnum( value, 10,1, ljust, len, zpad, precision ); break; in dopr()
267 fmtnum( value, 16,0, ljust, len, zpad, precision ); break; in dopr()
274 fmtnum( value,-16,0, ljust, len, zpad, precision ); break; in dopr()
355 fmtnum( long value, int base, int dosign, int ljust, in fmtnum() function
/dports/emulators/qemu60/qemu-6.0.0/roms/qboot/
H A Dprintf.c124 static int fmtnum(const char **fmt) in fmtnum() function
179 props.npad = fmtnum(&fmt); in vsnprintf()
/dports/emulators/qemu5/qemu-5.2.0/roms/qboot/
H A Dprintf.c124 static int fmtnum(const char **fmt) in fmtnum() function
179 props.npad = fmtnum(&fmt); in vsnprintf()
/dports/emulators/qemu42/qemu-4.2.1/roms/qboot/
H A Dprintf.c124 static int fmtnum(const char **fmt) in fmtnum() function
179 props.npad = fmtnum(&fmt); in vsnprintf()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/qboot/
H A Dprintf.c124 static int fmtnum(const char **fmt) in fmtnum() function
179 props.npad = fmtnum(&fmt); in vsnprintf()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/qboot/
H A Dprintf.c124 static int fmtnum(const char **fmt) in fmtnum() function
179 props.npad = fmtnum(&fmt); in vsnprintf()
/dports/emulators/qemu/qemu-6.2.0/roms/qboot/
H A Dprintf.c124 static int fmtnum(const char **fmt) in fmtnum() function
179 props.npad = fmtnum(&fmt); in vsnprintf()
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libast/string/
H A Dfmtnum.c35 fmtnum(register unsigned long n, int m) in fmtnum() function
/dports/shells/ksh93/ast-93u/src/lib/libast/string/
H A Dfmtnum.c35 fmtnum(register unsigned long n, int m) in fmtnum() function
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libast/string/
H A Dfmtnum.c35 fmtnum(register unsigned long n, int m) in fmtnum() function
/dports/databases/py-apsw/apsw-3.35.4-r1/src/
H A Dcursor.c326 APSWCursor_internal_getdescription(APSWCursor *self, int fmtnum) in APSWCursor_internal_getdescription() argument
344 if (self->description_cache[fmtnum]) in APSWCursor_internal_getdescription()
346 Py_INCREF(self->description_cache[fmtnum]); in APSWCursor_internal_getdescription()
347 return self->description_cache[fmtnum]; in APSWCursor_internal_getdescription()
362 column = Py_BuildValue(description_formats[fmtnum], in APSWCursor_internal_getdescription()
381 self->description_cache[fmtnum] = result; in APSWCursor_internal_getdescription()
/dports/graphics/aseprite/aseprite-1.2.9/third_party/mujs/
H A Djson.c159 static void fmtnum(js_State *J, js_Buffer **sb, double n) in fmtnum() function
299 case JS_CNUMBER: fmtnum(J, sb, obj->u.number); break; in fmtvalue()
309 fmtnum(J, sb, js_tonumber(J, -1)); in fmtvalue()
/dports/chinese/tin/tin-2.4.5/src/
H A Dplp_snprintf.c199 static void fmtnum(union value *value, int plp_base, int dosign, int ljust, int len, int zpad);
343 fmtnum( &value,plp_base,signed_val, ljust, len, zpad ); in dopr()
428 fmtnum( union value *value, int plp_base, int dosign, int ljust, in fmtnum() function
/dports/news/tin/tin-2.4.5/src/
H A Dplp_snprintf.c199 static void fmtnum(union value *value, int plp_base, int dosign, int ljust, int len, int zpad);
343 fmtnum( &value,plp_base,signed_val, ljust, len, zpad ); in dopr()
428 fmtnum( union value *value, int plp_base, int dosign, int ljust, in fmtnum() function

123