Searched refs:new (Results 251 - 275 of 2011) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/h8300/include/asm/
H A Datomic.h92 static inline int atomic_cmpxchg(atomic_t *v, int old, int new) argument
100 v->counter = new;
105 #define atomic_xchg(v, new) (xchg(&((v)->counter), new))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m32r/include/asm/
H A Dsystem.h38 " ld lr, @%5 ; load new LR \n" \
41 " ld sp, @%3 ; load new SP \n" \
42 " push %1 ; store `prev' on new stack \n" \
46 " pop %0 ; restore `__last' from new stack \n" \
235 __cmpxchg_u32(volatile unsigned int *p, unsigned int old, unsigned int new) argument
253 : "r" (p), "r" (old), "r" (new)
266 unsigned int new)
284 : "r" (p), "r" (old), "r" (new)
300 __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size) argument
304 return __cmpxchg_u32(ptr, old, new);
265 __cmpxchg_local_u32(volatile unsigned int *p, unsigned int old, unsigned int new) argument
316 __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/zip30/theos/
H A Dosdep.h43 int _rename(const char* old, const char* new);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s3c64xx/
H A Dcpufreq.c83 freqs.new = s3c64xx_freq_table[i].frequency;
87 if (freqs.old == freqs.new)
90 pr_debug("cpufreq: Transition %d-%dkHz\n", freqs.old, freqs.new);
95 if (vddarm && freqs.new > freqs.old) {
101 freqs.new, ret);
107 ret = clk_set_rate(armclk, freqs.new * 1000);
110 freqs.new, ret);
115 if (vddarm && freqs.new < freqs.old) {
121 freqs.new, ret);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-omap/
H A Dcpu-omap.c87 freqs.new = clk_round_rate(mpu_clk, target_freq * 1000) / 1000;
90 if (freqs.old == freqs.new)
96 freqs.old, freqs.new);
98 ret = clk_set_rate(mpu_clk, freqs.new * 1000);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/
H A Dlist.h55 * Insert a new entry between two known consecutive entries.
60 static inline void __list_add(struct list_head *new, argument
64 next->prev = new;
65 new->next = next;
66 new->prev = prev;
67 prev->next = new;
71 * list_add - add a new entry
72 * @new: new entry to be added
75 * Insert a new entr
78 list_add(struct list_head *new, struct list_head *head) argument
91 list_add_tail(struct list_head *new, struct list_head *head) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Direl.h19 ext2_ino_t new;
87 errcode_t (*move)(ext2_irel irel, ext2_ino_t old, ext2_ino_t new);
113 #define ext2fs_irel_move(irel, old, new) ((irel)->move((irel), old, new))
H A Direl_ma.c40 static errcode_t ima_move(ext2_irel irel, ext2_ino_t old, ext2_ino_t new);
153 if (ma->entries[(unsigned) old].new == 0)
185 if (ma->entries[(unsigned) old].new == 0)
221 if (ma->entries[(unsigned) irel->current].new == 0)
274 if (ma->entries[(unsigned) ino].new == 0)
302 static errcode_t ima_move(ext2_irel irel, ext2_ino_t old, ext2_ino_t new) argument
307 if ((old > ma->max_inode) || (new > ma->max_inode))
309 if (ma->entries[(unsigned) old].new == 0)
312 ma->entries[(unsigned) new] = ma->entries[(unsigned) old];
313 ext2fs_free_mem(&ma->ref_entries[(unsigned) new]
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dparams.c587 struct module_param_attrs *new; local
603 new = krealloc(mk->mp,
606 if (!new) {
611 attrs = krealloc(attrs, sizeof(new->grp.attrs[0])*(num+2), GFP_KERNEL);
618 memset(new, 0, sizeof(*new));
619 memset(&new->attrs[num], 0, sizeof(new->attrs[num]));
621 new->grp.name = "parameters";
622 new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/ice1712/
H A Dprodigy192.c96 unsigned char new, old; local
99 new = (~mute << 7 & 0x80) | (old & ~0x80);
100 change = (new != old);
102 /*printk ("Volume register 0x%02x: 0x%02x\n", idx, new);*/
103 stac9460_put(ice, idx, new);
221 unsigned char new, old; local
228 new = (~ucontrol->value.integer.value[i]<<7&0x80) | (old&~0x80);
229 change = (new != old);
231 stac9460_put(ice, reg, new);
315 unsigned char new, ol local
329 unsigned char old, new; local
595 unsigned char new, old, itemvalue; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Didr.c15 * a new id quick.
123 struct idr_layer *new; local
124 new = kmem_cache_zalloc(idr_layer_cache, gfp_mask);
125 if (new == NULL)
127 move_to_free_list(idp, new);
136 struct idr_layer *p, *new; local
187 new = get_from_free_list(idp);
188 if (!new)
190 new->layer = l-1;
191 rcu_assign_pointer(p->ary[m], new);
205 struct idr_layer *p, *new; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dttoolbar.tex110 #include "bitmaps/new.xpm"
127 MyFrame* frame = new MyFrame((wxFrame *) NULL, -1, (const wxString) "wxToolBar Sample",
137 wxMenu *fileMenu = new wxMenu;
140 wxMenu *helpMenu = new wxMenu;
143 wxMenuBar* menuBar = new wxMenuBar;
177 toolBarBitmaps[0] = new wxBitmap("icon1");
178 toolBarBitmaps[1] = new wxBitmap("icon2");
179 toolBarBitmaps[2] = new wxBitmap("icon3");
180 toolBarBitmaps[3] = new wxBitmap("icon4");
181 toolBarBitmaps[4] = new wxBitma
[all...]
H A Dfilestrm.tex24 Initializes a new file stream in read-write mode using the specified
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pci/
H A Dsetup-res.c32 u32 new, check, mask; local
54 new = region.start | (res->flags & PCI_REGION_FLAG_MASK);
66 new |= PCI_ROM_ADDRESS_ENABLE;
69 pci_write_config_dword(dev, reg, new);
72 if ((new ^ check) & mask) {
74 resno, new, check);
77 if ((new & (PCI_BASE_ADDRESS_SPACE|PCI_BASE_ADDRESS_MEM_TYPE_MASK)) ==
79 new = region.start >> 16 >> 16;
80 pci_write_config_dword(dev, reg + 4, new);
82 if (check != new) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/joystick/iforce/
H A Diforce-ff.c202 struct ff_effect *new)
207 if (new->type != FF_SPRING && new->type != FF_FRICTION) {
214 ret |= old->u.condition[i].right_saturation != new->u.condition[i].right_saturation
215 || old->u.condition[i].left_saturation != new->u.condition[i].left_saturation
216 || old->u.condition[i].right_coeff != new->u.condition[i].right_coeff
217 || old->u.condition[i].left_coeff != new->u.condition[i].left_coeff
218 || old->u.condition[i].deadband != new->u.condition[i].deadband
219 || old->u.condition[i].center != new->u.condition[i].center;
278 struct ff_effect *new)
200 need_condition_modifier(struct iforce *iforce, struct ff_effect *old, struct ff_effect *new) argument
277 need_period_modifier(struct iforce *iforce, struct ff_effect *old, struct ff_effect *new) argument
295 need_core(struct ff_effect *old, struct ff_effect *new) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfsd/
H A Dexport.c79 static struct svc_expkey *svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old);
206 struct svc_expkey *new = container_of(b, struct svc_expkey, h); local
208 if (orig->ek_fsidtype != new->ek_fsidtype ||
209 orig->ek_client != new->ek_client ||
210 memcmp(orig->ek_fsid, new->ek_fsid, key_len(orig->ek_fsidtype)) != 0)
218 struct svc_expkey *new = container_of(cnew, struct svc_expkey, h); local
222 new->ek_client = item->ek_client;
223 new->ek_fsidtype = item->ek_fsidtype;
225 memcpy(new->ek_fsid, item->ek_fsid, sizeof(new
231 struct svc_expkey *new = container_of(cnew, struct svc_expkey, h); local
290 svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old) argument
665 struct svc_export *new = container_of(b, struct svc_export, h); local
673 struct svc_export *new = container_of(cnew, struct svc_export, h); local
688 struct svc_export *new = container_of(cnew, struct svc_export, h); local
762 svc_export_update(struct svc_export *new, struct svc_export *old) argument
984 struct svc_export new; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Drecno.t24 eval ' $db = new BerkeleyDB::Recno -Stupid => 3 ; ' ;
27 eval ' $db = new BerkeleyDB::Recno -Bad => 2, -Mode => 0345, -Stupid => 3; ' ;
30 eval ' $db = new BerkeleyDB::Recno -Env => 2 ' ;
33 eval ' $db = new BerkeleyDB::Recno -Txn => "x" ' ;
37 eval ' $db = new BerkeleyDB::Recno -Env => $obj ' ;
44 my $lex = new LexFile $Dfile ;
46 ok 6, my $db = new BerkeleyDB::Recno -Filename => $Dfile,
89 my $lex = new LexFile $Dfile ;
92 ok 27, my $lexD = new LexDir($home);
94 ok 28, my $env = new BerkeleyD
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/test/name-test/
H A Dtest-activation-forking.py34 def on_forking_echo_owner_changed(name, old, new):
43 if new == '':
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/nsswitch/
H A Dwinbind_nss_solaris.h35 #undef new macro
49 #define new #error DONT_USE_CPLUSPLUS_RESERVED_NAMES macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/l2tpd-0.69/
H A Dmisc.c198 struct ppp_opts *new, *last; local
199 new = (struct ppp_opts *) malloc (sizeof (struct ppp_opts));
200 if (!new)
207 new->next = NULL;
209 vsnprintf (new->option, sizeof (new->option), fmt, args);
216 last->next = new;
220 return new;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/applet/
H A Dloadpage.h72 virtual wxEvent *Clone() const { return new wxLoadPageEvent(m_hRef, m_htmlWindow); }
103 return new wxPageLoadedEvent(); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Dinternal_bypass.c74 uint32_t new; member in struct:__anon879
85 "connections new:\t\t%12u\n"
88 internal_bypass_stats.new,
123 internal_bypass_stats.new++;
206 uint32_t new; member in struct:__anon880
217 "connections new:\t\t%12u\n"
220 exp_internal_bypass_stats.new,
255 exp_internal_bypass_stats.new++;
297 .new = internal_bypass_ct_event_new,
309 .new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Doaep.h34 HashTransformation * NewHash() const {return new H;}
35 MaskGeneratingFunction * NewMGF() const {return new MGF;}
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/asm-generic/
H A Datomic-long.h134 #define atomic_long_cmpxchg(l, old, new) \
135 (atomic64_cmpxchg((atomic64_t *)(l), (old), (new)))
136 #define atomic_long_xchg(v, new) \
137 (atomic64_xchg((atomic64_t *)(v), (new)))
251 #define atomic_long_cmpxchg(l, old, new) \
252 (atomic_cmpxchg((atomic_t *)(l), (old), (new)))
253 #define atomic_long_xchg(v, new) \
254 (atomic_xchg((atomic_t *)(v), (new)))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/watchdog/
H A Dmachzwd.c151 static inline void zf_set_status(unsigned char new) argument
153 zf_writeb(STATUS, new);
164 static inline void zf_set_control(unsigned short new) argument
166 zf_writew(CONTROL, new);
175 static inline void zf_set_timer(unsigned short new, unsigned char n) argument
179 zf_writew(COUNTER_1, new);
181 zf_writeb(COUNTER_2, new > 0xff ? 0xff : new);

Completed in 304 milliseconds

<<11121314151617181920>>