Home
last modified time | relevance | path

Searched refs:wuf (Results 1 – 25 of 244) sorted by relevance

12345678910

/dports/shells/ksh93-devel/ast-cc1bca27/src/cmd/tests/sfio/
H A Dtwc.c36 wchar_t wuf[256]; in tmain() local
46 swprintf(wuf, sizeof(wuf), L"%ls", L"hello-world"); in tmain()
47 wcstombs(str, wuf, sizeof(str)); in tmain()
51 swprintf(wuf, sizeof(wuf), L"%S", L"hello-world"); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
62 wcstombs(str, wuf, sizeof(str)); in tmain()
72 wcstombs(str, wuf, sizeof(str)); in tmain()
78 swprintf(wuf, sizeof(wuf), L"%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc", in tmain()
80 wcstombs(str, wuf, sizeof(str)); in tmain()
84 swprintf(wuf, sizeof(wuf), L"%C%C%C%C%C%C%C%C%C%C%C", in tmain()
[all …]
H A Dtwchar.c36 wchar_t wuf[256]; in tmain() local
46 swprintf(wuf, sizeof(wuf), L"%ls", L"hello-world"); in tmain()
47 wcstombs(str, wuf, sizeof(str)); in tmain()
51 swprintf(wuf, sizeof(wuf), L"%S", L"hello-world"); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
61 wcstombs(str, wuf, sizeof(str)); in tmain()
71 wcstombs(str, wuf, sizeof(str)); in tmain()
76 swprintf(wuf, sizeof(wuf), L"%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc", in tmain()
78 wcstombs(str, wuf, sizeof(str)); in tmain()
82 swprintf(wuf, sizeof(wuf), L"%C%C%C%C%C%C%C%C%C%C%C", in tmain()
[all …]
/dports/shells/ksh93/ast-93u/src/cmd/tests/sfio/
H A Dtwc.c36 wchar_t wuf[256]; in tmain() local
46 swprintf(wuf, sizeof(wuf), L"%ls", L"hello-world"); in tmain()
47 wcstombs(str, wuf, sizeof(str)); in tmain()
51 swprintf(wuf, sizeof(wuf), L"%S", L"hello-world"); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
62 wcstombs(str, wuf, sizeof(str)); in tmain()
72 wcstombs(str, wuf, sizeof(str)); in tmain()
78 swprintf(wuf, sizeof(wuf), L"%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc", in tmain()
80 wcstombs(str, wuf, sizeof(str)); in tmain()
84 swprintf(wuf, sizeof(wuf), L"%C%C%C%C%C%C%C%C%C%C%C", in tmain()
[all …]
H A Dtwchar.c36 wchar_t wuf[256]; in tmain() local
46 swprintf(wuf, sizeof(wuf), L"%ls", L"hello-world"); in tmain()
47 wcstombs(str, wuf, sizeof(str)); in tmain()
51 swprintf(wuf, sizeof(wuf), L"%S", L"hello-world"); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
61 wcstombs(str, wuf, sizeof(str)); in tmain()
71 wcstombs(str, wuf, sizeof(str)); in tmain()
76 swprintf(wuf, sizeof(wuf), L"%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc", in tmain()
78 wcstombs(str, wuf, sizeof(str)); in tmain()
82 swprintf(wuf, sizeof(wuf), L"%C%C%C%C%C%C%C%C%C%C%C", in tmain()
[all …]
/dports/shells/ast-ksh/ast-ksh93v/src/cmd/tests/sfio/
H A Dtwc.c36 wchar_t wuf[256]; in tmain() local
46 swprintf(wuf, sizeof(wuf), L"%ls", L"hello-world"); in tmain()
47 wcstombs(str, wuf, sizeof(str)); in tmain()
51 swprintf(wuf, sizeof(wuf), L"%S", L"hello-world"); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
62 wcstombs(str, wuf, sizeof(str)); in tmain()
72 wcstombs(str, wuf, sizeof(str)); in tmain()
78 swprintf(wuf, sizeof(wuf), L"%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc", in tmain()
80 wcstombs(str, wuf, sizeof(str)); in tmain()
84 swprintf(wuf, sizeof(wuf), L"%C%C%C%C%C%C%C%C%C%C%C", in tmain()
[all …]
H A Dtwchar.c36 wchar_t wuf[256]; in tmain() local
46 swprintf(wuf, sizeof(wuf), L"%ls", L"hello-world"); in tmain()
47 wcstombs(str, wuf, sizeof(str)); in tmain()
51 swprintf(wuf, sizeof(wuf), L"%S", L"hello-world"); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
61 wcstombs(str, wuf, sizeof(str)); in tmain()
71 wcstombs(str, wuf, sizeof(str)); in tmain()
76 swprintf(wuf, sizeof(wuf), L"%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc%lc", in tmain()
78 wcstombs(str, wuf, sizeof(str)); in tmain()
82 swprintf(wuf, sizeof(wuf), L"%C%C%C%C%C%C%C%C%C%C%C", in tmain()
[all …]
/dports/shells/ksh93/ast-93u/src/lib/libast/stdio/
H A Dvfwscanf.c68 wchar_t wuf[2]; in wideread() local
71 if (sfread(w->f, wuf, sizeof(wuf[0])) != sizeof(wuf[0])) in wideread()
73 wuf[1] = 0; in wideread()
74 return wcstombs(buf, wuf, size); in wideread()
78 r = sfread(w->f, wuf, sizeof(wuf[0])); in wideread()
79 if (r != sizeof(wuf[0])) in wideread()
81 wuf[1] = 0; in wideread()
82 r = wcstombs(buf, wuf, size); in wideread()
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libast/stdio/
H A Dvfwscanf.c68 wchar_t wuf[2]; in wideread() local
71 if (sfread(w->f, wuf, sizeof(wuf[0])) != sizeof(wuf[0])) in wideread()
73 wuf[1] = 0; in wideread()
74 return wcstombs(buf, wuf, size); in wideread()
78 r = sfread(w->f, wuf, sizeof(wuf[0])); in wideread()
79 if (r != sizeof(wuf[0])) in wideread()
81 wuf[1] = 0; in wideread()
82 r = wcstombs(buf, wuf, size); in wideread()
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libast/stdio/
H A Dvfwscanf.c68 wchar_t wuf[2]; in wideread() local
71 if (sfread(w->f, wuf, sizeof(wuf[0])) != sizeof(wuf[0])) in wideread()
73 wuf[1] = 0; in wideread()
74 return wcstombs(buf, wuf, size); in wideread()
78 r = sfread(w->f, wuf, sizeof(wuf[0])); in wideread()
79 if (r != sizeof(wuf[0])) in wideread()
81 wuf[1] = 0; in wideread()
82 r = wcstombs(buf, wuf, size); in wideread()
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/dbm/
H A D__init__.pyi42 "wuf",
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/sparc/kernel/
H A DMakefile26 obj-$(CONFIG_SPARC32) += entry.o wof.o wuf.o
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/sparc/kernel/
H A DMakefile26 obj-$(CONFIG_SPARC32) += entry.o wof.o wuf.o
/dports/multimedia/libv4l/linux-5.13-rc2/arch/sparc/kernel/
H A DMakefile26 obj-$(CONFIG_SPARC32) += entry.o wof.o wuf.o
/dports/textproc/peco/peco-v0.4.4/vendor/golang.org/x/net/http2/
H A Dtransport_test.go2272 if wuf, ok := f.(*WindowUpdateFrame); !ok || wuf.Increment != 4999 {
2407 if wuf, ok := f.(*WindowUpdateFrame); !ok || wuf.Increment != wantBack || wuf.StreamID != 0 {
2415 if wuf, ok := f.(*WindowUpdateFrame); !ok || wuf.Increment != wantBack || wuf.StreamID == 0 {
/dports/www/py-h2/h2-4.0.0/src/h2/
H A Dstream.py987 wuf = WindowUpdateFrame(self.stream_id)
988 wuf.window_increment = increment
989 return [wuf]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/h2/h2/
H A Dstream.py985 wuf = WindowUpdateFrame(self.stream_id)
986 wuf.window_increment = increment
987 return [wuf]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/hyper/hyper/h2/
H A Dstream.py1032 wuf = WindowUpdateFrame(self.stream_id)
1033 wuf.window_increment = increment
1034 return [wuf]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/third_party/h2/h2/
H A Dstream.py1019 wuf = WindowUpdateFrame(self.stream_id)
1020 wuf.window_increment = increment
1021 return [wuf]
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/third_party/hyper/hyper/h2/
H A Dstream.py1032 wuf = WindowUpdateFrame(self.stream_id)
1033 wuf.window_increment = increment
1034 return [wuf]
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/third_party/h2/h2/
H A Dstream.py985 wuf = WindowUpdateFrame(self.stream_id)
986 wuf.window_increment = increment
987 return [wuf]
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/third_party/hyper/hyper/h2/
H A Dstream.py1032 wuf = WindowUpdateFrame(self.stream_id)
1033 wuf.window_increment = increment
1034 return [wuf]
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/third_party/h2/h2/
H A Dstream.py985 wuf = WindowUpdateFrame(self.stream_id)
986 wuf.window_increment = increment
987 return [wuf]
/dports/lang/spidermonkey78/firefox-78.9.0/testing/web-platform/tests/tools/third_party/h2/h2/
H A Dstream.py1019 wuf = WindowUpdateFrame(self.stream_id)
1020 wuf.window_increment = increment
1021 return [wuf]
/dports/lang/spidermonkey78/firefox-78.9.0/testing/web-platform/tests/tools/third_party/hyper/hyper/h2/
H A Dstream.py1032 wuf = WindowUpdateFrame(self.stream_id)
1033 wuf.window_increment = increment
1034 return [wuf]
/dports/misc/exercism/cli-3.0.13/vendor/golang.org/x/net/http2/
H A Dtransport_test.go2304 if wuf, ok := f.(*WindowUpdateFrame); !ok || wuf.Increment != 4999 {
2449 if wuf, ok := f.(*WindowUpdateFrame); !ok || wuf.Increment != wantBack || wuf.StreamID != 0 {
2457 if wuf, ok := f.(*WindowUpdateFrame); !ok || wuf.Increment != wantBack || wuf.StreamID == 0 {

12345678910