Home
last modified time | relevance | path

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

/third_party/zlib/test/
Dminigzip.c563 char *bname, outmode[20]; local
566 snprintf(outmode, sizeof(outmode), "%s", "wb6 ");
568 strcpy(outmode, "wb6 ");
590 outmode[3] = 'f';
592 outmode[3] = 'h';
594 outmode[3] = 'R';
597 outmode[2] = (*argv)[1];
602 if (outmode[3] == ' ')
603 outmode[3] = 0;
612 file = gzdopen(fileno(stdout), outmode);
[all …]
/third_party/FreeBSD/sys/dev/usb/
Dusb_device.c1931 int inmode, outmode, inmask, outmask, mode; in usb_cdev_create() local
1940 outmode = FREAD; in usb_cdev_create()
1943 outmode = FWRITE; in usb_cdev_create()
1973 mode = (unsigned int)mode | (((unsigned int)outmask & (1 << ep)) ? outmode : 0); in usb_cdev_create()
/third_party/zlib/
DChangeLog759 - Remove trailing space in minigzip.c outmode (VC++ can't deal with it)