Searched refs:hnode (Results 1 - 25 of 30) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/include/dspbridge/
H A Dnode.h72 * hnode: The node handle.
88 extern int node_alloc_msg_buf(struct node_object *hnode,
97 * hnode: Node handle returned from node_allocate.
101 * -EFAULT: Invalid hnode.
113 extern int node_change_priority(struct node_object *hnode, s32 prio);
196 * hnode: Node handle returned from node_allocate().
199 * -EFAULT: Invalid hnode.
209 extern int node_create(struct node_object *hnode);
250 * -EFAULT: Invalid hnode.
257 * 0: hnode i
[all...]
H A Ddisp.h101 * hnode: Node object representing a node currently
112 * hnode != NULL.
117 struct node_object *hnode,
127 * hnode: Node handle obtained from node_allocate().
141 * hnode != NULL.
143 * node_get_type(hnode) != NODE_DEVICE.
147 struct node_object *hnode,
159 * hnode: Node object representing a node currently
170 * hnode != NULL.
174 struct node_object *hnode,
[all...]
H A Dnodepriv.h88 * hnode: Node object allocated from node_allocate().
94 * -EFAULT: Invalid hnode.
104 extern int node_get_channel_id(struct node_object *hnode,
112 * hnode: Node allocated with node_allocate().
116 * -EFAULT: Invalid hnode.
121 extern int node_get_strm_mgr(struct node_object *hnode,
129 * hnode: Node allocated with node_allocate(), or DSP_HGPPNODE.
133 * Valid hnode.
136 extern u32 node_get_timeout(struct node_object *hnode);
143 * hnode
[all...]
H A Dresourcecleanup.h37 extern int drv_insert_node_res_element(void *hnode, void *node_resource,
52 extern enum node_state node_get_state(void *hnode);
H A Ddspapi-ioctl.h186 void *hnode; member in struct:trapped_args::__anon15930
193 void *hnode; member in struct:trapped_args::__anon15931
198 void *hnode; member in struct:trapped_args::__anon15932
207 void *hnode; member in struct:trapped_args::__anon15933
211 void *hnode; member in struct:trapped_args::__anon15934
215 void *hnode; member in struct:trapped_args::__anon15935
221 void *hnode; member in struct:trapped_args::__anon15936
227 void *hnode; member in struct:trapped_args::__anon15937
233 void *hnode; member in struct:trapped_args::__anon15938
237 void *hnode; member in struct:trapped_args::__anon15939
243 void *hnode; member in struct:trapped_args::__anon15940
250 void *hnode; member in struct:trapped_args::__anon15941
254 void *hnode; member in struct:trapped_args::__anon15942
308 void *hnode; member in struct:trapped_args::__anon15951
[all...]
H A Dstrm.h252 * hnode: Node handle returned from node_allocate().
260 * -EFAULT: Invalid hnode.
262 * hnode is not a task or DAIS socket node.
273 extern int strm_open(struct node_object *hnode, u32 dir,
H A Ddrv.h81 void *hnode; member in struct:node_res_object
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/rmgr/
H A Dnode.c82 #define NODE_SET_PRIORITY(hnode, prio) ((hnode)->prio = prio)
83 #define NODE_SET_STATE(hnode, state) ((hnode)->node_state = state)
241 static void delete_node(struct node_object *hnode,
247 static void fill_stream_def(struct node_object *hnode,
251 static int get_fxn_address(struct node_object *hnode, u32 * fxn_addr,
254 struct node_object *hnode,
279 enum node_state node_get_state(void *hnode) argument
281 struct node_object *pnode = (struct node_object *)hnode;
689 node_alloc_msg_buf(struct node_object *hnode, u32 usize, struct dsp_bufferattr *pattr, u8 **pbuffer) argument
776 node_change_priority(struct node_object *hnode, s32 prio) argument
849 struct node_object *hnode; local
1146 node_create(struct node_object *hnode) argument
1623 struct node_object *hnode; local
1680 node_free_msg_buf(struct node_object *hnode, u8 * pbuffer, struct dsp_bufferattr *pattr) argument
1722 node_get_attr(struct node_object *hnode, struct dsp_nodeattr *pattr, u32 attr_size) argument
1766 node_get_channel_id(struct node_object *hnode, u32 dir, u32 index, u32 *chan_id) argument
1808 node_get_message(struct node_object *hnode, struct dsp_msg *message, u32 utimeout) argument
1905 node_get_strm_mgr(struct node_object *hnode, struct strm_mgr **strm_man) argument
1923 node_get_load_type(struct node_object *hnode) argument
1940 node_get_timeout(struct node_object *hnode) argument
1957 node_get_type(struct node_object *hnode) argument
1991 node_on_exit(struct node_object *hnode, s32 node_status) argument
2017 node_pause(struct node_object *hnode) argument
2099 node_put_message(struct node_object *hnode, const struct dsp_msg *pmsg, u32 utimeout) argument
2197 node_register_notify(struct node_object *hnode, u32 event_mask, u32 notify_type, struct dsp_notification *hnotification) argument
2251 node_run(struct node_object *hnode) argument
2371 node_terminate(struct node_object *hnode, int *pstatus) argument
2505 delete_node(struct node_object *hnode, struct process_context *pr_ctxt) argument
2644 struct node_object *hnode; local
2763 fill_stream_def(struct node_object *hnode, struct node_strmdef *pstrm_def, struct dsp_strmattr *pattrs) argument
2823 get_fxn_address(struct node_object *hnode, u32 * fxn_addr, u32 phase) argument
2864 get_node_info(struct node_object *hnode, struct dsp_nodeinfo *node_info) argument
2892 get_node_props(struct dcd_manager *hdcd_mgr, struct node_object *hnode, const struct dsp_uuid *node_uuid, struct dcd_genericobj *dcd_prop) argument
3134 struct node_object *hnode = (struct node_object *)priv_ref; local
3178 struct node_object *hnode = (struct node_object *)priv_ref; local
[all...]
H A Ddisp.c223 struct node_object *hnode,
232 DBC_REQUIRE(hnode != NULL);
239 status = send_message(disp_obj, node_get_timeout(hnode),
250 struct node_object *hnode, u32 rms_fxn,
281 DBC_REQUIRE(hnode != NULL);
282 DBC_REQUIRE(node_get_type(hnode) != NODE_DEVICE);
296 node_type = node_get_type(hnode);
354 if (node_get_load_type(hnode) == NLDR_DYNAMICLOAD) {
361 rms_cmd->data = node_get_type(hnode);
396 * don't just reach into the hnode struc
222 disp_node_change_priority(struct disp_object *disp_obj, struct node_object *hnode, u32 rms_fxn, nodeenv node_env, s32 prio) argument
249 disp_node_create(struct disp_object *disp_obj, struct node_object *hnode, u32 rms_fxn, u32 ul_create_fxn, const struct node_createargs *pargs, nodeenv *node_env) argument
485 disp_node_delete(struct disp_object *disp_obj, struct node_object *hnode, u32 rms_fxn, u32 ul_delete_fxn, nodeenv node_env) argument
539 disp_node_run(struct disp_object *disp_obj, struct node_object *hnode, u32 rms_fxn, u32 ul_execute_fxn, nodeenv node_env) argument
[all...]
H A Ddrv.c80 int drv_insert_node_res_element(void *hnode, void *node_resource, argument
95 (*node_res_obj)->hnode = hnode;
129 node_state = node_get_state(node_res_obj->hnode);
135 (node_res_obj->hnode, &status);
H A Dstrm.c459 int strm_open(struct node_object *hnode, u32 dir, u32 index, argument
483 status = node_get_channel_id(hnode, dir, index, &ul_chnl_id);
486 status = node_get_strm_mgr(hnode, &strm_mgr_obj);
604 dev_dbg(bridge, "%s: hnode: %p dir: 0x%x index: 0x%x pattr: %p "
606 hnode, dir, index, pattr, strmres, status);
H A Dnldr.c1618 struct nldr_nodeobject *hnode = (struct nldr_nodeobject *)ref; local
1629 DBC_REQUIRE(hnode);
1632 nldr_obj = hnode->nldr_obj;
1646 switch (hnode->phase) {
1664 segid = hnode->seg_id[mem_phase_bit];
1667 if ((hnode->code_data_flag_mask >> mem_phase_bit) & 0x1)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Didcinvideo.c64 } hnode; typedef in typeref:struct:__anon3158
73 hnode huff_nodes[256][HUF_TOKENS*2];
85 static int huff_smallest_node(hnode *hnodes, int num_hnodes) {
118 hnode *node, *hnodes;
175 hnode *hnodes;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netfilter/
H A Dnf_conntrack_helper.c59 hlist_for_each_entry_rcu(helper, n, &nf_ct_helper_hash[h], hnode) {
74 hlist_for_each_entry_rcu(h, n, &nf_ct_helper_hash[i], hnode) {
191 hlist_add_head_rcu(&me->hnode, &nf_ct_helper_hash[h]);
211 &net->ct.expect_hash[i], hnode) {
235 hlist_del_rcu(&me->hnode);
H A Dnf_conntrack_expect.c50 hlist_del_rcu(&exp->hnode);
99 hlist_for_each_entry_rcu(i, n, &net->ct.expect_hash[h], hnode) {
139 hlist_for_each_entry(i, n, &net->ct.expect_hash[h], hnode) {
326 hlist_add_head_rcu(&exp->hnode, &net->ct.expect_hash[h]);
388 hlist_for_each_entry(i, n, &net->ct.expect_hash[h], hnode) {
513 expect = hlist_entry(n, struct nf_conntrack_expect, hnode);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Didcinvideo.c62 } hnode; typedef in typeref:struct:__anon1919
72 hnode huff_nodes[256][HUF_TOKENS*2];
84 static int huff_smallest_node(hnode *hnodes, int num_hnodes) {
117 hnode *node, *hnodes;
176 hnode *hnodes;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/pmgr/
H A Ddspapi.c1064 void *pr_ctxt, void *hnode)
1068 (int)hnode - 1);
1149 args->args_node_allocmsgbuf.hnode);
1166 status = node_alloc_msg_buf(node_res->hnode,
1183 args->args_node_changepriority.hnode);
1188 ret = node_change_priority(node_res->hnode,
1208 if ((int)args->args_node_connect.hnode != DSP_HGPPNODE) {
1210 args->args_node_connect.hnode);
1212 node1 = node_res1->hnode;
1214 node1 = args->args_node_connect.hnode;
1063 find_node_handle(struct node_res_object **noderes, void *pr_ctxt, void *hnode) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/netfilter/
H A Dnf_conntrack_expect.h17 struct hlist_node hnode; member in struct:nf_conntrack_expect
H A Dnf_conntrack_helper.h20 struct hlist_node hnode; /* Internal use. */ member in struct:nf_conntrack_helper
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dhash.c772 hnode_t *hnode_init(hnode_t *hnode, void *data) argument
774 hnode->data = data;
775 hnode->next = NULL;
776 return hnode;
783 void hnode_destroy(hnode_t *hnode) argument
785 free(hnode);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sched/
H A Dsch_drr.c302 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
461 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
481 common.hnode)
H A Dsch_cbq.c997 hlist_for_each_entry(cl, n, &q->clhash.hash[h], common.hnode) {
1039 common.hnode) {
1174 hlist_for_each_entry(cl, n, &q->clhash.hash[h], common.hnode) {
1652 hlist_for_each_entry(cl, n, &q->clhash.hash[h], common.hnode)
1657 common.hnode)
1961 hlist_for_each_entry(cl, n, &q->clhash.hash[h], common.hnode) {
H A Dsch_api.c558 hlist_for_each_entry_safe(cl, n, next, &ohash[i], hnode) {
560 hlist_add_head(&cl->hnode, &nhash[h]);
597 INIT_HLIST_NODE(&cl->hnode);
599 hlist_add_head(&cl->hnode, &clhash->hash[h]);
607 hlist_del(&cl->hnode);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/
H A Dsch_generic.h282 struct hlist_node hnode; member in struct:Qdisc_class_common
307 hlist_for_each_entry(cl, n, &hash->hash[h], hnode) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/dream/camera/
H A Dmsm_camera.c1543 struct hlist_node *hnode; local
1561 hlist_for_each_entry_safe(region, hnode, n,
1563 hlist_del(hnode);
1568 hlist_for_each_entry_safe(region, hnode, n,
1570 hlist_del(hnode);

Completed in 1000 milliseconds

12