Searched refs:new (Results 1 - 25 of 418) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/galileo-boards/ev64120/compressed/
H A Dfixit16 sed -e "s/ 0\(.\)/ \1/g" $1 | sed -e "s/ 0\(.\)/ \1/g" > $1.new
17 mv $1.new $1
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/ftape/zftape/
H A Dzftape-buffers.h37 extern int zft_vmalloc_once(void *new, size_t size);
38 extern int zft_vcalloc_once(void *new, size_t size);
39 extern int zft_vmalloc_always(void *new, size_t size);
40 extern int zft_vcalloc_always(void *new, size_t size);
H A Dzftape-buffers.c66 int zft_vcalloc_once(void *new, size_t size) argument
69 if (zft_vmalloc_once(new, size) < 0) {
72 memset(*(void **)new, '\0', size);
75 int zft_vmalloc_once(void *new, size_t size) argument
79 if (*(void **)new != NULL || size == 0) {
82 if ((*(void **)new = vmalloc(size)) == NULL) {
90 "allocated buffer @ %p, %d bytes", *(void **)new, size);
92 int zft_vcalloc_always(void *new, size_t size) argument
96 zft_vfree(new, size);
97 TRACE_EXIT zft_vcalloc_once(new, siz
99 zft_vmalloc_always(void *new, size_t size) argument
122 void *new; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/utils/
H A Ddebug2html.c72 static dbg_Token modechange( dbg_Token new, dbg_Token mode ) argument
76 * Input: new - The token value of the current token. This indicates
82 * Output: The new mode. This will be the same as the input mode unless
92 switch( new )
117 static void newblock( dbg_Token old, dbg_Token new )
122 * new - The current token.
128 * the previous token, and then the markup tags for the new
150 switch( new )
226 new = dbg_null, local
239 old = new;
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390/
H A Drwsem.h92 signed long old, new;
100 : "=&d" (old), "=&d" (new)
112 signed long old, new, tmp;
121 : "=&d" (old), "=&d" (new)
133 signed long old, new;
141 : "=&d" (old), "=&d" (new)
144 if (new < 0)
145 if ((new & RWSEM_ACTIVE_MASK) == 0)
154 signed long old, new, tmp;
163 : "=&d" (old), "=&d" (new)
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390x/
H A Drwsem.h92 signed long old, new;
100 : "=&d" (old), "=&d" (new)
112 signed long old, new, tmp;
121 : "=&d" (old), "=&d" (new)
133 signed long old, new;
141 : "=&d" (old), "=&d" (new)
144 if (new < 0)
145 if ((int) new == 0)
154 signed long old, new, tmp;
163 : "=&d" (old), "=&d" (new)
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390/
H A Drwsem.h92 signed long old, new;
100 : "=&d" (old), "=&d" (new)
112 signed long old, new, tmp;
121 : "=&d" (old), "=&d" (new)
133 signed long old, new;
141 : "=&d" (old), "=&d" (new)
144 if (new < 0)
145 if ((new & RWSEM_ACTIVE_MASK) == 0)
154 signed long old, new, tmp;
163 : "=&d" (old), "=&d" (new)
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390x/
H A Drwsem.h92 signed long old, new;
100 : "=&d" (old), "=&d" (new)
112 signed long old, new, tmp;
121 : "=&d" (old), "=&d" (new)
133 signed long old, new;
141 : "=&d" (old), "=&d" (new)
144 if (new < 0)
145 if ((int) new == 0)
154 signed long old, new, tmp;
163 : "=&d" (old), "=&d" (new)
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/netfilter_ipv4/
H A Dlisthelp.h68 list_append(struct list_head *head, void *new) argument
71 list_add((new), (head)->prev);
76 list_prepend(struct list_head *head, void *new) argument
79 list_add(new, head);
83 #define LIST_INSERT(head, new, cmpfn) \
88 !cmpfn((new), (typeof (new))__i) && __i != (head); \
90 list_add((struct list_head *)(new), __i->prev); \
102 list_named_insert(struct list_head *head, void *new) argument
105 new
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/netfilter_ipv4/
H A Dlisthelp.h68 list_append(struct list_head *head, void *new) argument
71 list_add((new), (head)->prev);
76 list_prepend(struct list_head *head, void *new) argument
79 list_add(new, head);
83 #define LIST_INSERT(head, new, cmpfn) \
88 !cmpfn((new), (typeof (new))__i) && __i != (head); \
90 list_add((struct list_head *)(new), __i->prev); \
102 list_named_insert(struct list_head *head, void *new) argument
105 new
[all...]
/asus-wl-520gu-7.0.1.45/src/router/dnsmasq/
H A Doption.c282 struct iname *new = safe_malloc(sizeof(struct iname)); local
283 new->next = *if_names;
284 *if_names = new;
285 new->name = safe_string_alloc(optarg);
286 new->found = 0;
292 struct iname *new = safe_malloc(sizeof(struct iname)); local
293 new->next = *if_addrs;
294 *if_addrs = new;
295 new->found = 0;
296 if (inet_pton(AF_INET, optarg, &new
309 struct server *new = safe_malloc(sizeof(struct server)); local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/ext2fs/
H A Dkernel-list.h32 * Insert a new entry between two known consecutive entries.
37 static __inline__ void __list_add(struct list_head * new, argument
41 next->prev = new;
42 new->next = next;
43 new->prev = prev;
44 prev->next = new;
48 * Insert a new entry after the specified head..
50 static __inline__ void list_add(struct list_head *new, struct list_head *head) argument
52 __list_add(new, head, head->next);
56 * Insert a new entr
58 list_add_tail(struct list_head *new, struct list_head *head) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/tools/
H A DMakefile11 cmp -s $^ $@ || (cp $^ $(TARGET).new && mv $(TARGET).new $(TARGET))
19 rm -f offset.[hs] $(TARGET).new
/asus-wl-520gu-7.0.1.45/src/router/samba/source/script/
H A Drevert.sh9 mv $BINDIR/$p2 $BINDIR/$p2.new
11 rm -f $BINDIR/$p2.new
/asus-wl-520gu-7.0.1.45/src/router/samba/source/ubiqx/
H A Ddebugparse.c152 return( dbg_eof ); /* that we can restart with new input. */
167 /* If we are at the start of a new line, and the input character
182 /* We've taken care of terminators, text blocks and new lines.
265 new = dbg_null, local
272 old = new;
273 new = dbg_char2token( &state, bufr[i] );
274 switch( new )
286 if( old != new )
287 (void)printf( "\n[%05d]%12s: ", linecount, dbg_token2string(new) );
/asus-wl-520gu-7.0.1.45/src/linux/linux/kernel/
H A Duser.c95 struct user_struct *new; local
97 new = kmem_cache_alloc(uid_cachep, SLAB_KERNEL);
98 if (!new)
100 new->uid = uid;
101 atomic_set(&new->__count, 1);
102 atomic_set(&new->processes, 0);
103 atomic_set(&new->files, 0);
112 kmem_cache_free(uid_cachep, new);
114 uid_hash_insert(new, hashent);
115 up = new;
[all...]
H A Dresource.c67 static struct resource * __request_resource(struct resource *root, struct resource *new) argument
69 unsigned long start = new->start;
70 unsigned long end = new->end;
83 new->sibling = tmp;
84 *p = new;
85 new->parent = root;
114 int request_resource(struct resource *root, struct resource *new) argument
119 conflict = __request_resource(root, new);
151 static int find_resource(struct resource *root, struct resource *new, argument
161 new
189 allocate_resource(struct resource *root, struct resource *new, unsigned long size, unsigned long min, unsigned long max, unsigned long align, void (*alignf)(void *, struct resource *, unsigned long, unsigned long), void *alignf_data) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/tools/
H A DMakefile13 cmp -s $^ $@ || (cp $^ $(TARGET).new && mv $(TARGET).new $(TARGET))
24 rm -f offset.[hs] $(TARGET).new offset.tmp
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/parisc/tools/
H A DMakefile18 cmp -s $^ $@ || (cp $^ $(TARGET).new && mv $(TARGET).new $(TARGET))
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ia64/
H A Dbitops.h31 __u32 bit, old, new;
40 new = old | bit;
41 } while (cmpxchg_acq(m, old, new) != old);
78 __u32 mask, old, new;
87 new = old & mask;
88 } while (cmpxchg_acq(m, old, new) != old);
103 __u32 bit, old, new;
112 new = old ^ bit;
113 } while (cmpxchg_acq(m, old, new) != old);
142 __u32 bit, old, new;
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ia64/
H A Dbitops.h31 __u32 bit, old, new;
40 new = old | bit;
41 } while (cmpxchg_acq(m, old, new) != old);
78 __u32 mask, old, new;
87 new = old & mask;
88 } while (cmpxchg_acq(m, old, new) != old);
103 __u32 bit, old, new;
112 new = old ^ bit;
113 } while (cmpxchg_acq(m, old, new) != old);
142 __u32 bit, old, new;
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/
H A Dsmbadduser32 echo " 3) Executes smbpasswd for each new user"
42 set new = ()
69 set new = ($new $unix)
73 # Enter password for new users
75 foreach one ($new)
H A Dsmbadduser.in32 echo " 3) Executes smbpasswd for each new user"
42 set new = ()
69 set new = ($new $unix)
73 # Enter password for new users
75 foreach one ($new)
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/ide/
H A Dns87415.c37 unsigned int bit, other, new, *old = (unsigned int *) hwif->select_data; local
43 new = *old;
47 new = drive->present ? (new & ~bit) : (new | bit);
52 new = use_dma ? ((new & ~other) | bit) : (new & ~bit);
54 if (new != *old) {
67 *old = new;
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/irda/irnet/
H A Dirnet_irda.c311 /* Close the last instance of IrIAP, and open a new one.
318 /* Create a new IAP instance */
722 irnet_socket * new = (irnet_socket *) NULL; local
742 new = (irnet_socket *) hashbin_find(irnet_server.list,
744 if(new)
746 (unsigned int) new, new->rname);
753 if(new == (irnet_socket *) NULL)
755 new = (irnet_socket *) hashbin_get_first(irnet_server.list);
756 while(new !
804 irnet_connect_socket(irnet_socket * server, irnet_socket * new, struct qos_info * qos, __u32 max_sdu_size, __u8 max_header_size) argument
1317 irnet_socket * new = (irnet_socket *) NULL; local
[all...]

Completed in 395 milliseconds

1234567891011>>