HomeSort by: relevance | last modified time | path
    Searched defs:node (Results 1 - 25 of 525) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/macppc/dev/
fancontrol.c 88 struct sysctlnode *zone_node, *node; local in function:fancontrol_init_zone
100 sysctl_createv(NULL, 0, NULL, (void *) &node,
109 sysctl_createv(NULL, 0, NULL, (void *) &node,
  /src/sys/compat/common/
compat_sysctl_09_43.c 73 struct sysctlnode node; local in function:sysctl_vfs_generic_conf
96 node = *rnode;
97 node.sysctl_data = &vfc;
98 return (sysctl_lookup(SYSCTLFN_CALL(&node)));
  /src/sys/external/bsd/drm2/dist/drm/virtio/
virtgpu_debugfs.c 50 struct drm_info_node *node = (struct drm_info_node *) m->private; local in function:virtio_gpu_features
51 struct virtio_gpu_device *vgdev = node->minor->dev->dev_private;
63 struct drm_info_node *node = (struct drm_info_node *) m->private; local in function:virtio_gpu_debugfs_irq_info
64 struct virtio_gpu_device *vgdev = node->minor->dev->dev_private;
  /src/sys/dev/sbus/
cgsix_sbus.c 93 int node, isconsole; local in function:cgsixattach
102 node = sa->sa_node;
109 fb_setsize_obp(fb, fb->fb_type.fb_depth, 1152, 900, node);
166 name = prom_getpropstring(node, "model");
168 isconsole = fb_is_console(node);
174 sc->sc_ramsize = prom_getpropint(node, "vmsize", 1) * 1024 * 1024;
cgthree_sbus.c 136 int node = sa->sa_node; local in function:cgthreeattach_sbus
152 fb_setsize_obp(fb, fb->fb_type.fb_depth, 1152, 900, node);
169 isconsole = fb_is_console(node);
170 name = prom_getpropstring(node, "model");
  /src/sys/arch/macppc/macppc/
mainbus.c 70 int node, cpus, i; local in function:mainbus_attach
86 node = OF_child(cpus);
87 while (node != 0) {
90 ca.ca_nreg = OF_getprop(node, "reg", reg, sizeof(reg));
93 node)));
94 node = OF_peer(node);
107 node = OF_peer(0);
108 if (node) {
110 oba.oba_phandle = node;
    [all...]
  /src/tests/usr.bin/xlint/lint1/
gcc_init_compound_literal.c 32 struct node { struct
34 struct node *left;
35 struct node *right;
43 static const struct node guess = {
45 &(struct node){
47 &(struct node){
52 &(struct node){
  /src/sys/kern/
init_sysctl_base.c 95 * this node is inserted so that the sysctl nodes in libc can
190 struct sysctlnode node = *rnode; local in function:sysctl_hw_machine_arch
195 node.sysctl_data = PROC_MACHINE_ARCH(l->l_proc);
196 node.sysctl_size = strlen(node.sysctl_data) + 1;
197 return sysctl_lookup(SYSCTLFN_CALL(&node));
  /src/sys/dev/ofw/
ofw_i2c_subr.c 47 * Iterate over the subtree of a i2c controller node.
55 int node, len; local in function:of_copy_i2c_devs
64 for (node = OF_child(ofnode); node; node = OF_peer(node)) {
65 if (OF_getprop(node, "name", name, sizeof(name)) <= 0)
67 len = OF_getproplen(node, "reg");
70 if (OF_getprop(node, "reg", &reg64, sizeof(reg64))
82 if (OF_getprop(node, "reg", &reg32, sizeof(reg32)
    [all...]
  /src/sys/arch/arm/ofw/
ofwgencfg_machdep.c 241 int node; local in function:ofrootfound
244 if (!(node = OF_peer(0)))
247 aa.oba_phandle = node;
  /src/sys/compat/linux32/common/
linux32_mod.c 89 struct sysctlnode node; local in function:linux32_sysctl_enable
94 node = *rnode;
95 node.sysctl_data = &val;
97 error = sysctl_lookup(SYSCTLFN_CALL(&node));
linux32_sysctl.c 91 const struct sysctlnode *node = &linux32_sysctl_root; variable in typeref:typename:const struct sysctlnode *
134 sysctl_createv(&linux32_clog, 0, &node, &node,
140 sysctl_createv(&linux32_clog, 0, &node, NULL,
145 sysctl_createv(&linux32_clog, 0, &node, NULL,
150 sysctl_createv(&linux32_clog, 0, &node, NULL,
  /src/sys/dev/
keylock.c 54 const struct sysctlnode *node = NULL; variable in typeref:typename:const struct sysctlnode *
56 sysctl_createv(clog, 0, NULL, &node,
63 if (node == NULL)
66 sysctl_createv(clog, 0, &node, NULL,
72 sysctl_createv(clog, 0, &node, NULL,
78 sysctl_createv(clog, 0, &node, NULL,
84 sysctl_createv(clog, 0, &node, NULL,
164 struct sysctlnode node; local in function:keylock_pos_sysctl
167 node = *rnode;
168 node.sysctl_data = &val
177 struct sysctlnode node; local in function:keylock_state_sysctl
190 struct sysctlnode node; local in function:keylock_order_sysctl
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_vma_manager.c 69 * node, you must call drm_vma_node_allow(). Otherwise, an mmap() call on this
70 * open-file with the offset of the node will fail with -EACCES. To revoke
86 * against concurrent access. However, node allocation and destruction is left
87 * for the caller. While calling into the vma-manager, a given node must
116 * drm_vma_offset_lookup_locked() - Find node in offset space
121 * Find a node given a start address and object size. This returns the _best_
122 * match for the given node. That is, @start may point somewhere into a valid
123 * region and the given node will be returned, as long as the node spans the
135 * node = drm_vma_offset_lookup_locked(mgr)
149 struct drm_mm_node *node, *best; local in function:drm_vma_offset_lookup_locked
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_gem_evict.c 70 return drm_mm_scan_add_block(scan, &vma->node);
106 struct drm_mm_node *node; local in function:i915_gem_evict_something
178 ret = drm_mm_scan_remove_block(&scan, &vma->node);
224 if (drm_mm_scan_remove_block(&scan, &vma->node))
238 while (ret == 0 && (node = drm_mm_scan_color_evict(&scan))) {
239 vma = container_of(node, struct i915_vma, node);
252 * This function will try to evict vmas that overlap the target node.
262 struct drm_mm_node *node; local in function:i915_gem_evict_for_node
292 drm_mm_for_each_node_in_range(node, &vm->mm, start, end)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_debugfs.c 46 struct drm_info_node *node = (struct drm_info_node *) m->private; local in function:qxl_debugfs_irq_received
47 struct qxl_device *qdev = node->minor->dev->dev_private;
60 struct drm_info_node *node = (struct drm_info_node *) m->private; local in function:qxl_debugfs_buffers_info
61 struct qxl_device *qdev = node->minor->dev->dev_private;
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_ib.c 304 struct drm_info_node *node = (struct drm_info_node *) m->private; local in function:radeon_debugfs_sa_info
305 struct drm_device *dev = node->minor->dev;
  /src/sys/external/bsd/drm2/dist/drm/ttm/
ttm_bo_manager.c 63 struct drm_mm_node *node; local in function:ttm_bo_man_get_node
72 node = kzalloc(sizeof(*node), GFP_KERNEL);
73 if (!node)
81 ret = drm_mm_insert_node_in_range(mm, node,
88 kfree(node);
90 mem->mm_node = node;
91 mem->start = node->start;
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_flip_work.h 60 * @node: list entry element
64 struct list_head node; member in struct:drm_flip_task
spsc_queue.h 67 static inline bool spsc_queue_push(struct spsc_queue *queue, struct spsc_node *node)
71 node->next = NULL;
75 tail = (struct spsc_node **)atomic_long_xchg(&queue->tail, (long)&node->next);
76 WRITE_ONCE(*tail, node);
80 * In case of first element verify new node will be visible to the consumer
93 struct spsc_node *next, *node; local in function:spsc_queue_pop
98 node = READ_ONCE(queue->head);
100 if (!node)
103 next = READ_ONCE(node->next);
110 (long)&node->next, (long) &queue->head) != (long)&node->next)
    [all...]
  /src/sys/external/bsd/drm2/drm/
drm_gem_vm.c 120 struct drm_vma_offset_node *const node = local in function:drm_gem_mmap_object_locked
123 if (node == NULL) {
130 if (!drm_vma_node_is_allowed(node, file))
133 struct drm_gem_object *const obj = container_of(node,
  /src/sys/net/
net_stats.c 73 struct sysctlnode node; local in function:netstat_sysctl
87 node = *rnode;
88 node.sysctl_data = counters;
89 node.sysctl_size = countersize;
90 rv = sysctl_lookup(SYSCTLFN_CALL(&node));
  /src/sys/sys/
uuid.h 37 /* Length of a node address (an IEEE 802 address). */
56 uint8_t node[_UUID_NODE_LEN]; member in struct:uuid
  /src/usr.bin/find/
operator.c 62 PLAN *node; /* top node removed from the plan */ local in function:yanknode
64 if ((node = (*planp)) == NULL)
67 node->next = NULL;
68 return (node);
75 * simple node or a N_EXPR node containing a list of simple nodes.
80 PLAN *next; /* temp node holding subexpression results */
81 PLAN *node; /* pointer to returned node or expression * local in function:yankexpr
171 PLAN *node; \/* temporary node used in N_NOT processing *\/ local in function:not_squish
    [all...]
  /src/sys/crypto/chacha/
chacha_impl.c 47 struct sysctlnode node; local in function:sysctl_kern_crypto_chacha_selected
49 node = *rnode;
50 node.sysctl_data = __UNCONST(chacha_impl->ci_name);
51 node.sysctl_size = strlen(chacha_impl->ci_name) + 1;
52 return sysctl_lookup(SYSCTLFN_CALL(&node));

Completed in 28 milliseconds

1 2 3 4 5 6 7 8 91011>>