Home
last modified time | relevance | path

Searched full:depth (Results 1 – 24 of 24) sorted by relevance

/nrf52832-nimble/rt-thread/libcpu/mips/x1000/
H A Dmips_backtrace.c50 int depth; in backtrace_ctx() local
87 for (depth = 1; depth < size && ra && ra != (unsigned long *)0xffffffff; ++depth) in backtrace_ctx()
89 rt_kprintf("RA[%2d] : [0x%08x]\n", depth ,ra); in backtrace_ctx()
107 return depth +1; in backtrace_ctx()
118 return depth; in backtrace_ctx()
126 int size = 8, depth; in backtrace() local
152 …for ( depth = 0; depth < size && ((( unsigned long )ra > KSEG0BASE) && (( unsigned long )ra < KSEG… in backtrace()
154 rt_kprintf("RA[%2d] : [0x%08x]\n", depth, ra); in backtrace()
158 return depth; in backtrace()
177 return depth +1; in backtrace()
[all …]
/nrf52832-nimble/rt-thread/tools/
H A Dmkromfs.py90 # depth-first
153 # dirent to it. It also meet the depth-first policy in this code.
166 # Depth-First.
H A Dkconfiglib.py5487 # Detects dependency loops using depth-first search on the dependency graph
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/
H A Dtrees.c442 * Compares to subtrees, using the tree depth as tie breaker when
445 #define smaller(tree, n, m, depth) \ argument
447 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
465 smaller(tree, s->heap[j+1], s->heap[j], s->depth)) {
469 if (smaller(tree, v, s->heap[j], s->depth)) break;
639 s->depth[n] = 0;
653 s->depth[node] = 0;
677 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
678 s->depth[n] : s->depth[m]) + 1);
H A Ddeflate.h210 uch depth[2*L_CODES+1]; member
211 /* Depth of each subtree used as tie breaker for trees of equal frequency
H A Dinfutil.h40 uInt bb; /* bit length tree depth */
/nrf52832-nimble/rt-thread/components/drivers/usb/usbhost/core/
H A Dcore.c473 rt_uint32_t ptr, depth = 0; in rt_usbh_get_interface_descriptor() local
482 if(depth++ > 0x20) in rt_usbh_get_interface_descriptor()
518 int count = 0, depth = 0; in rt_usbh_get_endpoint_descriptor() local
530 if(depth++ > 0x20) in rt_usbh_get_endpoint_descriptor()
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/core/snmp/
H A Dmib2.c2121 /* return to object name, adding index depth (1) */ in system_get_object_def()
2306 /* return to object name, adding index depth (1) */ in interfaces_get_object_def()
2357 /* return to object name, adding index depth (1) */ in ifentry_get_object_def()
2678 /* return to object name, adding index depth (5) */ in atentry_get_object_def()
2774 /* return to object name, adding index depth (1) */ in ip_get_object_def()
3026 /* return to object name, adding index depth (4) */ in ip_addrentry_get_object_def()
3150 /* return to object name, adding index depth (4) */ in ip_rteentry_get_object_def()
3364 /* return to object name, adding index depth (5) */ in ip_ntomentry_get_object_def()
3470 /* return to object name, adding index depth (1) */ in icmp_get_object_def()
3590 /* return to object name, adding index depth (1) */ in tcp_get_object_def()
[all …]
/nrf52832-nimble/packages/NimBLE-latest/
H A D.travis.yml32 depth: false
/nrf52832-nimble/packages/NimBLE-latest/docs/mesh/
H A Dindex.rst12 :depth: 2
/nrf52832-nimble/packages/NimBLE-latest/docs/
H A Dindex.rst28 :depth: 2
H A Ddoxygen.xml2387 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
2388 # generated by dot. A depth value of 3 means that only nodes reachable from the
2393 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
/nrf52832-nimble/packages/NimBLE-latest/docs/btshell/
H A Dbtshell_api.rst19 :depth: 2
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/apps/
H A Dsnmp_opts.h128 * Indirectly this also limits the maximum depth of SNMP tree.
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/apps/
H A Dsnmp_opts.h128 * Indirectly this also limits the maximum depth of SNMP tree.
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/apps/mdns/
H A Dmdns.c298 mdns_readname_loop(struct pbuf *p, u16_t offset, struct mdns_domain *domain, unsigned depth) in mdns_readname_loop() argument
303 if (depth > 5) { in mdns_readname_loop()
322 /* Recursive call, maximum depth will be checked */ in mdns_readname_loop()
323 res = mdns_readname_loop(p, jumpaddr, domain, depth + 1); in mdns_readname_loop()
/nrf52832-nimble/packages/NimBLE-latest/ext/tinycrypt/documentation/
H A Dtinycrypt.rst108 limitations are discussed in-depth below.
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/apps/mdns/
H A Dmdns.c355 mdns_readname_loop(struct pbuf *p, u16_t offset, struct mdns_domain *domain, unsigned depth) in mdns_readname_loop() argument
360 if (depth > 5) { in mdns_readname_loop()
379 /* Recursive call, maximum depth will be checked */ in mdns_readname_loop()
380 res = mdns_readname_loop(p, jumpaddr, domain, depth + 1); in mdns_readname_loop()
/nrf52832-nimble/rt-thread/documentation/
H A DDoxyfile1771 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
1772 # graphs generated by dot. A depth value of 3 means that only nodes reachable
1777 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/doc/doxygen/
H A Dlwip.Doxyfile2485 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
2486 # generated by dot. A depth value of 3 means that only nodes reachable from the
2491 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
H A Dlwip.Doxyfile.cmake.in2485 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
2486 # generated by dot. A depth value of 3 means that only nodes reachable from the
2491 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/doc/doxygen/
H A Dlwip.Doxyfile2459 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
2460 # generated by dot. A depth value of 3 means that only nodes reachable from the
2465 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/
H A Dopt.h780 * The maximum depth of the SNMP tree.
/nrf52832-nimble/packages/NimBLE-latest/docs/ble_hs/
H A Dble_hs_return_codes.rst6 :depth: 2