Home
last modified time | relevance | path

Searched refs:ofmt (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/usr.bin/stat/
H A Dstat.c377 int flags, size, prec, ofmt, hilo, what; in output() local
500 fmtcasef(ofmt, FMT_DECIMAL, FMTF_DECIMAL); in output()
501 fmtcasef(ofmt, FMT_OCTAL, FMTF_OCTAL); in output()
502 fmtcasef(ofmt, FMT_UNSIGNED, FMTF_UNSIGNED); in output()
503 fmtcasef(ofmt, FMT_HEX, FMTF_HEX); in output()
504 fmtcasef(ofmt, FMT_FLOAT, FMTF_FLOAT); in output()
505 fmtcasef(ofmt, FMT_STRING, FMTF_STRING); in output()
507 ofmt = 0; in output()
552 flags, size, prec, ofmt, hilo, what, quiet); in output()
645 int flags, int size, int prec, int ofmt, in format1() argument
[all …]
/netbsd-src/usr.bin/crunch/crunchide/
H A DMakefile8 .for ofmt in ${OBJECT_FMTS}
9 CPPFLAGS+= -DNLIST_${ofmt:tu}
10 SRCS+= exec_${ofmt}.c
/netbsd-src/bin/ps/
H A Dprint.c1231 static char ofmt[32] = "%"; in printval() local
1356 cp = ofmt + 1; in printval()
1366 (void)printf(ofmt, width, GET(char)); in printval()
1369 (void)printf(ofmt, width, CHK_INF127(GET(u_char))); in printval()
1372 (void)printf(ofmt, width, GET(short)); in printval()
1381 (void)printf(ofmt, width, CHK_INF127(GET(u_short))); in printval()
1391 (void)printf(ofmt, width, GET(int)); in printval()
1394 (void)printf(ofmt, width, CHK_INF127(GET(u_int))); in printval()
1397 (void)printf(ofmt, width, GET(long)); in printval()
1400 (void)printf(ofmt, width, CHK_INF127(GET(u_long))); in printval()
[all …]
/netbsd-src/external/historical/nawk/dist/testdir/
H A DT.gawk371 cmp -s foo1 foo2 || ./echo 'BAD: T.gawk ofmt'
/netbsd-src/crypto/external/bsd/netpgp/dist/bindings/python/
H A Dnetpgppython_wrap.c1313 PyObject *ofmt = PyString_FromString(fmt); in PySwigObject_format() local
1314 if (ofmt) { in PySwigObject_format()
1315 res = PyString_Format(ofmt,args); in PySwigObject_format()
1316 Py_DECREF(ofmt); in PySwigObject_format()