tnode             311 fs/eventpoll.c 	struct wake_task_node tnode;
tnode             330 fs/eventpoll.c 	tnode.task = this_task;
tnode             331 fs/eventpoll.c 	tnode.wq = wq;
tnode             332 fs/eventpoll.c 	list_add(&tnode.llink, lsthead);
tnode             341 fs/eventpoll.c 	list_del(&tnode.llink);
tnode             162 net/ipv4/fib_trie.c static struct tnode *inflate(struct trie *t, struct tnode *tn);
tnode             163 net/ipv4/fib_trie.c static struct tnode *halve(struct trie *t, struct tnode *tn);
tnode             168 net/ipv4/fib_trie.c static inline struct tnode *node_parent(struct node *node)
tnode             170 net/ipv4/fib_trie.c 	return (struct tnode *)(node->parent & ~NODE_TYPE_MASK);
tnode             173 net/ipv4/fib_trie.c static inline struct tnode *node_parent_rcu(struct node *node)
tnode             175 net/ipv4/fib_trie.c 	struct tnode *ret = node_parent(node);
tnode             352 net/ipv4/fib_trie.c static struct tnode *tnode_alloc(size_t size)
tnode             362 net/ipv4/fib_trie.c 	struct tnode *tn = container_of(arg, struct tnode, work);
tnode             368 net/ipv4/fib_trie.c 	struct tnode *tn = container_of(head, struct tnode, rcu);
tnode             369 net/ipv4/fib_trie.c 	size_t size = sizeof(struct tnode) +
tnode             408 net/ipv4/fib_trie.c static struct tnode *tnode_new(t_key key, int pos, int bits)
tnode             410 net/ipv4/fib_trie.c 	size_t sz = sizeof(struct tnode) + (sizeof(struct node *) << bits);
tnode             411 net/ipv4/fib_trie.c 	struct tnode *tn = tnode_alloc(sz);
tnode             422 net/ipv4/fib_trie.c 	pr_debug("AT %p s=%u %lu\n", tn, (unsigned int) sizeof(struct tnode),
tnode             437 net/ipv4/fib_trie.c 	return ((struct tnode *) n)->pos == tn->pos + tn->bits;
tnode             485 net/ipv4/fib_trie.c 	struct tnode *old_tn;
tnode             680 net/ipv4/fib_trie.c static struct tnode *inflate(struct trie *t, struct tnode *tn)
tnode             682 net/ipv4/fib_trie.c 	struct tnode *oldtnode = tn;
tnode             701 net/ipv4/fib_trie.c 		struct tnode *inode;
tnode             703 net/ipv4/fib_trie.c 		inode = (struct tnode *) tnode_get_child(oldtnode, i);
tnode             708 net/ipv4/fib_trie.c 			struct tnode *left, *right;
tnode             730 net/ipv4/fib_trie.c 		struct tnode *inode;
tnode             732 net/ipv4/fib_trie.c 		struct tnode *left, *right;
tnode             741 net/ipv4/fib_trie.c 		if (IS_LEAF(node) || ((struct tnode *) node)->pos >
tnode             753 net/ipv4/fib_trie.c 		inode = (struct tnode *) node;
tnode             786 net/ipv4/fib_trie.c 		left = (struct tnode *) tnode_get_child(tn, 2*i);
tnode             791 net/ipv4/fib_trie.c 		right = (struct tnode *) tnode_get_child(tn, 2*i+1);
tnode             815 net/ipv4/fib_trie.c 				tnode_free((struct tnode *)tn->child[j]);
tnode             823 net/ipv4/fib_trie.c static struct tnode *halve(struct trie *t, struct tnode *tn)
tnode             825 net/ipv4/fib_trie.c 	struct tnode *oldtnode = tn;
tnode             850 net/ipv4/fib_trie.c 			struct tnode *newn;
tnode             863 net/ipv4/fib_trie.c 		struct tnode *newBinNode;
tnode             882 net/ipv4/fib_trie.c 		newBinNode = (struct tnode *) tnode_get_child(tn, i/2);
tnode             897 net/ipv4/fib_trie.c 				tnode_free((struct tnode *)tn->child[j]);
tnode             958 net/ipv4/fib_trie.c 	struct tnode *tn;
tnode             965 net/ipv4/fib_trie.c 		tn = (struct tnode *) n;
tnode             990 net/ipv4/fib_trie.c 	struct tnode *tp;
tnode             995 net/ipv4/fib_trie.c 		tn = (struct tnode *) resize(t, (struct tnode *)tn);
tnode             997 net/ipv4/fib_trie.c 		tnode_put_child_reorg((struct tnode *)tp, cindex,
tnode            1008 net/ipv4/fib_trie.c 		tn = (struct tnode *)resize(t, (struct tnode *)tn);
tnode            1018 net/ipv4/fib_trie.c 	struct tnode *tp = NULL, *tn = NULL;
tnode            1048 net/ipv4/fib_trie.c 		tn = (struct tnode *) n;
tnode            1108 net/ipv4/fib_trie.c 		put_child(t, (struct tnode *)tp, cindex, (struct node *)l);
tnode            1143 net/ipv4/fib_trie.c 			put_child(t, (struct tnode *)tp, cindex,
tnode            1372 net/ipv4/fib_trie.c 	struct tnode *pn;
tnode            1378 net/ipv4/fib_trie.c 	struct tnode *cn;
tnode            1398 net/ipv4/fib_trie.c 	pn = (struct tnode *) n;
tnode            1425 net/ipv4/fib_trie.c 		cn = (struct tnode *)n;
tnode            1519 net/ipv4/fib_trie.c 		pn = (struct tnode *)n; /* Descend */
tnode            1544 net/ipv4/fib_trie.c 			struct tnode *parent = node_parent((struct node *) pn);
tnode            1571 net/ipv4/fib_trie.c 	struct tnode *tp = node_parent((struct node *) l);
tnode            1577 net/ipv4/fib_trie.c 		put_child(t, (struct tnode *)tp, cindex, NULL);
tnode            1730 net/ipv4/fib_trie.c 			p = (struct tnode *) c;
tnode            1743 net/ipv4/fib_trie.c 	struct tnode *n = (struct tnode *) rcu_dereference(t->trie);
tnode            1757 net/ipv4/fib_trie.c 	struct tnode *p = node_parent(c);
tnode            2034 net/ipv4/fib_trie.c 	struct tnode *tnode;
tnode            2041 net/ipv4/fib_trie.c 	struct tnode *tn = iter->tnode;
tnode            2043 net/ipv4/fib_trie.c 	struct tnode *p;
tnode            2050 net/ipv4/fib_trie.c 		 iter->tnode, iter->index, iter->depth);
tnode            2057 net/ipv4/fib_trie.c 				iter->tnode = tn;
tnode            2061 net/ipv4/fib_trie.c 				iter->tnode = (struct tnode *) n;
tnode            2097 net/ipv4/fib_trie.c 		iter->tnode = (struct tnode *) n;
tnode            2101 net/ipv4/fib_trie.c 		iter->tnode = NULL;
tnode            2131 net/ipv4/fib_trie.c 			const struct tnode *tn = (const struct tnode *) n;
tnode            2169 net/ipv4/fib_trie.c 	bytes += sizeof(struct tnode) * stat->tnodes;
tnode            2225 net/ipv4/fib_trie.c 		   sizeof(struct leaf), sizeof(struct tnode));
tnode            2398 net/ipv4/fib_trie.c 		struct tnode *tn = (struct tnode *) n;
tnode             391 security/selinux/ss/services.c 	struct ebitmap_node *snode, *tnode;
tnode             454 security/selinux/ss/services.c 		ebitmap_for_each_positive_bit(tattr, tnode, j) {
tnode            1942 security/selinux/ss/services.c 	struct ebitmap_node *rnode, *tnode;
tnode            1977 security/selinux/ss/services.c 		ebitmap_for_each_positive_bit(&role->types, tnode, j) {