Home
last modified time | relevance | path

Searched refs:io_flags (Results 1 – 25 of 138) sorted by relevance

123456

/dports/math/faiss/faiss-1.7.1/faiss/
H A Dindex_io.h57 Index* read_index(const char* fname, int io_flags = 0);
58 Index* read_index(FILE* f, int io_flags = 0);
59 Index* read_index(IOReader* reader, int io_flags = 0);
61 IndexBinary* read_index_binary(const char* fname, int io_flags = 0);
62 IndexBinary* read_index_binary(FILE* f, int io_flags = 0);
63 IndexBinary* read_index_binary(IOReader* reader, int io_flags = 0);
75 InvertedLists* read_InvertedLists(IOReader* reader, int io_flags = 0);
/dports/misc/rump/buildrump.sh-b914579/src/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Dvdev_queue.c194 flags = fio->io_flags & ZIO_FLAG_AGG_INHERIT; in vdev_queue_io_to_issue()
211 mio = (fio->io_flags & ZIO_FLAG_OPTIONAL) ? NULL : fio; in vdev_queue_io_to_issue()
218 (dio->io_flags & ZIO_FLAG_AGG_INHERIT) == flags && in vdev_queue_io_to_issue()
238 (dio->io_flags & ZIO_FLAG_AGG_INHERIT) == flags && in vdev_queue_io_to_issue()
242 if (!(lio->io_flags & ZIO_FLAG_OPTIONAL)) in vdev_queue_io_to_issue()
263 if (!(nio->io_flags & ZIO_FLAG_OPTIONAL)) { in vdev_queue_io_to_issue()
273 dio->io_flags &= ~ZIO_FLAG_OPTIONAL; in vdev_queue_io_to_issue()
276 ASSERT(lio->io_flags & ZIO_FLAG_OPTIONAL); in vdev_queue_io_to_issue()
299 if (dio->io_flags & ZIO_FLAG_NODATA) { in vdev_queue_io_to_issue()
329 if (fio->io_flags & ZIO_FLAG_NODATA) { in vdev_queue_io_to_issue()
[all …]
H A Dzio.c548 zio->io_orig_flags = zio->io_flags = flags; in zio_create()
900 !(zio->io_flags & ZIO_FLAG_RAW)) { in zio_read_bp_init()
908 zio->io_flags |= ZIO_FLAG_DONT_CACHE; in zio_read_bp_init()
911 zio->io_flags |= ZIO_FLAG_DONT_CACHE; in zio_read_bp_init()
1014 zio->io_flags |= ZIO_FLAG_IO_REWRITE; in zio_write_bp_init()
1249 pio->io_flags = pio->io_orig_flags; in zio_reexecute()
1283 if (!(pio->io_flags & ZIO_FLAG_GODFATHER)) in zio_reexecute()
2422 zio->io_flags |= ZIO_FLAG_IO_RETRY | in zio_vdev_io_assess()
2475 zio->io_flags |= ZIO_FLAG_IO_BYPASS; in zio_vdev_io_bypass()
2628 if (zio->io_flags & ZIO_FLAG_NODATA) { in zio_ready()
[all …]
/dports/math/faiss/faiss-1.7.1/faiss/impl/
H A Dindex_read.cpp392 read_InvertedLists(ivpq, f, io_flags); in read_ivfpq()
411 Index* read_index(IOReader* f, int io_flags) { in read_index() argument
527 read_InvertedLists(ivfl, f, io_flags); in read_index()
533 read_InvertedLists(ivfl, f, io_flags); in read_index()
572 read_InvertedLists(ivsc, f, io_flags); in read_index()
585 read_InvertedLists(ivsp, f, io_flags); in read_index()
590 idx = read_ivfpq(f, h, io_flags); in read_index()
605 ixpt->index = read_index(f, io_flags); in read_index()
719 Index* read_index(FILE* f, int io_flags) { in read_index() argument
721 return read_index(&reader, io_flags); in read_index()
[all …]
/dports/devel/libgamepad/libgamepad-0.1.2/
H A Dgamepad_analog.c8 gamepad_analog_t *gamepad_analog_open(const char *device,int io_flags) in gamepad_analog_open() argument
14 gp->io_flags = io_flags; in gamepad_analog_open()
16 if ( (gp->fd = open(device,io_flags)) < 0 ) in gamepad_analog_open()
51 if ( ! (gp->io_flags & O_NONBLOCK) ) in gamepad_analog_read()
194 gp->io_flags |= O_NONBLOCK; in gamepad_analog_set_nonblock()
201 gp->io_flags &= ~O_NONBLOCK; in gamepad_analog_unset_nonblock()
H A Dgamepad.c9 gamepad_interface_t interface,int io_flags) in gamepad_open() argument
33 gp->usbhid = gamepad_usbhid_open(device,io_flags); in gamepad_open()
41 gp->analog = gamepad_analog_open(device,io_flags); in gamepad_open()
50 gp->libhid = gamepad_libhid_open(device,io_flags); in gamepad_open()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_tcp/
H A Dtcp_conf.c33 int io_flags = 0; in flb_tcp_conf_create() local
58 io_flags = FLB_IO_TLS; in flb_tcp_conf_create()
61 io_flags = FLB_IO_TCP; in flb_tcp_conf_create()
64 io_flags = FLB_IO_TCP; in flb_tcp_conf_create()
68 io_flags |= FLB_IO_IPV6; in flb_tcp_conf_create()
75 io_flags, ins->tls); in flb_tcp_conf_create()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_http/
H A Dhttp_conf.c35 int io_flags = 0; in flb_http_conf_create() local
88 io_flags = FLB_IO_TLS; in flb_http_conf_create()
91 io_flags = FLB_IO_TCP; in flb_http_conf_create()
94 io_flags = FLB_IO_TCP; in flb_http_conf_create()
98 io_flags |= FLB_IO_IPV6; in flb_http_conf_create()
107 io_flags, ins->tls); in flb_http_conf_create()
113 io_flags, ins->tls); in flb_http_conf_create()
/dports/math/faiss/faiss-1.7.1/c_api/
H A Dindex_io_c.cpp32 int faiss_read_index(FILE* f, int io_flags, FaissIndex** p_out) { in faiss_read_index() argument
34 auto out = faiss::read_index(f, io_flags); in faiss_read_index()
42 int io_flags, in faiss_read_index_fname() argument
45 auto out = faiss::read_index(fname, io_flags); in faiss_read_index_fname()
H A Dindex_io_c.h40 int faiss_read_index(FILE* f, int io_flags, FaissIndex** p_out);
45 int faiss_read_index_fname(const char* fname, int io_flags, FaissIndex** p_out);
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_prometheus_remote_write/
H A Dremote_write_conf.c69 int io_flags = 0; in flb_prometheus_remote_write_context_create() local
129 io_flags = FLB_IO_TLS; in flb_prometheus_remote_write_context_create()
132 io_flags = FLB_IO_TCP; in flb_prometheus_remote_write_context_create()
135 io_flags = FLB_IO_TCP; in flb_prometheus_remote_write_context_create()
139 io_flags |= FLB_IO_IPV6; in flb_prometheus_remote_write_context_create()
148 io_flags, ins->tls); in flb_prometheus_remote_write_context_create()
154 io_flags, ins->tls); in flb_prometheus_remote_write_context_create()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_azure_blob/
H A Dazure_blob_conf.c64 int io_flags = 0; in flb_azure_blob_conf_create() local
140 io_flags |= FLB_IO_TLS; in flb_azure_blob_conf_create()
143 io_flags |= FLB_IO_TCP; in flb_azure_blob_conf_create()
147 io_flags, ins->tls); in flb_azure_blob_conf_create()
167 io_flags = FLB_IO_TLS; in flb_azure_blob_conf_create()
171 io_flags = FLB_IO_TCP; in flb_azure_blob_conf_create()
174 ctx->u = flb_upstream_create(config, ctx->real_endpoint, port, io_flags, in flb_azure_blob_conf_create()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_websocket/
H A Dwebsocket_conf.c35 int io_flags = 0; in flb_ws_conf_create() local
62 io_flags = FLB_IO_TLS; in flb_ws_conf_create()
65 io_flags = FLB_IO_TCP; in flb_ws_conf_create()
68 io_flags = FLB_IO_TCP; in flb_ws_conf_create()
71 …upstream = flb_upstream_create(config, ins->host.name, ins->host.port, io_flags, (void *)&ins->tls… in flb_ws_conf_create()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_kafka_rest/
H A Dkafka_conf.c33 int io_flags = 0; in flb_kr_conf_create() local
59 io_flags = FLB_IO_TLS; in flb_kr_conf_create()
62 io_flags = FLB_IO_TCP; in flb_kr_conf_create()
66 io_flags |= FLB_IO_IPV6; in flb_kr_conf_create()
73 io_flags, in flb_kr_conf_create()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/src/
H A Dflb_upstream_node.c43 int io_flags; in flb_upstream_node_create() local
150 io_flags = FLB_IO_TLS; in flb_upstream_node_create()
153 io_flags = FLB_IO_TCP; in flb_upstream_node_create()
158 io_flags, node->tls); in flb_upstream_node_create()
/dports/lang/rexx-regina/regina-rexx-3.9.3/
H A Dvmscmd.c234 #define in (io_flags == REDIR_INPUT)
235 #define out (io_flags == REDIR_OUTPUT)
236 #define fout (io_flags == REDIR_OUTFIFO)
237 int vms_do_command( tsd_t *TSD, const streng *cmd, int io_flags, environment *env, Queue *redir ) in vms_do_command() argument
298 if (io_flags == REDIR_OUTPUT || io_flags == REDIR_OUTFIFO) { in vms_do_command()
345 if (io_flags == REDIR_OUTPUT || io_flags == REDIR_OUTFIFO) { in vms_do_command()
377 flush_stack( TSD, io_flags ) ; in vms_do_command()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_datadog/
H A Ddatadog_conf.c32 int io_flags = 0; in flb_datadog_conf_create() local
71 io_flags = FLB_IO_TLS; in flb_datadog_conf_create()
75 io_flags = FLB_IO_TCP; in flb_datadog_conf_create()
197 io_flags, in flb_datadog_conf_create()
201 upstream = flb_upstream_create(config, ctx->host, ctx->port, io_flags, ins->tls); in flb_datadog_conf_create()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_splunk/
H A Dsplunk_conf.c92 int io_flags = 0; in about_load_page()
117 io_flags = FLB_IO_TLS; in about_load_page()
120 io_flags = FLB_IO_TCP; in about_load_page()
124 io_flags |= FLB_IO_IPV6; in about_load_page()
131 io_flags, in about_load_page()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_nats/
H A Dnats.c34 int io_flags; in cb_nats_init() local
48 io_flags = FLB_IO_TCP; in cb_nats_init()
50 io_flags |= FLB_IO_IPV6; in cb_nats_init()
57 io_flags, in cb_nats_init()
/dports/finance/gnucash/gnucash-4.9/gnucash/register/register-core/
H A Dtable-allgui.c280 CellIOFlags io_flags; in gnc_table_get_entry() local
284 if (io_flags & XACC_CELL_ALLOW_INPUT) in gnc_table_get_entry()
840 CellIOFlags io_flags; in gnc_table_move_cursor_internal() local
858 if (io_flags & XACC_CELL_ALLOW_SHADOW) in gnc_table_move_cursor_internal()
1009 CellIOFlags io_flags; in gnc_table_virtual_loc_valid() local
1039 if (io_flags & XACC_CELL_ALLOW_ENTER) return TRUE; in gnc_table_virtual_loc_valid()
1066 CellIOFlags io_flags; in gnc_table_enter_update() local
1090 if (io_flags == XACC_CELL_ALLOW_READ_ONLY) in gnc_table_enter_update()
1542 CellIOFlags io_flags; in gnc_table_move_tab() local
1581 if (!(io_flags & XACC_CELL_ALLOW_INPUT)) in gnc_table_move_tab()
[all …]
/dports/math/faiss/faiss-1.7.1/faiss/invlists/
H A DInvertedListsIOHook.h36 virtual InvertedLists* read(IOReader* f, int io_flags) const = 0;
46 int io_flags,
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_es/
H A Des_conf.c116 int io_flags = 0; in flb_es_conf_create() local
180 io_flags = FLB_IO_TLS; in flb_es_conf_create()
183 io_flags = FLB_IO_TCP; in flb_es_conf_create()
187 io_flags |= FLB_IO_IPV6; in flb_es_conf_create()
194 io_flags, in flb_es_conf_create()
/dports/misc/e2fsprogs-libblkid/e2fsprogs-1.46.5/lib/ext2fs/
H A Dopenfs.c125 unsigned int blocks_per_group, io_flags; in ext2fs_open2() local
166 io_flags = 0; in ext2fs_open2()
168 io_flags |= IO_FLAG_RW; in ext2fs_open2()
170 io_flags |= IO_FLAG_EXCLUSIVE; in ext2fs_open2()
172 io_flags |= IO_FLAG_DIRECT_IO; in ext2fs_open2()
174 io_flags |= IO_FLAG_THREADS; in ext2fs_open2()
175 retval = manager->open(fs->device_name, io_flags, &fs->io); in ext2fs_open2()
/dports/misc/e2fsprogs-libuuid/e2fsprogs-1.46.5/lib/ext2fs/
H A Dopenfs.c125 unsigned int blocks_per_group, io_flags; in ext2fs_open2() local
166 io_flags = 0; in ext2fs_open2()
168 io_flags |= IO_FLAG_RW; in ext2fs_open2()
170 io_flags |= IO_FLAG_EXCLUSIVE; in ext2fs_open2()
172 io_flags |= IO_FLAG_DIRECT_IO; in ext2fs_open2()
174 io_flags |= IO_FLAG_THREADS; in ext2fs_open2()
175 retval = manager->open(fs->device_name, io_flags, &fs->io); in ext2fs_open2()
/dports/sysutils/e2fsprogs/e2fsprogs-1.46.5/lib/ext2fs/
H A Dopenfs.c125 unsigned int blocks_per_group, io_flags; in ext2fs_open2() local
166 io_flags = 0; in ext2fs_open2()
168 io_flags |= IO_FLAG_RW; in ext2fs_open2()
170 io_flags |= IO_FLAG_EXCLUSIVE; in ext2fs_open2()
172 io_flags |= IO_FLAG_DIRECT_IO; in ext2fs_open2()
174 io_flags |= IO_FLAG_THREADS; in ext2fs_open2()
175 retval = manager->open(fs->device_name, io_flags, &fs->io); in ext2fs_open2()

123456