Searched refs:max_depth (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-cmd-queue.c137 * @param max_depth Maximum outstanding commands that can be queued.
143 cvmx_cmd_queue_result_t cvmx_cmd_queue_initialize(cvmx_cmd_queue_id_t queue_id, int max_depth, int fpa_pool, int pool_size) argument
154 /* We artificially limit max_depth to 1<<20 words. It is an arbitrary limit */
157 if ((max_depth < 0) || (max_depth > 1<<20))
160 else if (max_depth != 0)
171 if (max_depth != (int)qstate->max_depth)
173 cvmx_dprintf("ERROR: cvmx_cmd_queue_initialize: Queue already initialized with different max_depth (%d).\n", (int)qstate->max_depth);
[all...]
H A Dcvmx-cmd-queue.h155 uint32_t max_depth; /**< Maximum outstanding command words */ member in struct:__anon6794
185 * @param max_depth Maximum outstanding commands that can be queued.
191 cvmx_cmd_queue_result_t cvmx_cmd_queue_initialize(cvmx_cmd_queue_id_t queue_id, int max_depth, int fpa_pool, int pool_size);
365 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && cvmx_unlikely(qptr->max_depth))
367 if (cvmx_unlikely(cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth))
452 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && cvmx_unlikely(qptr->max_depth))
454 if (cvmx_unlikely(cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth))
542 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && cvmx_unlikely(qptr->max_depth))
544 if (cvmx_unlikely(cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth))
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionGroupValueObjectDisplay.h58 max_depth != UINT32_MAX ||
75 uint32_t max_depth; member in class:lldb_private::OptionGroupValueObjectDisplay
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionGroupValueObjectDisplay.cpp90 max_depth = Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &success);
134 max_depth = UINT32_MAX;
161 options.SetMaximumDepth(max_depth)
/freebsd-10.0-release/sys/dev/bce/
H A Dif_bce.c10275 u32 cmd, ctl, cur_depth, max_depth, valid_cnt, val; local
10316 max_depth = (ctl & BCE_RLUP_FTQ_CTL_MAX_DEPTH) >> 12;
10319 cmd, ctl, cur_depth, max_depth, valid_cnt);
10325 max_depth = (ctl & BCE_RXP_FTQ_CTL_MAX_DEPTH) >> 12;
10328 cmd, ctl, cur_depth, max_depth, valid_cnt);
10334 max_depth = (ctl & BCE_RXP_CFTQ_CTL_MAX_DEPTH) >> 12;
10337 cmd, ctl, cur_depth, max_depth, valid_cnt);
10343 max_depth = (ctl & BCE_RV2P_PFTQ_CTL_MAX_DEPTH) >> 12;
10346 cmd, ctl, cur_depth, max_depth, valid_cnt);
10352 max_depth
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dipa-inline.c576 int max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO); local
587 max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH);
591 if (!max_depth
627 if (depth > max_depth)
H A Dgenrecog.c166 static int max_depth; variable
912 if (depth > max_depth)
913 max_depth = depth;
2449 for (i = 1; i <= max_depth; i++)
/freebsd-10.0-release/crypto/heimdal/lib/hx509/
H A Dcert.c63 unsigned int max_depth; member in struct:hx509_verify_ctx_data
406 c->max_depth = HX509_VERIFY_MAX_DEPTH;
503 * @param max_depth maxium depth of the certificate chain, include
510 hx509_verify_set_max_depth(hx509_verify_ctx ctx, unsigned int max_depth) argument
512 ctx->max_depth = max_depth;
1239 unsigned int max_depth,
1247 if (max_depth == 0)
1248 max_depth = HX509_VERIFY_MAX_DEPTH;
1269 if (path->len > max_depth) {
1235 _hx509_calculate_path(hx509_context context, int flags, time_t time_now, hx509_certs anchors, unsigned int max_depth, hx509_cert cert, hx509_certs pool, hx509_path *path) argument
[all...]
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_iso9660.c732 int max_depth; member in struct:iso9660::vdd
1072 iso9660->primary.max_depth = 0;
1076 iso9660->joliet.max_depth = 0;
2130 for (i = 0; i < iso9660->primary.max_depth; i++)
2136 for (i = 0; i < iso9660->joliet.max_depth; i++)
4196 for (depth = 0; depth < vdd->max_depth; depth++) {
4300 for (depth = 0; depth < vdd->max_depth; depth++) {
4326 !iso9660->opt.rr && depth + 1 >= vdd->max_depth))
4372 !iso9660->opt.rr && depth + 1 >= vdd->max_depth)) {
4441 if (np->subdirs.first != NULL && depth + 1 < vdd->max_depth) {
6946 isoent_alloc_path_table(struct archive_write *a, struct vdd *vdd, int max_depth) argument
[all...]
/freebsd-10.0-release/contrib/ofed/management/opensm/opensm/
H A Dosm_mcast_mgr.c750 uint8_t max_depth = 0; local
835 &port_list, 0, 0, &max_depth);
839 cl_ntoh16(osm_mgrp_get_mlid(p_mgrp)), count, max_depth);
/freebsd-10.0-release/contrib/gcclibs/libmudflap/
H A Dmf-runtime.c113 unsigned max_depth; member in struct:mfsplay_tree_s
2344 if (sp->depth > sp->max_depth)
2510 sp->max_depth = 2500;
/freebsd-10.0-release/sys/kern/
H A Dsubr_sleepqueue.c145 SYSCTL_UINT(_debug_sleepq, OID_AUTO, max_depth, CTLFLAG_RD, &sleepq_max_depth,
197 "max_depth", CTLFLAG_RD, &sleepq_chains[i].sc_max_depth, 0,
H A Dsubr_turnstile.c147 SYSCTL_UINT(_debug_turnstile, OID_AUTO, max_depth, CTLFLAG_RD,
391 "max_depth", CTLFLAG_RD, &turnstile_chains[i].tc_max_depth,
/freebsd-10.0-release/sys/dev/acpica/
H A Dacpi.c141 int max_depth, acpi_scan_cb_t user_fn, void *arg);
1646 acpi_device_scan_children(device_t bus, device_t dev, int max_depth, argument
1662 return (AcpiWalkNamespace(ACPI_TYPE_ANY, h, max_depth,
/freebsd-10.0-release/sys/net/
H A Dflowtable.c317 FS_PRINT(sb, max_depth);
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc_db.c13513 int max_depth; local
13542 max_depth = lock_depth + levels_to_lock;
13555 && relpath_depth(lock_relpath) > max_depth)

Completed in 597 milliseconds