Home
last modified time | relevance | path

Searched refs:operation (Results 1 – 25 of 275) sorted by relevance

1234567891011

/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/cmd/file_write/
H A Dfile_write.c75 char *operation = NULL; in main() local
105 operation = optarg; in main()
131 if (!operation) { in main()
174 if ((strncmp(operation, "create", strlen(operation) + 1)) == 0 || in main()
175 (strncmp(operation, "overwrite", strlen(operation) + 1)) == 0) { in main()
177 } else if ((strncmp(operation, "append", strlen(operation) + 1)) == 0) { in main()
181 operation); in main()
/f-stack/freebsd/security/mac/
H A Dmac_internal.h376 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
378 mpc->mpc_ops->mpo_ ## operation (args); \
383 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
385 mpc->mpc_ops->mpo_ ## operation \
396 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
398 mpc->mpc_ops->mpo_ ## operation (args); \
407 mpc->mpc_ops->mpo_ ## operation \
504 mpc->mpc_ops->mpo_ ## operation (args); \
510 mpc->mpc_ops->mpo_ ## operation (args); \
521 mpc->mpc_ops->mpo_ ## operation (args); \
[all …]
/f-stack/freebsd/opencrypto/
H A Dcryptodev_if.m119 * @brief Perform a symmetric crypto operation
122 * operation performed on a session. A reference to the containing
124 * should not block, but queue the operation if necessary.
127 * queues are full so the operation should be queued in the crypto
131 * and the operation completed by calling 'crypto_done'. This method
135 * @param op crypto operation to perform
150 * @brief Perform an asymmetric crypto operation
153 * operation. Each asymmetric crypto operation should be
155 * This routine should not block, but queue the operation if
159 * queues are full so the operation should be queued in the crypto
[all …]
/f-stack/freebsd/contrib/zstd/programs/
H A Dzstdcli.c722 zstd_operation_mode operation = zom_compress; in main() local
853 operation = zom_train; in main()
864 operation = zom_train; in main()
875 operation = zom_train; in main()
1025 operation=zom_bench; in main()
1147 if (operation == zom_list) { in main()
1158 if (operation==zom_bench) { in main()
1205 if (operation==zom_train) { in main()
1254 && operation!=zom_decompress ) { in main()
1269 if (operation == zom_decompress) { in main()
[all …]
/f-stack/dpdk/lib/librte_pdump/
H A Drte_pdump.c125 uint16_t operation) in pdump_register_rx_callbacks() argument
133 if (cbs && operation == ENABLE) { in pdump_register_rx_callbacks()
179 uint16_t operation) in pdump_register_tx_callbacks() argument
238 uint16_t operation; in set_pdump_rxtx_cbs() local
243 operation = p->op; in set_pdump_rxtx_cbs()
244 if (operation == ENABLE) { in set_pdump_rxtx_cbs()
306 operation); in set_pdump_rxtx_cbs()
315 operation); in set_pdump_rxtx_cbs()
433 uint16_t operation, in pdump_prepare_client_request() argument
447 req->op = operation; in pdump_prepare_client_request()
[all …]
/f-stack/tools/libutil/
H A Dflopen.c53 int fd, operation, serrno, trunc; in vflopenat() local
66 operation = LOCK_EX; in vflopenat()
68 operation |= LOCK_NB; in vflopenat()
77 if (flock(fd, operation) == -1) { in vflopenat()
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dl2_forward_crypto.rst17 with a crypto device capable of doing that operation,
120 * aead_op: select the AEAD operation to perform: ENCRYPT or DECRYPT
201 Crypto operation specification
209 If no parameter is passed, the default crypto operation is:
244 check which ones are capable of performing the operation.
368 Crypto operation creation
393 After filling the crypto operation (including session attachment),
399 after the operation is done (in-place).
401 Crypto operation enqueuing/dequeuing
407 which will perform the operation at that moment:
[all …]
/f-stack/dpdk/doc/guides/prog_guide/
H A Dcryptodev_lib.rst177 (AEAD) operation.
199 supports are defined by the operation type, the operation transform, the
379 The operation structure includes the operation type, the operation status
387 operation for applications purposes.
391 to process the requested operation.
528 driver which is processing the operation.
609 dequeuing an operation before. This mode of operation allows cryptodevs which
614 To perform a synchronous operation a call to
626 for each operation.
803 /* Create crypto operation pool. */
[all …]
H A Dcompressdev.rst148 to another compression operation.
159 output data. The operation structure includes the operation type (stateless or stateful),
169 by the compression PMD to process the requested operation.
183 compression operations from a given compression operation mempool.
184 The operation gets reset before being returned to a user so that operation
289 Compression API Stateless operation
303 priv_xform in Stateless operation
409 wants the operation to be completed.
421 Compression API Stateful operation
439 operation with flush value = RTE_COMP_FLUSH_FULL/FINAL is complete.
[all …]
H A Dbbdev.rst355 The operation structure by itself defines the operation type. It includes an
356 operation status, a reference to the operation specific data, which can vary in
366 to process the requested operation.
396 operation to its allocating pool.
453 operation.
502 undergoing the operation.
504 the operation.
716 The operation flags that can be set for each LDPC encode operation are
835 The valid modes of operation are:
875 The operation flags that can be set for each LDPC decode operation are
[all …]
H A Dstack_lib.rst48 and one thread being preempted/delayed in a push or pop operation will not
51 The lock-free push operation enqueues a linked list of pointers by pointing the
53 pointer to the head of the list. The operation retries if it is unsuccessful
57 The lock-free pop operation first reserves one or more list elements by
58 adjusting the stack length, to ensure the dequeue operation will succeed
H A Dring_lib.rst144 The enqueue operation is finished.
197 The dequeue operation is finished.
239 the CAS operation fails, and the code restarts at first step.
242 the CAS operation is successful, and processing continues.
257 The CAS operation is retried on core 2 with success.
274 This is only true on core 1. The operation is finished on core 1.
288 The operation is also finished on core 2.
405 In that mode enqueue/dequeue operation is fully serialized:
406 at any given moment only one enqueue/dequeue operation can proceed.
453 with enqueue(/dequeue) operation till ``_finish_`` completes.
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/mtd/
H A Dnand-macronix.txt4 Macronix NANDs support randomizer operation for scrambling user data,
7 for program operation, i.e., tPROG 300us to 340us (randomizer enabled).
9 operation.
/f-stack/freebsd/contrib/device-tree/Bindings/hwmon/
H A Dadc128d818.txt18 If no operation mode is configured via device tree, the driver keeps the
19 currently active chip operation mode (default is mode 0).
32 Example (operation mode 2):
/f-stack/dpdk/doc/guides/tools/
H A Dtestbbdev.rst102 - Performs full operation of enqueue and dequeue
113 the point the operation is put on the accelerator queue.
118 time (us) consumed to dequeue one operation.
129 - Performs full operation of enqueue and dequeue
137 - Performs full operation of enqueue and dequeue
225 The prefix trivially defines which type of operation is included :
469 Chain of operation statuses that are expected after operation is performed.
552 Chain of operation statuses that are expected after operation is performed.
673 Chain of operation statuses that are expected after operation is performed.
775 Chain of flags for LDPC encoder operation based on the
[all …]
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dspa_history.c508 log_internal(nvlist_t *nvl, const char *operation, spa_t *spa, in log_internal() argument
527 fnvlist_add_string(nvl, ZPOOL_HIST_INT_NAME, operation); in log_internal()
540 spa_history_log_internal(spa_t *spa, const char *operation, in spa_history_log_internal() argument
556 log_internal(fnvlist_alloc(), operation, spa, htx, fmt, adx); in spa_history_log_internal()
565 spa_history_log_internal_ds(dsl_dataset_t *ds, const char *operation, in spa_history_log_internal_ds() argument
579 log_internal(nvl, operation, dsl_dataset_get_spa(ds), tx, fmt, adx); in spa_history_log_internal_ds()
584 spa_history_log_internal_dd(dsl_dir_t *dd, const char *operation, in spa_history_log_internal_dd() argument
599 log_internal(nvl, operation, dd->dd_pool->dp_spa, tx, fmt, adx); in spa_history_log_internal_dd()
604 spa_history_log_version(spa_t *spa, const char *operation, dmu_tx_t *tx) in spa_history_log_version() argument
608 spa_history_log_internal(spa, operation, tx, in spa_history_log_version()
/f-stack/freebsd/contrib/device-tree/Bindings/mfd/
H A Dtps6105x.txt25 Example (GPIO operation only):
34 Example (GPIO + regulator operation):
49 Example (GPIO + led operation):
/f-stack/dpdk/doc/guides/cryptodevs/
H A Doverview.rst18 being the operation in-place (input address = output address).
37 which means that Out-of-place operation is supported,
41 operation (Sign and Decrypt) using exponent key type only.
44 operation (Sign and Decrypt) using quintuple (crt) type key only.
/f-stack/freebsd/contrib/device-tree/Bindings/media/i2c/
H A Ddongwoon,dw9768.yaml43 - 1 # AAC2 mode(operation time# 0.48 x Tvib)
44 - 2 # AAC3 mode(operation time# 0.70 x Tvib)
45 - 3 # AAC4 mode(operation time# 0.75 x Tvib)
46 - 5 # AAC8 mode(operation time# 1.13 x Tvib)
H A Dimx219.yaml56 The sensor supports either two-lane, or four-lane operation.
57 If this property is omitted four-lane operation is assumed.
58 For two-lane operation the property must be set to <1 2>.
/f-stack/freebsd/contrib/openzfs/config/
H A Dkernel-automount.m43 dnl # The dops->d_automount() dentry operation was added as a clean
6 dnl # operation on directories for this purpose.
/f-stack/freebsd/contrib/device-tree/Bindings/rtc/
H A Disil,isl12026.txt15 value for proper operation.
18 value for proper operation.
/f-stack/freebsd/contrib/device-tree/Bindings/usb/
H A Ddwc3-xilinx.txt8 operation and >= 60MHz for HS operation
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dimx6q-cm-fx6.dts171 * Although the imx6q fuse indicates that 1.2GHz operation is possible,
173 * 1.2GHz operation point here.
193 * Although the imx6q fuse indicates that 1.2GHz operation is possible,
195 * 1.2GHz operation point here.
215 * Although the imx6q fuse indicates that 1.2GHz operation is possible,
217 * 1.2GHz operation point here.
237 * Although the imx6q fuse indicates that 1.2GHz operation is possible,
239 * 1.2GHz operation point here.
/f-stack/freebsd/contrib/device-tree/Bindings/net/
H A Dxilinx_gmii2rgmii.txt7 This core can be used in all three modes of operation(10/100/1000 Mb/s).
9 Speed of operation. This core can switch dynamically between the three

1234567891011