Home | History | Annotate | Download | only in stat

Lines Matching defs:ofmt

390 	int flags, size, prec, ofmt, hilo, what;
513 fmtcasef(ofmt, FMT_DECIMAL, FMTF_DECIMAL);
514 fmtcasef(ofmt, FMT_OCTAL, FMTF_OCTAL);
515 fmtcasef(ofmt, FMT_UNSIGNED, FMTF_UNSIGNED);
516 fmtcasef(ofmt, FMT_HEX, FMTF_HEX);
517 fmtcasef(ofmt, FMT_FLOAT, FMTF_FLOAT);
518 fmtcasef(ofmt, FMT_STRING, FMTF_STRING);
520 ofmt = 0;
565 flags, size, prec, ofmt, hilo, what, quiet);
658 int flags, int size, int prec, int ofmt,
717 if (ofmt == 0) {
719 ofmt = FMTF_DECIMAL;
721 ofmt = FMTF_UNSIGNED;
729 if (ofmt == 0)
730 ofmt = FMTF_UNSIGNED;
761 if (ofmt == 0)
762 ofmt = FMTF_OCTAL;
769 if (ofmt == 0)
770 ofmt = FMTF_UNSIGNED;
783 if (ofmt == 0)
784 ofmt = FMTF_UNSIGNED;
797 if (ofmt == 0)
798 ofmt = FMTF_UNSIGNED;
841 if (ofmt == 0)
842 ofmt = FMTF_DECIMAL;
849 if (ofmt == 0)
850 ofmt = FMTF_UNSIGNED;
871 if (ofmt == 0)
872 ofmt = FMTF_UNSIGNED;
879 if (ofmt == 0)
880 ofmt = FMTF_UNSIGNED;
891 if (ofmt == 0)
892 ofmt = FMTF_UNSIGNED;
901 if (ofmt == 0)
902 ofmt = FMTF_UNSIGNED;
920 sdata = path + (ofmt == FMTF_STRING ? 0 : 4);
921 prefixlen = (ofmt == FMTF_STRING ? 4 : 0);
925 if (ofmt == 0)
926 ofmt = FMTF_STRING;
942 sdata = path + (ofmt == FMTF_STRING ? 0 : 4);
943 prefixlen = (ofmt == FMTF_STRING ? 4 : 0);
950 if (ofmt == 0)
951 ofmt = FMTF_STRING;
1001 if (ofmt == 0)
1002 ofmt = FMTF_STRING;
1043 if (ofmt == 0)
1044 ofmt = FMTF_STRING;
1058 ofmt, HIGH_PIECE, SHOW_st_rdev, quiet);
1064 ofmt, LOW_PIECE, SHOW_st_rdev, quiet);
1074 ofmt, 0, SHOW_st_size, quiet));
1082 || !(ofmt & formats) // output format not supported
1083 || (ofmt == FMTF_STRING && flags & FLAG_SPACE)
1084 || (ofmt == FMTF_STRING && flags & FLAG_PLUS)
1085 || (ofmt == FMTF_STRING && flags & FLAG_ZERO))
1092 if ((flags & FLAG_POUND) != 0 && ofmt == FMTF_STRING) {
1122 if (ofmt == FMTF_FLOAT) {
1206 if (ofmt == FMTF_STRING) {
1217 if (small && ofmt != FMTF_DECIMAL)
1224 switch (ofmt) {