Searched refs:new (Results 101 - 125 of 2011) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/sym53c8xx_2/
H A Dsym_misc.h65 static inline void __sym_que_add(struct sym_quehead * new, argument
69 flink->blink = new;
70 new->flink = flink;
71 new->blink = blink;
72 blink->flink = new;
126 #define sym_insque(new, pos) __sym_que_add(new, pos, (pos)->flink)
130 #define sym_insque_head(new, head) __sym_que_add(new, head, (head)->flink)
143 #define sym_insque_tail(new, hea
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/drivers/
H A Dxterm.c90 int pid, fd, new, err; local
153 new = xterm_fd(fd, &data->helper_pid);
154 if (new < 0) {
155 err = new;
161 err = os_set_fd_block(new, 0);
168 CATCH_EINTR(err = tcgetattr(new, &data->tt));
170 new = err;
175 err = raw(new);
177 new = err;
186 return new;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/drivers/
H A Dheartbeat.c38 unsigned int new; local
40 new = (1 << hd->bit_pos[bit]);
42 new = ~new;
44 new &= hd->mask;
48 new |= ioread32(hd->base) & ~hd->mask;
49 iowrite32(new, hd->base);
52 new |= ioread16(hd->base) & ~hd->mask;
53 iowrite16(new, hd->base);
56 new |
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Duser.c137 struct user_struct *up, *new; local
144 new = kmem_cache_zalloc(uid_cachep, GFP_KERNEL);
145 if (!new)
148 new->uid = uid;
149 atomic_set(&new->__count, 1);
151 new->user_ns = get_user_ns(ns);
161 key_put(new->uid_keyring);
162 key_put(new->session_keyring);
163 kmem_cache_free(uid_cachep, new);
165 uid_hash_insert(new, hashen
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Daudio_frame_queue.c46 AudioFrame *new = av_fast_realloc(afq->frames, &afq->frame_alloc, sizeof(*afq->frames)*(afq->frame_count+1)); local
47 if(!new)
49 afq->frames = new;
50 new += afq->frame_count;
53 new->duration = f->nb_samples;
54 new->duration += afq->remaining_delay;
56 new->pts = av_rescale_q(f->pts,
59 new->pts -= afq->remaining_delay;
60 if(afq->frame_count && new[-1].pts >= new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/irda/irnet/
H A Dirnet_irda.c338 /* Close the last instance of IrIAP, and open a new one.
345 /* Create a new IAP instance */
751 irnet_socket * new = (irnet_socket *) NULL; local
770 new = (irnet_socket *) hashbin_find(irnet_server.list,
772 if(new)
774 new, new->rname);
781 if(new == (irnet_socket *) NULL)
783 new = (irnet_socket *) hashbin_get_first(irnet_server.list);
784 while(new !
832 irnet_connect_socket(irnet_socket * server, irnet_socket * new, struct qos_info * qos, __u32 max_sdu_size, __u8 max_header_size) argument
1341 irnet_socket * new = (irnet_socket *) NULL; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/selinux/ss/
H A Debitmap.c49 struct ebitmap_node *n, *new, *prev; local
55 new = kzalloc(sizeof(*new), GFP_ATOMIC);
56 if (!new) {
60 new->startbit = n->startbit;
61 memcpy(new->maps, n->maps, EBITMAP_SIZE / 8);
62 new->next = NULL;
64 prev->next = new;
66 dst->node = new;
67 prev = new;
263 struct ebitmap_node *n, *prev, *new; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/dnsmasq-2.15/src/
H A Dnetwork.c399 struct listener *new = safe_malloc(sizeof(struct listener)); local
400 new->family = iface->addr.sa.sa_family;
401 new->next = listeners;
402 listeners = new;
403 if ((new->tcpfd = socket(iface->addr.sa.sa_family, SOCK_STREAM, 0)) == -1 ||
404 (new->fd = socket(iface->addr.sa.sa_family, SOCK_DGRAM, 0)) == -1 ||
405 setsockopt(new->fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) == -1 ||
406 setsockopt(new->tcpfd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) == -1 ||
408 (flags = fcntl(new->tcpfd, F_GETFL, 0)) == -1 ||
409 fcntl(new
459 struct server *new, *tmp, *ret = NULL; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/src/
H A Dtool_mfiles.c30 struct multi_files *new)
35 (*last)->next = new;
37 *first = new;
38 *last = new;
42 * AddMultiFiles: Add a new list node possibly followed with a type_name.
28 AppendNode(struct multi_files **first, struct multi_files **last, struct multi_files *new) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/lib/
H A Dbitops.c60 unsigned long __cmpxchg_u64(volatile unsigned long *ptr, unsigned long old, unsigned long new) argument
67 *ptr = new;
73 unsigned long __cmpxchg_u32(volatile unsigned int *ptr, unsigned int old, unsigned int new) argument
80 *ptr = new;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Ddb-4.4.t21 my $lex = new LexFile $Dfile ;
23 ok my $db = new BerkeleyDB::Btree -Filename => $Dfile,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/
H A Dlinklist.c28 /* Allocate new list. */
32 struct list *new;
34 new = XMALLOC (MTYPE_LINK_LIST, sizeof (struct list));
35 memset (new, 0, sizeof (struct list));
36 return new;
46 /* Allocate new listnode. Internal use only. */
65 /* Add new data to the list. */
85 /* Add new node with sort function. */
90 struct listnode *new;
92 new
31 struct list *new; local
88 struct listnode *new; local
[all...]
H A Dtable.c49 /* Allocate new route node. */
58 /* Allocate new route node with prefix set. */
136 route_common (struct prefix *n, struct prefix *p, struct prefix *new)
144 u_char *newp = (u_char *)&new->u.prefix;
154 new->prefixlen = i * 8;
156 if (new->prefixlen != p->prefixlen)
160 while (new->prefixlen < p->prefixlen && !(mask & diff))
163 new->prefixlen++;
165 newp[i] = np[i] & maskbit[new->prefixlen % 8];
193 set_link (struct route_node *node, struct route_node *new)
135 route_common(struct prefix *n, struct prefix *p, struct prefix *new) argument
192 set_link(struct route_node *node, struct route_node *new) argument
318 struct route_node *new; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/apparmor/include/
H A Dresource.h39 void __aa_transition_rlimits(struct aa_profile *old, struct aa_profile *new);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/
H A Dnetevent.h19 struct dst_entry *new;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iputils/racoon/
H A Dvmbuf.c107 vchar_t *new; local
109 if ((new = vmalloc(src->l)) == NULL)
112 memcpy(new->v, src->v, src->l);
114 return new;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pnp/isapnp/
H A Dproc.c33 loff_t new = -1; local
38 new = off;
41 new = file->f_pos + off;
44 new = 256 + off;
47 if (new < 0 || new > 256) {
52 return (file->f_pos = new);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/bgpd/
H A Dbgp_table.c61 /* Allocate new route node with prefix set. */
139 route_common (struct prefix *n, struct prefix *p, struct prefix *new)
147 u_char *newp = (u_char *)&new->u.prefix;
157 new->prefixlen = i * 8;
159 if (new->prefixlen != p->prefixlen)
163 while (new->prefixlen < p->prefixlen && !(mask & diff))
166 new->prefixlen++;
168 newp[i] = np[i] & maskbit[new->prefixlen % 8];
196 set_link (struct bgp_node *node, struct bgp_node *new)
200 bit = check_bit (&new
138 route_common(struct prefix *n, struct prefix *p, struct prefix *new) argument
195 set_link(struct bgp_node *node, struct bgp_node *new) argument
304 struct bgp_node *new; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/xtensa/include/asm/
H A Dsystem.h86 __cmpxchg_u32(volatile int *p, int old, int new) argument
96 : "a" (p), "a" (old), "r" (new)
106 __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
109 case 4: return __cmpxchg_u32(ptr, old, new);
126 unsigned long new, int size)
130 return __cmpxchg_u32(ptr, old, new);
132 return __cmpxchg_local_generic(ptr, old, new, size);
124 __cmpxchg_local(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
H A Dacpi.h65 unsigned int old, new, val;
68 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
69 val = ia64_cmpxchg4_acq(lock, new, old);
71 return (new < 3) ? -1 : 0;
77 unsigned int old, new, val;
80 new = old & ~0x3;
81 val = ia64_cmpxchg4_acq(lock, new, old);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/scripts/
H A Dbloat-o-meter35 new = getsizes(sys.argv[2]) variable
40 if a in new:
49 for name in new:
52 up += new[name]
53 delta.append((new[name], name))
56 d = new.get(name, 0) - old.get(name, 0)
64 print "%-48s %7s %7s %+7s" % ("function", "old", "new", "delta")
66 if d: print "%-48s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/dccp/ccids/lib/
H A Dloss_interval.c108 * subsequent packets as belonging to a new loss interval. This
122 /* Determine if `new_loss' does begin a new loss interval [RFC 4342, 10.2] */
131 * tfrc_lh_interval_add - Insert new record into the Loss Interval database
136 * Updates I_mean and returns 1 if a new interval has in fact been added to @lh.
141 struct tfrc_loss_interval *cur = tfrc_lh_peek(lh), *new; local
146 new = tfrc_lh_demand_next(lh);
147 if (unlikely(new == NULL)) {
152 new->li_seqno = tfrc_rx_hist_loss_prev(rh)->tfrchrx_seqno;
153 new->li_ccval = tfrc_rx_hist_loss_prev(rh)->tfrchrx_ccval;
154 new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dbrel_ma.c37 static errcode_t bma_move(ext2_brel brel, blk_t old, blk_t new);
124 if (ma->entries[(unsigned)old].new == 0)
143 if (ma->entries[(unsigned)brel->current].new == 0)
153 static errcode_t bma_move(ext2_brel brel, blk_t old, blk_t new) argument
158 if ((old > ma->max_block) || (new > ma->max_block))
160 if (ma->entries[(unsigned)old].new == 0)
162 ma->entries[(unsigned)new] = ma->entries[old];
163 ma->entries[(unsigned)old].new = 0;
174 if (ma->entries[(unsigned)old].new == 0)
176 ma->entries[(unsigned)old].new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dutil.c76 id3_byte_t *new; local
81 for (old = new = data; old < end - 1; ++old) {
82 *new++ = *old;
87 *new++ = *old;
89 return new - data;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dutil.c76 id3_byte_t *new; local
81 for (old = new = data; old < end - 1; ++old) {
82 *new++ = *old;
87 *new++ = *old;
89 return new - data;

Completed in 291 milliseconds

1234567891011>>