| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_rbtree.c | 31 root = &tree->root; in ngx_rbtree_insert() 34 if (*root == sentinel) { in ngx_rbtree_insert() 39 *root = node; in ngx_rbtree_insert() 92 ngx_rbt_black(*root); in ngx_rbtree_insert() 164 root = &tree->root; in ngx_rbtree_delete() 185 if (subst == *root) { in ngx_rbtree_delete() 186 *root = temp; in ngx_rbtree_delete() 338 if (node == *root) { in ngx_rbtree_left_rotate() 339 *root = temp; in ngx_rbtree_left_rotate() 369 *root = temp; in ngx_rbtree_right_rotate() [all …]
|
| H A D | ngx_radix_tree.c | 32 if (tree->root == NULL) { in ngx_radix_tree_create() 36 tree->root->right = NULL; in ngx_radix_tree_create() 37 tree->root->left = NULL; in ngx_radix_tree_create() 117 node = tree->root; in ngx_radix32tree_insert() 118 next = tree->root; in ngx_radix32tree_insert() 180 node = tree->root; in ngx_radix32tree_delete() 245 node = tree->root; in ngx_radix32tree_find() 279 node = tree->root; in ngx_radix128tree_insert() 280 next = tree->root; in ngx_radix128tree_insert() 360 node = tree->root; in ngx_radix128tree_delete() [all …]
|
| H A D | ngx_rbtree.h | 34 typedef void (*ngx_rbtree_insert_pt) (ngx_rbtree_node_t *root, 38 ngx_rbtree_node_t *root; member 46 (tree)->root = s; \ 53 void ngx_rbtree_insert_value(ngx_rbtree_node_t *root, ngx_rbtree_node_t *node, 55 void ngx_rbtree_insert_timer_value(ngx_rbtree_node_t *root,
|
| /f-stack/app/nginx-1.16.1/src/event/ |
| H A D | ngx_event_timer.c | 36 ngx_rbtree_node_t *node, *root, *sentinel; in ngx_event_find_timer() local 42 root = ngx_event_timer_rbtree.root; in ngx_event_find_timer() 45 node = ngx_rbtree_min(root, sentinel); in ngx_event_find_timer() 57 ngx_rbtree_node_t *node, *root, *sentinel; in ngx_event_expire_timers() local 62 root = ngx_event_timer_rbtree.root; in ngx_event_expire_timers() 64 if (root == sentinel) { in ngx_event_expire_timers() 68 node = ngx_rbtree_min(root, sentinel); in ngx_event_expire_timers() 103 ngx_rbtree_node_t *node, *root, *sentinel; in ngx_event_no_timers_left() local 106 root = ngx_event_timer_rbtree.root; in ngx_event_no_timers_left() 108 if (root == sentinel) { in ngx_event_no_timers_left() [all …]
|
| /f-stack/freebsd/contrib/openzfs/contrib/dracut/90zfs/ |
| H A D | zfs-generator.sh.in | 19 [ -z "$root" ] && root=$(getarg root=) 25 [ "${root##zfs:}" = "${root}" ] && 26 [ "${root##ZFS=}" = "${root}" ] && 47 if [ "${root}" = "zfs:AUTO" ] ; then 51 root="${root##zfs:}" 52 root="${root##ZFS=}" 53 echo "What=${root}" 59 [ -d "$GENERATOR_DIR"/initrd-root-fs.target.requires ] || mkdir -p "$GENERATOR_DIR"/initrd-root-fs.… 60 ln -s ../sysroot.mount "$GENERATOR_DIR"/initrd-root-fs.target.requires/sysroot.mount
|
| H A D | parse-zfs.sh.in | 18 case "${root}" in 24 root="zfs:AUTO" 41 root="${root#zfs:}" 42 root="${root#FILESYSTEM=}" 43 root="zfs:${root#ZFS=}" 45 root=$(printf '%s\n' "$root" | sed "s/+/ /g") 49 info "ZFS: Set ${root} as bootfs." 56 ln -s /dev/null /dev/root 2>/dev/null
|
| H A D | zfs-load-key.sh.in | 15 [ -z "$root" ] && root="$(getarg root=)" 17 [ "${root##zfs:}" = "${root}" ] && [ "${root##ZFS=}" = "${root}" ] && [ "$rootfstype" != "zfs" ] &&… 27 if [ "${root}" = "zfs:AUTO" ] ; then
|
| /f-stack/freebsd/vm/ |
| H A D | vm_map.c | 1167 root = map->root; in vm_map_splay_split() 1207 lo = root->left == left ? NULL : root->left; in vm_map_splay_findprev() 1281 root->left == llist ? root : root->left, in vm_map_splay_merge_left() 1338 root->right == rlist ? root : root->right, in vm_map_splay_merge_right() 1403 map->root = root; in vm_map_splay() 1447 root->offset += entry->end - root->start; in vm_map_entry_link() 1515 map->root = root; in vm_map_entry_unlink() 1544 map->root = root; in vm_map_entry_resize() 1932 map->root = root; in vm_map_findspace() 1966 vm_map_splay_merge_pred(root, y, root), in vm_map_findspace() [all …]
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | inftrees.c | 43 unsigned root; /* number of index bits for root table */ local 113 root = *bits; 116 if (root > max) root = max; 128 if (root < min) root = min; 202 curr = root; /* current table index bits */ 205 used = 1U << root; /* use root table entries */ 258 if (len > root && (huff & mask) != low) { 261 drop = root; 285 (*table)[low].bits = (unsigned char)root; 302 *bits = root;
|
| /f-stack/freebsd/contrib/ck/src/ |
| H A D | ck_barrier_combining.c | 94 ck_barrier_combining_group_init(struct ck_barrier_combining *root, in ck_barrier_combining_group_init() argument 113 ck_spinlock_fas_lock(&root->mutex); in ck_barrier_combining_group_init() 114 ck_barrier_combining_queue_enqueue(&queue, root->root); in ck_barrier_combining_group_init() 139 ck_spinlock_fas_unlock(&root->mutex); in ck_barrier_combining_group_init() 144 ck_barrier_combining_init(struct ck_barrier_combining *root, in ck_barrier_combining_init() argument 152 ck_spinlock_fas_init(&root->mutex); in ck_barrier_combining_init() 153 root->root = init_root; in ck_barrier_combining_init()
|
| /f-stack/freebsd/contrib/openzfs/contrib/initramfs/ |
| H A D | README.initramfs.markdown | 24 * `root=<pool>/<dataset>` 25 * `root=ZFS=<pool>/<dataset>` 26 * `root=zfs:AUTO` 27 * `root=zfs:<pool>/<dataset>` 45 this script will attempt to find a root filesystem automatically (in the 48 Filesystems below the root filesystem will be automatically mounted with no 49 additional configuration necessary. For example, if the root filesystem is 50 `rpool/ROOT/rootfs`, `rpool/root/rootfs/var`, `rpool/root/rootfs/usr`, etc. 56 and the clone used as the root filesystem. Note: 63 * If no snapshot is specified on the `root=` kernel command line, but [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_kstat.c | 247 struct sysctl_oid *root; in __kstat_create() local 332 if (root == NULL) { in __kstat_create() 341 if (root == NULL) { in __kstat_create() 349 root = SYSCTL_ADD_NODE(&ksp->ks_sysctl_ctx, SYSCTL_CHILDREN(root), in __kstat_create() 351 if (root == NULL) { in __kstat_create() 364 SYSCTL_CHILDREN(root), in __kstat_create() 366 if (root == NULL) { in __kstat_create() 380 ksp->ks_sysctl_root = root; in __kstat_create() 466 struct sysctl_oid *root; in kstat_install() local 501 VERIFY(root != NULL); in kstat_install() [all …]
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_program/ |
| H A D | zfs_program_json.ksh | 51 function list_recursive(root, prop) 52 for child in zfs.list.children(root) do 55 val, src = zfs.get_prop(root, prop) 57 failed[root] = val 59 succeeded[root] = val
|
| /f-stack/freebsd/contrib/libsodium/dist-build/ |
| H A D | emscripten.sh | 87 var root = Module; 88 if (typeof root['sodium'] !== 'object') { 90 root = global; 92 root = window; 95 if (typeof root['sodium'] === 'object' && typeof root['sodium']['totalMemory'] === 'number') { 96 Module['TOTAL_MEMORY'] = root['sodium']['totalMemory'];
|
| /f-stack/freebsd/contrib/device-tree/Bindings/pci/ |
| H A D | altera-pcie.txt | 4 - compatible : should contain "altr,pcie-root-port-1.0" or "altr,pcie-root-port-2.0" 6 For "altr,pcie-root-port-2.0", additional HIP base address and length. 10 "Hip": Hard IP region (if "altr,pcie-root-port-2.0") 18 - ranges: describes the translation of addresses for root ports and 30 compatible = "altr,pcie-root-port-1.0";
|
| H A D | pci-msi.txt | 4 Each PCI device under a root complex is uniquely identified by its Requester ID 26 PCI root complex 52 - msi-parent: Describes the MSI parent of the root complex itself. Where 53 the root complex and MSI controller do not pass sideband data with MSI 55 used by PCI devices under the root complex, if defined as such in the 56 binding for the root complex. 75 compatible = "vendor,pcie-root-complex"; 103 compatible = "vendor,pcie-root-complex"; 132 compatible = "vendor,pcie-root-complex"; 162 compatible = "vendor,pcie-root-complex"; [all …]
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/ |
| H A D | userquota_005_neg.ksh | 75 log_mustnot zfs set userquota@root=$size $QFS 79 log_mustnot zfs set userquota@root=100m $snap_fs 89 log_mustnot zfs set groupquota@root=100msfsd $QFS 92 log_mustnot zfs set groupquota@root=100m $snap_fs
|
| /f-stack/freebsd/contrib/openzfs/contrib/zcp/ |
| H A D | autosnap.lua | 47 function auto_snap(root) 48 auto, source = zfs.get_prop(root, property) 50 ds_snap_name = root .. "@" .. snap_name 59 for child in zfs.list.children(root) do
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_create/ |
| H A D | zpool_create_020_pos.ksh | 50 rm -rf /${TESTPOOL}.root 61 log_must rm -rf /${TESTPOOL}.root 62 log_must zpool create -R /${TESTPOOL}.root $TESTPOOL $DISK0 63 if [ ! -d /${TESTPOOL}.root ]
|
| /f-stack/freebsd/contrib/openzfs/tests/runfiles/ |
| H A D | freebsd.run | 15 pre_user = root 16 user = root 18 post_user = root 20 failsafe_user = root
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_get/ |
| H A D | zfs_get_002_pos.ksh | 60 typeset userquota_props=(userquota@root groupquota@root userused@root \ 61 groupused@root)
|
| H A D | zfs_get_008_pos.ksh | 58 userquota@root groupquota@root userused@root groupused@root
|
| /f-stack/dpdk/doc/guides/howto/ |
| H A D | lm_virtio_vhost_user.rst | 53 cd /root/dpdk/host_scripts 65 cd /root/dpdk/usertools 72 cd /root/dpdk/usertools 83 cd /root/dpdk/host_scripts 103 cd /root/dpdk/host_scripts 116 cd /root/dpdk/vm_scripts 134 cd /root/dpdk/host_scripts 146 cd /root/dpdk/usertools 153 cd /root/dpdk/usertools 164 cd /root/dpdk/host_scripts [all …]
|
| /f-stack/freebsd/arm/broadcom/bcm2835/ |
| H A D | bcm2838_xhci.c | 81 phandle_t root; in bcm_xhci_probe() local 93 root = OF_finddevice("/"); in bcm_xhci_probe() 94 if (root == -1) in bcm_xhci_probe() 96 if (!ofw_bus_node_is_compatible(root, "raspberrypi,4-model-b")) in bcm_xhci_probe()
|
| /f-stack/freebsd/x86/x86/ |
| H A D | mp_x86.c | 778 KASSERT(root->type == TOPO_TYPE_SYSTEM || root->type == TOPO_TYPE_CACHE || in x86topo_add_sched_group() 779 root->type == TOPO_TYPE_GROUP, in x86topo_add_sched_group() 782 cg_root->cg_count = root->cpu_count; in x86topo_add_sched_group() 783 if (root->type == TOPO_TYPE_SYSTEM) in x86topo_add_sched_group() 786 cg_root->cg_level = root->subtype; in x86topo_add_sched_group() 794 node = root; in x86topo_add_sched_group() 797 node = topo_next_node(root, node); in x86topo_add_sched_group() 817 node = root; in x86topo_add_sched_group() 823 node = topo_next_node(root, node); in x86topo_add_sched_group() 837 node = root; in x86topo_add_sched_group() [all …]
|