Home
last modified time | relevance | path

Searched refs:C_BS (Results 1 – 3 of 3) sorted by relevance

/original-bsd/bin/dd/
H A Dargs.c48 { "bs", f_bs, C_BS, C_BS|C_IBS|C_OBS|C_OSYNC },
53 { "ibs", f_ibs, C_IBS, C_BS|C_IBS },
55 { "obs", f_obs, C_OBS, C_BS|C_OBS },
95 if (ddflags & C_BS) {
102 ddflags &= ~C_BS;
105 if (ddflags & C_BS && ddflags & (C_IBS|C_OBS))
196 if (!(ddflags & C_BS))
213 if (!(ddflags & C_BS))
256 { "osync", C_OSYNC, C_BS, NULL },
H A Ddd.h52 #define C_BS 0x00004 macro
H A Ddd.c265 if (ddflags & C_BS) { in dd_in()