Searched refs:sl (Results 1 - 25 of 218) sorted by relevance

123456789

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Dslip.c13 * Has a new sl->mtu field.
32 * ifconfig sl? up & down now works correctly.
94 static void slip_unesc(struct slip *sl, unsigned char c);
97 static void slip_unesc6(struct slip *sl, unsigned char c);
121 sl_alloc_bufs(struct slip *sl, int mtu) argument
162 spin_lock_bh(&sl->lock);
163 if (sl->tty == NULL) {
164 spin_unlock_bh(&sl->lock);
168 sl->mtu = mtu;
169 sl
199 sl_free_bufs(struct slip *sl) argument
214 sl_realloc_bufs(struct slip *sl, int mtu) argument
302 sl_lock(struct slip *sl) argument
310 sl_unlock(struct slip *sl) argument
317 sl_bump(struct slip *sl) argument
375 sl_encaps(struct slip *sl, unsigned char *icp, int len) argument
428 struct slip *sl = (struct slip *) tty->disc_data; local
450 struct slip *sl = netdev_priv(dev); local
484 struct slip *sl = netdev_priv(dev); local
518 struct slip *sl = netdev_priv(dev); local
537 struct slip *sl = netdev_priv(dev); local
551 struct slip *sl = netdev_priv(dev); local
567 struct slip *sl = netdev_priv(dev); local
602 struct slip *sl = netdev_priv(dev); local
620 struct slip *sl = netdev_priv(dev); local
664 struct slip *sl = (struct slip *) tty->disc_data; local
698 struct slip *sl; local
721 struct slip *sl; local
834 struct slip *sl; local
917 struct slip *sl = (struct slip *) tty->disc_data; local
979 slip_unesc(struct slip *sl, unsigned char s) argument
1066 slip_unesc6(struct slip *sl, unsigned char s) argument
1105 struct slip *sl = (struct slip *) tty->disc_data; local
1223 struct slip *sl = netdev_priv(dev); local
1345 struct slip *sl; local
1411 struct slip *sl=(struct slip *)sls; local
1446 struct slip *sl=(struct slip *)sls; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wan/
H A Dx25_asy.c46 static void x25_asy_unesc(struct x25_asy *sl, unsigned char c);
53 struct x25_asy *sl; local
66 sl = dev->priv;
68 if (!test_and_set_bit(SLF_INUSE, &sl->flags))
69 return sl;
88 sl = dev->priv;
94 set_bit(SLF_INUSE, &sl->flags);
96 return sl;
107 static void x25_asy_free(struct x25_asy *sl) argument
110 kfree(sl
122 struct x25_asy *sl = dev->priv; local
174 x25_asy_lock(struct x25_asy *sl) argument
182 x25_asy_unlock(struct x25_asy *sl) argument
189 x25_asy_bump(struct x25_asy *sl) argument
222 x25_asy_encaps(struct x25_asy *sl, unsigned char *icp, int len) argument
262 struct x25_asy *sl = (struct x25_asy *) tty->disc_data; local
285 struct x25_asy *sl = (struct x25_asy*)(dev->priv); local
306 struct x25_asy *sl = (struct x25_asy*)(dev->priv); local
375 struct x25_asy *sl=dev->priv; local
402 struct x25_asy *sl = dev->priv; local
421 struct x25_asy *sl = dev->priv; local
452 struct x25_asy *sl = (struct x25_asy*)(dev->priv); local
502 struct x25_asy *sl = (struct x25_asy*)(dev->priv); local
527 struct x25_asy *sl = (struct x25_asy *) tty->disc_data; local
556 struct x25_asy *sl = (struct x25_asy *) tty->disc_data; local
599 struct x25_asy *sl = (struct x25_asy *) tty->disc_data; local
618 struct x25_asy *sl = (struct x25_asy*)(dev->priv); local
667 x25_asy_unesc(struct x25_asy *sl, unsigned char s) argument
708 struct x25_asy *sl = (struct x25_asy *) tty->disc_data; local
733 struct x25_asy *sl = (struct x25_asy*)(dev->priv); local
742 struct x25_asy *sl = dev->priv; local
810 struct x25_asy *sl = dev->priv; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/mod_db4/
H A Dskiplist.c46 void skiplisti_init(Skiplist *sl) { argument
47 sl->compare = (SkiplistComparator)NULL;
48 sl->comparek = (SkiplistComparator)NULL;
49 sl->height=0;
50 sl->preheight=0;
51 sl->size=0;
52 sl->top = NULL;
53 sl->bottom = NULL;
54 sl->index = NULL;
67 void skiplist_init(Skiplist *sl) { argument
74 skiplist_set_compare(Skiplist *sl, SkiplistComparator comp, SkiplistComparator compk) argument
85 skiplist_add_index(Skiplist *sl, SkiplistComparator comp, SkiplistComparator compk) argument
116 skiplist_getlist(Skiplist *sl) argument
121 skiplist_find(Skiplist *sl, void *data, struct skiplistnode **iter) argument
138 Skiplist *sl; local
149 skiplisti_find_compare(Skiplist *sl, void *data, struct skiplistnode **ret, SkiplistComparator comp) argument
179 skiplist_next(Skiplist *sl, struct skiplistnode **iter) argument
184 skiplist_previous(Skiplist *sl, struct skiplistnode **iter) argument
189 skiplist_insert(Skiplist *sl, void *data) argument
195 skiplist_insert_compare(Skiplist *sl, void *data, SkiplistComparator comp) argument
301 skiplist_append(Skiplist *sl, void *data) argument
413 skiplist_remove(Skiplist *sl, void *data, FreeFunc myfree) argument
418 skiplist_print_struct(Skiplist *sl, char *prefix) argument
433 skiplisti_remove(Skiplist *sl, struct skiplistnode *m, FreeFunc myfree) argument
470 Skiplist *sl; local
483 skiplist_remove_all(Skiplist *sl, FreeFunc myfree) argument
[all...]
H A Dskiplist.h56 Skiplist *sl; member in struct:skiplistnode
60 void skiplist_init(Skiplist *sl);
61 void skiplist_set_compare(Skiplist *sl, SkiplistComparator,
63 void skiplist_add_index(Skiplist *sl, SkiplistComparator,
65 struct skiplistnode *skiplist_getlist(Skiplist *sl);
66 void *skiplist_find_compare(Skiplist *sl, void *data, struct skiplistnode **iter,
68 void *skiplist_find(Skiplist *sl, void *data, struct skiplistnode **iter);
69 void *skiplist_next(Skiplist *sl, struct skiplistnode **);
70 void *skiplist_previous(Skiplist *sl, struct skiplistnode **);
72 struct skiplistnode *skiplist_insert_compare(Skiplist *sl,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dos2compat.c59 size_t sl = strlen (root); local
60 _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1);
61 memcpy (_nlos2_libdir, root, sl);
62 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1);
73 size_t sl = strlen (root); local
74 _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1);
75 memcpy (_nlos2_localealiaspath, root, sl);
76 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1);
87 size_t sl = strlen (root); local
88 _nlos2_localedir = (char *) malloc (sl
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/shlib/
H A DMakefile.hpux10-cc6 sh_slib=$(slib).sl.$(major)
9 sh_clib=$(clib).sl.$(major)
11 all : $(clib).sl $(slib).sl
25 $(clib).sl : $(sh_clib)
29 $(sh_slib) : $(slib)_pic.a $(clib).sl
32 $(slib).sl : $(sh_slib)
H A Dhpux10-cc.sh27 # machines. +O4 optimization of the libcrypto.sl shared library may
63 chmod 555 lib*.sl.0.9.7
64 cp -p lib*_pic.a lib*.sl.0.9.7 /usr/local/ssl/lib
65 (cd /usr/local/ssl/lib ; ln -sf libcrypto.sl.0.9.7 libcrypto.sl ; ln -sf libssl.sl.0.9.7 libssl.sl)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/shlib/
H A DMakefile.hpux10-cc6 sh_slib=$(slib).sl.$(major)
9 sh_clib=$(clib).sl.$(major)
11 all : $(clib).sl $(slib).sl
25 $(clib).sl : $(sh_clib)
29 $(sh_slib) : $(slib)_pic.a $(clib).sl
32 $(slib).sl : $(sh_slib)
H A Dhpux10-cc.sh27 # machines. +O4 optimization of the libcrypto.sl shared library may
63 chmod 555 lib*.sl.0.9.8
64 cp -p lib*_pic.a lib*.sl.0.9.8 /usr/local/ssl/lib
65 (cd /usr/local/ssl/lib ; ln -sf libcrypto.sl.0.9.8 libcrypto.sl ; ln -sf libssl.sl.0.9.8 libssl.sl)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/w1/slaves/
H A Dw1_ds2433.c66 static int w1_f23_refresh_block(struct w1_slave *sl, struct w1_f23_data *data, argument
75 if (w1_reset_select_slave(sl)) {
83 w1_write_block(sl->master, wrbuf, 3);
84 w1_read_block(sl->master, &data->memory[off], W1_PAGE_SIZE);
97 struct w1_slave *sl = kobj_to_w1_slave(kobj); local
99 struct w1_f23_data *data = sl->family_data;
108 mutex_lock(&sl->master->mutex);
115 if (w1_f23_refresh_block(sl, data, i)) {
125 if (w1_reset_select_slave(sl)) {
133 w1_write_block(sl
156 w1_f23_write(struct w1_slave *sl, int addr, int len, const u8 *data) argument
205 struct w1_slave *sl = kobj_to_w1_slave(kobj); local
262 w1_f23_add_slave(struct w1_slave *sl) argument
286 w1_f23_remove_slave(struct w1_slave *sl) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/w1/
H A Dw1.c84 struct w1_slave *sl = dev_to_w1_slave(dev); local
86 printk("%s: Releasing %s.\n", __func__, sl->name);
88 while (atomic_read(&sl->refcnt)) {
90 sl->name, atomic_read(&sl->refcnt));
95 w1_family_put(sl->family);
96 sl->master->slave_count--;
98 complete(&sl->released);
103 struct w1_slave *sl = dev_to_w1_slave(dev); local
105 return sprintf(buf, "%s\n", sl
110 struct w1_slave *sl = kobj_to_w1_slave(kobj); local
141 struct w1_slave *sl = kobj_to_w1_slave(kobj); local
158 struct w1_slave *sl = kobj_to_w1_slave(kobj); local
177 w1_default_add_slave(struct w1_slave *sl) argument
182 w1_default_remove_slave(struct w1_slave *sl) argument
325 struct w1_slave *sl; local
390 struct w1_slave *sl = NULL; local
434 __w1_attach_slave_device(struct w1_slave *sl) argument
505 struct w1_slave *sl; local
562 w1_slave_detach(struct w1_slave *sl) argument
625 struct w1_slave *sl = NULL; local
667 struct w1_slave *sl; local
791 struct w1_slave *sl, *sln; local
855 struct w1_slave *sl, *sln; local
[all...]
H A Dw1_netlink.c64 static int w1_send_read_reply(struct w1_slave *sl, struct cn_msg *msg, argument
102 static int w1_process_command_slave(struct w1_slave *sl, struct cn_msg *msg, argument
107 dev_dbg(&sl->master->dev, "%s: %02x.%012llx.%02x: cmd=%02x, len=%u.\n",
108 __func__, sl->reg_num.family, (unsigned long long)sl->reg_num.id, sl->reg_num.crc,
113 w1_read_block(sl->master, cmd->data, cmd->len);
114 w1_send_read_reply(sl, msg, hdr, cmd);
117 w1_write_block(sl->master, cmd->data, cmd->len);
121 w1_search_process(sl
137 struct w1_slave *sl; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/math-emu/
H A Dsfp-util.h7 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
8 ((sl) = (al) + (bl), (sh) = (ah) + (bh) + ((sl) < (al)))
10 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
11 ((sl) = (al) - (bl), (sh) = (ah) - (bh) - ((al) < (bl)))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dseqlock.h60 static inline void write_seqlock(seqlock_t *sl) argument
62 spin_lock(&sl->lock);
63 ++sl->sequence;
67 static inline void write_sequnlock(seqlock_t *sl) argument
70 sl->sequence++;
71 spin_unlock(&sl->lock);
74 static inline int write_tryseqlock(seqlock_t *sl) argument
76 int ret = spin_trylock(&sl->lock);
79 ++sl->sequence;
86 static __always_inline unsigned read_seqbegin(const seqlock_t *sl) argument
101 read_seqretry(const seqlock_t *sl, unsigned iv) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/bstring/
H A Dbstradd.c125 struct bstrList *sl = NULL; local
127 if ((sl = bstrListCreate()) == NULL)
130 if ((bstrListAlloc(sl, min)) != BSTR_OK) {
131 bstrListDestroy(sl);
135 return sl;
141 int bstrListPush(struct bstrList *sl, bstring bs) argument
143 if (sl->qty == sl->mlen) {
144 if ((bstrListAlloc(sl, sl
156 bstrListPop(struct bstrList *sl) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/bstring/
H A Dbstradd.c125 struct bstrList *sl = NULL; local
127 if ((sl = bstrListCreate()) == NULL)
130 if ((bstrListAlloc(sl, min)) != BSTR_OK) {
131 bstrListDestroy(sl);
135 return sl;
141 int bstrListPush(struct bstrList *sl, bstring bs) argument
143 if (sl->qty == sl->mlen) {
144 if ((bstrListAlloc(sl, sl
156 bstrListPop(struct bstrList *sl) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/include/atalk/
H A Dbstradd.h44 extern int bstrListPush(struct bstrList *sl, bstring bs);
45 extern bstring bstrListPop(struct bstrList *sl);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/include/atalk/
H A Dbstradd.h44 extern int bstrListPush(struct bstrList *sl, bstring bs);
45 extern bstring bstrListPop(struct bstrList *sl);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/sysfs/
H A Dsymlink.c51 struct sysfs_symlink * sl; local
55 sl = kmalloc(sizeof(*sl), GFP_KERNEL);
56 if (!sl)
59 sl->link_name = kmalloc(strlen(name) + 1, GFP_KERNEL);
60 if (!sl->link_name)
63 strcpy(sl->link_name, name);
64 sl->target_kobj = kobject_get(target);
66 error = sysfs_make_dirent(parent_sd, NULL, sl, S_IFLNK|S_IRWXUGO,
72 kfree(sl
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/math-emu/
H A Dsfp-util.h6 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
10 "=&r" ((USItype)(sl)) \
16 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
20 "=&r" ((USItype)(sl)) \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dsfp-util.h6 #define add_ssaaaa(sh, sl, ah, al, bh, bl) ({ \
17 (sl) = __sl; \
20 #define sub_ddmmss(sh, sl, ah, al, bh, bl) ({ \
31 (sl) = __sl; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ripemd/asm/
H A Drmd-586.pl45 @sl=( 11,14,15,12, 5, 8, 7, 9,11,13,14,15, 6, 7, 9, 8,
348 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
349 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
350 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
351 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
352 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
353 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
354 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
355 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
356 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ripemd/asm/
H A Drmd-586.pl45 @sl=( 11,14,15,12, 5, 8, 7, 9,11,13,14,15, 6, 7, 9, 8,
348 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
349 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
350 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
351 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
352 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
353 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
354 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
355 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
356 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/
H A Dlonglong.h117 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
121 "=&r" ((USItype)(sl)) \
126 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
130 "=&r" ((USItype)(sl)) \
188 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
192 "=&r" ((USItype)(sl)) \
197 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
201 "=&r" ((USItype)(sl)) \
276 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
280 "=&g" ((USItype)(sl)) \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/configfs/
H A Dsymlink.c73 struct configfs_symlink *sl; local
77 sl = kmalloc(sizeof(struct configfs_symlink), GFP_KERNEL);
78 if (sl) {
79 sl->sl_target = config_item_get(item);
80 list_add(&sl->sl_list, &target_sd->s_links);
81 ret = configfs_create_link(sl, parent_item->ci_dentry,
84 list_del_init(&sl->sl_list);
86 kfree(sl);
155 struct configfs_symlink *sl; local
166 sl
[all...]

Completed in 147 milliseconds

123456789