Searched refs:lc (Results 1 - 25 of 442) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libbb/
H A Dchomp.c15 char *lc = last_char_is(s, '\n'); local
17 if (lc)
18 *lc = '\0';
H A Dconcat_path_file.c19 char *lc; local
23 lc = last_char_is(path, '/');
26 return xasprintf("%s%s%s", path, (lc==NULL ? "/" : ""), filename);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v10/lib/
H A Dmemset.c51 register int lc __asm__ ("r11") = c;
64 : "=r" (lc) /* Inputs. */
65 : "0" (lc) /* Outputs. */
77 *dst = (char) lc;
84 *(short *) dst = lc;
150 : "0" (dst), "1" (n), "r" (lc));
156 *(long *) dst = lc; dst += 4;
157 *(long *) dst = lc; dst += 4;
158 *(long *) dst = lc; dst += 4;
159 *(long *) dst = lc; ds
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v32/lib/
H A Dmemset.c51 register int lc __asm__ ("r11") = c;
64 : "=r" (lc) /* Inputs. */
65 : "0" (lc) /* Outputs. */
77 *dst = (char) lc;
84 *(short *) dst = lc;
150 : "0" (dst), "1" (n), "r" (lc));
156 *(long *) dst = lc; dst += 4;
157 *(long *) dst = lc; dst += 4;
158 *(long *) dst = lc; dst += 4;
159 *(long *) dst = lc; ds
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dlru_cache.c41 BUG_ON(!lc); \
42 BUG_ON(!lc->nr_elements); \
43 BUG_ON(test_and_set_bit(__LC_PARANOIA, &lc->flags)); \
47 clear_bit(__LC_PARANOIA, &lc->flags); \
50 /* BUG() if e is not one of the elements tracked by lc */
51 #define PARANOIA_LC_ELEMENT(lc, e) do { \
52 struct lru_cache *lc_ = (lc); \
73 struct lru_cache *lc; local
94 lc = kzalloc(sizeof(*lc), GFP_KERNE
138 lc_free_by_index(struct lru_cache *lc, unsigned i) argument
152 lc_destroy(struct lru_cache *lc) argument
171 lc_reset(struct lru_cache *lc) argument
206 lc_seq_printf_stats(struct seq_file *seq, struct lru_cache *lc) argument
221 lc_hash_slot(struct lru_cache *lc, unsigned int enr) argument
236 lc_find(struct lru_cache *lc, unsigned int enr) argument
251 lc_evict(struct lru_cache *lc) argument
277 lc_del(struct lru_cache *lc, struct lc_element *e) argument
289 lc_get_unused_element(struct lru_cache *lc) argument
301 lc_unused_element_available(struct lru_cache *lc) argument
349 lc_get(struct lru_cache *lc, unsigned int enr) argument
405 lc_try_get(struct lru_cache *lc, unsigned int enr) argument
430 lc_changed(struct lru_cache *lc, struct lc_element *e) argument
456 lc_put(struct lru_cache *lc, struct lc_element *e) argument
477 lc_element_by_index(struct lru_cache *lc, unsigned i) argument
490 lc_index_of(struct lru_cache *lc, struct lc_element *e) argument
504 lc_set(struct lru_cache *lc, unsigned int enr, int index) argument
527 lc_seq_dump_details(struct seq_file *seq, struct lru_cache *lc, char *utext, void (*detail) (struct seq_file *, struct lc_element *)) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/flex/MISC/fastwc/
H A Dwc1.l7 int cc = 0, wc = 0, lc = 0;
13 \n ++lc; ++cc;
16 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dwc2.l8 int cc = 0, wc = 0, lc = 0;
11 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
15 \n+ cc += yyleng; lc += yyleng;
18 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dwc4.l9 int cc = 0, wc = 0, lc = 0;
12 {word}{ws}*\n ++wc; cc += yyleng; ++lc;
14 {words}{word}{ws}*\n wc += 2; cc += yyleng; ++lc;
16 {words}{2}{word}{ws}*\n wc += 3; cc += yyleng; ++lc;
18 {words}{3}{word}{ws}*\n wc += 4; cc += yyleng; ++lc;
22 \n+ cc += yyleng; lc += yyleng;
25 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dmywc.c8 register int c, cc = 0, wc = 0, lc = 0; local
23 ++lc;
25 done: printf( "%8d%8d%8d\n", lc, wc, cc );
H A Dwc3.l9 int cc = 0, wc = 0, lc = 0;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
19 \n+ cc += yyleng; lc += yyleng;
22 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dwc5.l9 int cc = 0, wc = 0, lc = 0;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
19 \n+ cc += yyleng; lc += yyleng;
22 printf( "%8d %8d %8d\n", lc, wc, cc );
/netgear-R7000-V1.0.7.12_1.2.5/src/router/flex/MISC/fastwc/
H A Dwc1.l7 int cc = 0, wc = 0, lc = 0;
13 \n ++lc; ++cc;
16 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dwc2.l8 int cc = 0, wc = 0, lc = 0;
11 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
15 \n+ cc += yyleng; lc += yyleng;
18 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dwc4.l9 int cc = 0, wc = 0, lc = 0;
12 {word}{ws}*\n ++wc; cc += yyleng; ++lc;
14 {words}{word}{ws}*\n wc += 2; cc += yyleng; ++lc;
16 {words}{2}{word}{ws}*\n wc += 3; cc += yyleng; ++lc;
18 {words}{3}{word}{ws}*\n wc += 4; cc += yyleng; ++lc;
22 \n+ cc += yyleng; lc += yyleng;
25 printf( "%8d %8d %8d\n", lc, wc, cc );
H A Dmywc.c8 register int c, cc = 0, wc = 0, lc = 0; local
23 ++lc;
25 done: printf( "%8d%8d%8d\n", lc, wc, cc );
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/md/
H A Ddm-log-userspace-base.c56 static int userspace_do_request(struct log_c *lc, const char *uuid, argument
68 r = dm_consult_userspace(uuid, lc->luid, request_type, data,
79 r = dm_consult_userspace(uuid, lc->luid, DM_ULOG_CTR,
80 lc->usr_argv_str,
81 strlen(lc->usr_argv_str) + 1,
87 r = dm_consult_userspace(uuid, lc->luid, DM_ULOG_RESUME, NULL,
144 struct log_c *lc = NULL; local
153 lc = kmalloc(sizeof(*lc), GFP_KERNEL);
154 if (!lc) {
218 struct log_c *lc = log->context; local
233 struct log_c *lc = log->context; local
245 struct log_c *lc = log->context; local
257 struct log_c *lc = log->context; local
269 struct log_c *lc = log->context; local
288 struct log_c *lc = log->context; local
316 struct log_c *lc = log->context; local
362 struct log_c *lc = log->context; local
412 struct log_c *lc = log->context; local
441 struct log_c *lc = log->context; local
477 struct log_c *lc = log->context; local
505 struct log_c *lc = log->context; local
538 struct log_c *lc = log->context; local
565 struct log_c *lc = log->context; local
601 struct log_c *lc = log->context; local
[all...]
H A Ddm-log.c284 static int rw_header(struct log_c *lc, int rw) argument
286 lc->io_req.bi_rw = rw;
288 return dm_io(&lc->io_req, 1, &lc->header_location, NULL);
291 static int flush_header(struct log_c *lc) argument
294 .bdev = lc->header_location.bdev,
299 lc->io_req.bi_rw = WRITE_BARRIER;
301 return dm_io(&lc->io_req, 1, &null_location, NULL);
357 struct log_c *lc; local
388 lc
511 destroy_log_context(struct log_c *lc) argument
520 struct log_c *lc = (struct log_c *) log->context; local
557 struct log_c *lc = (struct log_c *) log->context; local
575 fail_log_device(struct log_c *lc) argument
588 struct log_c *lc = (struct log_c *) log->context; local
647 struct log_c *lc = (struct log_c *) log->context; local
653 struct log_c *lc = (struct log_c *) log->context; local
660 struct log_c *lc = (struct log_c *) log->context; local
666 struct log_c *lc = (struct log_c *) log->context; local
679 struct log_c *lc = log->context; local
718 struct log_c *lc = (struct log_c *) log->context; local
724 struct log_c *lc = (struct log_c *) log->context; local
731 struct log_c *lc = (struct log_c *) log->context; local
755 struct log_c *lc = (struct log_c *) log->context; local
769 struct log_c *lc = (struct log_c *) log->context; local
782 struct log_c *lc = log->context; local
802 struct log_c *lc = log->context; local
[all...]
H A Ddm-linear.c30 struct linear_c *lc; local
38 lc = kmalloc(sizeof(*lc), GFP_KERNEL);
39 if (lc == NULL) {
48 lc->start = tmp;
50 if (dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev)) {
57 ti->private = lc;
61 kfree(lc);
67 struct linear_c *lc = (struct linear_c *) ti->private; local
69 dm_put_device(ti, lc
75 struct linear_c *lc = ti->private; local
82 struct linear_c *lc = ti->private; local
100 struct linear_c *lc = (struct linear_c *) ti->private; local
118 struct linear_c *lc = (struct linear_c *) ti->private; local
125 struct linear_c *lc = ti->private; local
140 struct linear_c *lc = ti->private; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dlru_cache.h243 extern void lc_reset(struct lru_cache *lc);
244 extern void lc_destroy(struct lru_cache *lc);
245 extern void lc_set(struct lru_cache *lc, unsigned int enr, int index);
246 extern void lc_del(struct lru_cache *lc, struct lc_element *element);
248 extern struct lc_element *lc_try_get(struct lru_cache *lc, unsigned int enr);
249 extern struct lc_element *lc_find(struct lru_cache *lc, unsigned int enr);
250 extern struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr);
251 extern unsigned int lc_put(struct lru_cache *lc, struct lc_element *e);
252 extern void lc_changed(struct lru_cache *lc, struct lc_element *e);
255 extern size_t lc_seq_printf_stats(struct seq_file *seq, struct lru_cache *lc);
267 lc_try_lock(struct lru_cache *lc) argument
276 lc_unlock(struct lru_cache *lc) argument
282 lc_is_used(struct lru_cache *lc, unsigned int enr) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/libcharset/tools/
H A Dall-charsets-X1120 for lc in `./all-locales | sort | uniq`
22 charmap=`LC_ALL=$lc ./locale_charmap 2>/dev/null || echo '<error>'`
23 codeset=`LC_ALL=$lc ./locale_codeset 2>/dev/null || echo '<error>'`
24 charset=`LC_ALL=$lc ./locale_charset 2>/dev/null || echo '<error>'`
25 x11encoding=`LC_ALL=$lc ./locale_x11encoding 2>/dev/null || echo '<error>'`
27 "$lc" "$charmap" "$codeset" "$charset" "$x11encoding"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/libcharset/tools/
H A Dall-charsets-X1120 for lc in `./all-locales | sort | uniq`
22 charmap=`LC_ALL=$lc ./locale_charmap 2>/dev/null || echo '<error>'`
23 codeset=`LC_ALL=$lc ./locale_codeset 2>/dev/null || echo '<error>'`
24 charset=`LC_ALL=$lc ./locale_charset 2>/dev/null || echo '<error>'`
25 x11encoding=`LC_ALL=$lc ./locale_x11encoding 2>/dev/null || echo '<error>'`
27 "$lc" "$charmap" "$codeset" "$charset" "$x11encoding"
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/rds/
H A Dloop.c111 struct rds_loop_connection *lc; local
114 lc = kzalloc(sizeof(struct rds_loop_connection), GFP_KERNEL);
115 if (lc == NULL)
118 INIT_LIST_HEAD(&lc->loop_node);
119 lc->conn = conn;
120 conn->c_transport_data = lc;
123 list_add_tail(&lc->loop_node, &loop_conns);
131 struct rds_loop_connection *lc = arg; local
132 rdsdebug("lc %p\n", lc);
149 struct rds_loop_connection *lc, *_lc; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/uwb/wlp/
H A DMakefile9 wlp-lc.o \
10 wss-lc.o
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/autoconf-lib-link/tests/rpathx/
H A DMakefile.am4 librpathx_la_LDFLAGS = -lc -no-undefined
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/autoconf-lib-link/tests/rpathy/
H A DMakefile.am4 librpathy_la_LDFLAGS = @LTLIBRPATHX@ -lc -no-undefined

Completed in 221 milliseconds

1234567891011>>