Searched refs:new (Results 51 - 75 of 2011) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Dcmpxchg-grb.h15 " mov.l %2, @%1 \n\t" /* store new value */
36 " mov.b %2, @%1 \n\t" /* store new value */
47 unsigned long new)
60 " mov.l %3, @%1 \n\t" /* store new value */
63 : "r" (m), "r" (old), "r" (new)
46 __cmpxchg_u32(volatile int *m, unsigned long old, unsigned long new) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Dunknown.t23 eval ' $db = new BerkeleyDB::Unknown -Stupid => 3 ; ' ;
26 eval ' $db = new BerkeleyDB::Unknown -Bad => 2, -Mode => 0345, -Stupid => 3; ' ;
29 eval ' $db = new BerkeleyDB::Unknown -Env => 2 ' ;
32 eval ' $db = new BerkeleyDB::Unknown -Txn => "fred" ' ;
36 eval ' $db = new BerkeleyDB::Unknown -Env => $obj ' ;
43 my $lex = new LexFile $Dfile ;
46 ok 7, ! (new BerkeleyDB::Unknown -Filename => $Dfile);
50 ok 8, ! (new BerkeleyDB::Unknown -Filename => $Dfile);
56 my $lex = new LexFile $Dfile ;
59 ok 9, my $db = new BerkeleyD
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dcmpxchg_32.h62 * "new previous" value. That is why there is a loop. Preloading
94 #define __raw_cmpxchg(ptr, old, new, size, lock) \
98 __typeof__(*(ptr)) __new = (new); \
133 #define __cmpxchg(ptr, old, new, size) \
134 __raw_cmpxchg((ptr), (old), (new), (size), LOCK_PREFIX)
136 #define __sync_cmpxchg(ptr, old, new, size) \
137 __raw_cmpxchg((ptr), (old), (new), (size), "lock; ")
139 #define __cmpxchg_local(ptr, old, new, size) \
140 __raw_cmpxchg((ptr), (old), (new), (size), "")
145 #define cmpxchg(ptr, old, new) \
164 __cmpxchg64(volatile u64 *ptr, u64 old, u64 new) argument
177 __cmpxchg64_local(volatile u64 *ptr, u64 old, u64 new) argument
201 cmpxchg_386(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/kernel/
H A Dirq.c66 unsigned long flags, old, new; local
77 new = S390_lowcore.async_stack;
78 if (((new - old) >> (PAGE_SHIFT + THREAD_ORDER)) != 0) {
80 new -= STACK_FRAME_OVERHEAD;
81 ((struct stack_frame *) new)->back_chain = old;
86 : : "a" (new), "a" (old),
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/lib/
H A Dcmpxchg.c10 unsigned long cmpxchg_386_u8(volatile void *ptr, u8 old, u8 new) argument
19 *(u8 *)ptr = new;
25 unsigned long cmpxchg_386_u16(volatile void *ptr, u16 old, u16 new) argument
34 *(u16 *)ptr = new;
40 unsigned long cmpxchg_386_u32(volatile void *ptr, u32 old, u32 new) argument
49 *(u32 *)ptr = new;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
H A Datomic.h33 __s32 old, new;
39 new = old + i;
40 } while (ia64_cmpxchg(acq, v, old, new, sizeof(atomic_t)) != old);
41 return new;
47 __s64 old, new;
53 new = old + i;
54 } while (ia64_cmpxchg(acq, v, old, new, sizeof(atomic64_t)) != old);
55 return new;
61 __s32 old, new;
67 new
[all...]
H A Dbitops.h40 __u32 bit, old, new;
49 new = old | bit;
50 } while (cmpxchg_acq(m, old, new) != old);
87 __u32 mask, old, new;
96 new = old & mask;
97 } while (cmpxchg_acq(m, old, new) != old);
111 __u32 mask, old, new;
120 new = old & mask;
121 } while (cmpxchg_rel(m, old, new) != old);
136 __u32 const new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/kernel/
H A Dftrace.c52 unsigned long err = 0, replaced = 0, old, new; local
55 new = *(unsigned long *)new_code;
76 : "r"(pc), "r"(new), "r"(old), "0"(err), "1"(replaced)
89 unsigned char *new; local
93 new = ftrace_call_replace(pc, (unsigned long)func);
94 ret = ftrace_modify_code(pc, (unsigned char *)&old, new);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dcallchain.c163 * Create a child for a parent. If inherit_children, then the new child
164 * will become the new parent of it's parent children
169 struct callchain_node *new; local
171 new = zalloc(sizeof(*new));
172 if (!new) {
176 new->parent = parent;
177 INIT_LIST_HEAD(&new->children);
178 INIT_LIST_HEAD(&new->val);
183 list_splice(&parent->children, &new
235 struct callchain_node *new; local
254 struct callchain_node *new; local
365 filter_context(struct ip_callchain *old, struct resolved_chain *new, struct map_symbol *syms) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospf6d/
H A Dospf6_hook.c42 struct ospf6_hook *new; local
43 new = XMALLOC (MTYPE_OSPF6_OTHER, sizeof (struct ospf6_hook));
44 if (new == NULL)
46 memset (new, 0, sizeof (struct ospf6_hook));
47 return new;
75 struct ospf6_hook *new; local
77 new = ospf6_hook_create ();
80 new->name = strdup (hook->name);
81 new->hook_add = hook->hook_add;
82 new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Drculist.h13 * Insert a new entry between two known consecutive entries.
18 static inline void __list_add_rcu(struct list_head *new, argument
21 new->next = next;
22 new->prev = prev;
23 rcu_assign_pointer(prev->next, new);
24 next->prev = new;
28 * list_add_rcu - add a new entry to rcu-protected list
29 * @new: new entry to be added
32 * Insert a new entr
43 list_add_rcu(struct list_head *new, struct list_head *head) argument
64 list_add_tail_rcu(struct list_head *new, struct list_head *head) argument
136 list_replace_rcu(struct list_head *old, struct list_head *new) argument
310 hlist_replace_rcu(struct hlist_node *old, struct hlist_node *new) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/devices/
H A Dphram.c126 struct phram_mtd_list *new; local
129 new = kzalloc(sizeof(*new), GFP_KERNEL);
130 if (!new)
134 new->mtd.priv = ioremap(start, len);
135 if (!new->mtd.priv) {
141 new->mtd.name = name;
142 new->mtd.size = len;
143 new->mtd.flags = MTD_CAP_RAM;
144 new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/include/asm/
H A Dsystem_64.h232 __cmpxchg_u32(volatile int *m, int old, int new) argument
235 : "=&r" (new)
236 : "0" (new), "r" (m), "r" (old)
239 return new;
243 __cmpxchg_u64(volatile long *m, unsigned long old, unsigned long new) argument
246 : "=&r" (new)
247 : "0" (new), "r" (m), "r" (old)
250 return new;
258 __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
262 return __cmpxchg_u32(ptr, old, new);
283 __cmpxchg_local(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospfd/
H A Dospf_lsa.c229 struct ospf_lsa *new;
231 new = XCALLOC (MTYPE_OSPF_LSA, sizeof (struct ospf_lsa));
232 memset (new, 0, sizeof (struct ospf_lsa));
234 new->flags = 0;
235 new->lock = 1;
236 new->retransmit_counter = 0;
237 gettimeofday (&new->tv_recv, NULL);
238 new->tv_orig = new->tv_recv;
239 new
224 struct ospf_lsa *new; local
243 struct ospf_lsa *new; local
320 struct lsa_header *new; local
332 struct lsa_header *new; local
669 struct ospf_lsa *new; local
713 struct ospf_lsa *new; local
751 struct ospf_lsa *new; local
914 struct ospf_lsa *new; local
957 struct ospf_lsa *new; local
987 struct ospf_lsa *new; local
1104 struct ospf_lsa *new; local
1142 struct ospf_lsa *new; local
1172 struct ospf_lsa *new; local
1230 struct ospf_lsa *new; local
1268 struct ospf_lsa *new; local
1298 struct ospf_lsa *new; local
1486 struct ospf_lsa *new; local
1681 struct ospf_lsa *new; local
1946 struct ospf_lsa *new; local
2013 ospf_router_lsa_install(struct ospf_lsa *new, int rt_recalc) argument
2050 ospf_network_lsa_install(struct ospf_interface *oi, struct ospf_lsa *new, int rt_recalc) argument
2084 ospf_summary_lsa_install(struct ospf_lsa *new, int rt_recalc) argument
2115 ospf_summary_asbr_lsa_install(struct ospf_lsa *new, int rt_recalc) argument
2145 ospf_external_lsa_install(struct ospf_lsa *new, int rt_recalc) argument
2214 struct ospf_lsa *new = NULL; local
2471 ospf_lsa_maxage_exist(struct ospf_lsa *new) argument
2821 ospf_lsa_flush_self_originated(struct ospf_neighbor *nbr, struct ospf_lsa *self, struct ospf_lsa *new) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Dproc_powerpc.c34 loff_t new; local
39 new = off;
42 new = file->f_pos + off;
45 new = dp->size + off;
50 if ( new < 0 || new > dp->size )
52 return (file->f_pos = new);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/
H A Dbloat-o-meter27 new = getsizes(sys.argv[2]) variable
32 if a in new:
41 for name in new:
44 up += new[name]
45 delta.append((new[name], name))
48 d = new.get(name, 0) - old.get(name, 0)
58 print "%-40s %7s %7s %+7s" % ("function", "old", "new", "delta")
60 if d: print "%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Dalarm.c39 struct rb_node **new = &(alarm_root.rb_node); local
42 while (*new) {
45 this = container_of(*new, struct alarm_block, node);
47 parent = *new;
49 new = &((*new)->rb_left);
51 new = &((*new)->rb_right);
54 rb_link_node(&alarm->node, parent, new);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mm/
H A Dvmregion.c43 struct arm_vmregion *c, *new; local
51 new = kmalloc(sizeof(struct arm_vmregion), gfp);
52 if (!new)
71 list_add_tail(&new->vm_list, &c->vm_list);
72 new->vm_start = addr;
73 new->vm_end = addr + size;
74 new->vm_active = 1;
77 return new;
81 kfree(new);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/flex/MISC/Macintosh/
H A Dalloca.c180 register pointer new = xmalloc (sizeof (header) + size); local
184 ((header *)new)->h.next = last_alloca_header;
185 ((header *)new)->h.deep = depth;
187 last_alloca_header = (header *)new;
191 return (pointer)((char *)new + sizeof(header));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/bftpd-1.6.6/
H A Dlist.c10 struct bftpd_list_element *new = malloc(sizeof(struct bftpd_list_element)); local
12 new->data = data;
13 new->next = NULL;
17 tmp->next = new;
19 *list = new;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dlist_debug.c13 * Insert a new entry between two known consecutive entries.
19 void __list_add(struct list_head *new, argument
31 next->prev = new;
32 new->next = next;
33 new->prev = prev;
34 prev->next = new;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/theos/
H A D_rename.c30 int _rename(const char* old, const char* new) argument
41 q = strrchr(new, ':');
58 if ((old & ~0x20) != (new & ~0x20)) {
67 _n_(new, bnew);
73 * 44 "new" file already exist
74 * 45 "new" filename missing
79 _errarg = (status == 44 || status == 45) ? new : old;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/flex/MISC/Macintosh/
H A Dalloca.c180 register pointer new = xmalloc (sizeof (header) + size); local
184 ((header *)new)->h.next = last_alloca_header;
185 ((header *)new)->h.deep = depth;
187 last_alloca_header = (header *)new;
191 return (pointer)((char *)new + sizeof(header));
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iputils/racoon/
H A Dschedule.c119 * add new schedule to schedule table.
128 struct sched *new; local
130 new = (struct sched *)racoon_malloc(sizeof(*new));
131 if (new == NULL)
134 memset(new, 0, sizeof(*new));
135 new->func = func;
136 new->param = param;
138 new
226 caddr_t new; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/console-tools/
H A Dresize.c26 struct termios new; local
37 new = old_termios;
38 new.c_cflag |= (CLOCAL | CREAD);
39 new.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
44 tcsetattr(STDERR_FILENO, TCSANOW, &new);

Completed in 538 milliseconds

1234567891011>>