Home
last modified time | relevance | path

Searched refs:pmode (Results 1 – 11 of 11) sorted by relevance

/third_party/curl/lib/
Dcurl_multibyte.c91 int pmode = 0; in curlx_win32_open() local
101 pmode = va_arg(param, int); in curlx_win32_open()
106 result = _wopen(filename_w, oflag, pmode); in curlx_win32_open()
113 return (_open)(filename, oflag, pmode); in curlx_win32_open()
/third_party/ffmpeg/libavcodec/
Dmobiclip.c830 int pmode, int add_coeffs, int size, int plane) in predict_intra() argument
837 switch (pmode) { in predict_intra()
952 int x, int y, int pmode, int has_coeffs, int plane) in process_block() argument
959 if (pmode < 0) in process_block()
960 pmode = get_prediction(avctx, x, y, 8); in process_block()
961 return predict_intra(avctx, frame, x, y, pmode, 0, 8, plane); in process_block()
969 if (pmode < 0) in process_block()
970 pmode = get_prediction(avctx, x, y, 8); in process_block()
971 ret = predict_intra(avctx, frame, x, y, pmode, 1, 8, plane); in process_block()
977 int new_pmode = pmode; in process_block()
[all …]
/third_party/ffmpeg/libavutil/
Dfile_open.c42 static int win32_open(const char *filename_utf8, int oflag, int pmode) in win32_open() argument
53 fd = _wsopen(filename_w, oflag, SH_DENYNO, pmode); in win32_open()
61 return _sopen(filename_utf8, oflag, SH_DENYNO, pmode); in win32_open()
Dhwcontext_vulkan.c1483 AVVkFrame *frame, enum PrepMode pmode) in prepare_frame() argument
1503 switch (pmode) { in prepare_frame()
/third_party/boost/libs/iostreams/test/detail/
Dfile_handle.hpp69 mode_t pmode = S_IRUSR | S_IWUSR |
75 int fd = BOOST_IOSTREAMS_FD_OPEN(name.c_str(), oflag, pmode);
/third_party/boost/libs/iostreams/test/
Dlarge_file_test.cpp305 mode_t pmode = in create_large_file() local
309 int fd = BOOST_IOSTREAMS_FD_OPEN(BOOST_FILE_NAME, oflag, pmode); in create_large_file()
/third_party/glib/glib/
Dgiowin32.c1631 int fid, flags, pmode; in g_io_channel_new_file() local
1682 pmode = _S_IREAD; in g_io_channel_new_file()
1686 pmode = _S_IWRITE; in g_io_channel_new_file()
1690 pmode = _S_IWRITE; in g_io_channel_new_file()
1694 pmode = _S_IREAD | _S_IWRITE; in g_io_channel_new_file()
1698 pmode = _S_IREAD | _S_IWRITE; in g_io_channel_new_file()
1702 pmode = _S_IREAD | _S_IWRITE; in g_io_channel_new_file()
1710 fid = g_open (filename, flags | _O_BINARY, pmode); in g_io_channel_new_file()
1717 g_print (",%#o)=%d\n", pmode, fid); in g_io_channel_new_file()
/third_party/FreeBSD/sys/dev/usb/
Dusb_controller.h125 void (*get_power_mode) (struct usb_device *udev, int8_t *pmode);
/third_party/boost/libs/iostreams/src/
Dfile_descriptor.cpp230 mode_t pmode = S_IRUSR | S_IWUSR | in open() local
236 int fd = BOOST_IOSTREAMS_FD_OPEN(p.c_str(), oflag, pmode); in open()
/third_party/skia/third_party/externals/brotli/c/tools/
Dbrotli.c69 static int ms_open(const char* filename, int oflag, int pmode) { in ms_open() argument
71 _sopen_s(&result, filename, oflag | O_BINARY, _SH_DENYNO, pmode); in ms_open()
/third_party/python/PC/
D_msi.c102 int result = _wopen(ws, oflag | O_NOINHERIT, pmode); in FNFCIOPEN()