Searched refs:tc (Results 1 - 25 of 138) sorted by relevance

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/9p/
H A Dfcall.c53 struct v9fs_fcall *tc; local
56 tc = v9fs_create_tversion(msize, version);
58 if (!IS_ERR(tc)) {
59 ret = v9fs_mux_rpc(v9ses->mux, tc, rcp);
60 kfree(tc);
62 ret = PTR_ERR(tc);
83 struct v9fs_fcall* tc; local
88 tc = v9fs_create_tattach(fid, afid, uname, aname);
89 if (!IS_ERR(tc)) {
90 ret = v9fs_mux_rpc(v9ses->mux, tc, rc
98 v9fs_t_clunk_cb(void *a, struct v9fs_fcall *tc, struct v9fs_fcall *rc, int err) argument
129 struct v9fs_fcall *tc, *rc; local
160 struct v9fs_fcall *tc; local
189 struct v9fs_fcall *tc; local
220 struct v9fs_fcall *tc; local
255 struct v9fs_fcall *tc; local
282 struct v9fs_fcall *tc; local
312 struct v9fs_fcall *tc; local
344 struct v9fs_fcall *tc, *rc; local
381 struct v9fs_fcall *tc, *rc; local
[all...]
H A Dmux.h36 * @tc - request call
49 int v9fs_mux_send(struct v9fs_mux_data *m, struct v9fs_fcall *tc);
51 int v9fs_mux_rpc(struct v9fs_mux_data *m, struct v9fs_fcall *tc, struct v9fs_fcall **rc);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/expat-2.0.1/tests/
H A Dminicheck.c28 TCase *tc = (TCase *) calloc(1, sizeof(TCase)); local
29 if (tc != NULL) {
30 tc->name = name;
32 return tc;
36 suite_add_tcase(Suite *suite, TCase *tc) argument
39 assert(tc != NULL);
40 assert(tc->next_tcase == NULL);
42 tc->next_tcase = suite->tests;
43 suite->tests = tc;
47 tcase_add_checked_fixture(TCase *tc, argument
57 tcase_add_test(TCase *tc, tcase_test_function test) argument
114 TCase *tc; local
[all...]
H A Dminicheck.h77 void suite_add_tcase(Suite *suite, TCase *tc);
81 void tcase_add_test(TCase *tc, tcase_test_function test);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-ns9xxx/
H A Dtime.c62 int tc; local
68 if ((tc = SYS_TC(0)) & SYS_TCx_TEN)
69 SYS_TC(0) = tc & ~SYS_TCx_TEN;
73 REGSET(tc, SYS_TCx, TEN, EN);
74 REGSET(tc, SYS_TCx, TLCS, DIV64); /* This must match TIMERCLOCKSELECT */
75 REGSET(tc, SYS_TCx, INTS, EN);
76 REGSET(tc, SYS_TCx, UDS, DOWN);
77 REGSET(tc, SYS_TCx, TDBG, STOP);
78 REGSET(tc, SYS_TCx, TSZ, 32);
79 REGSET(tc, SYS_TC
[all...]
H A Dirq.c22 u32 tc = SYS_TC(irq - IRQ_TIMER0); local
24 REGSET(tc, SYS_TCx, INTC, SET);
25 SYS_TC(irq - IRQ_TIMER0) = tc;
27 REGSET(tc, SYS_TCx, INTC, UNSET);
28 SYS_TC(irq - IRQ_TIMER0) = tc;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/v850/kernel/
H A Drte_ma1_cb.c84 unsigned tc; local
96 for (tc = 0; tc < 2; tc++)
98 V850E_TIMER_C_TMCC0 (tc) |= V850E_TIMER_C_TMCC0_CAE;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dsmp-mt.c143 static unsigned int __init smp_vpe_init(unsigned int tc, unsigned int mvpconf0, argument
146 if (tc > ((mvpconf0 & MVPCONF0_PVPE) >> MVPCONF0_PVPE_SHIFT))
150 if (tc != 0) {
160 cpu_set(tc, phys_cpu_present_map);
161 __cpu_number_map[tc] = ++ncpu;
162 __cpu_logical_map[ncpu] = tc;
168 if (tc != 0)
174 static void __init smp_tc_init(unsigned int tc, unsigned int mvpconf0) argument
178 if (!tc)
183 if (tc >
209 unsigned int mvpconf0, ntc, tc, ncpu = 0; local
[all...]
H A Dsmtc.c332 static void smtc_tc_setup(int vpe, int tc, int cpu) argument
334 settc(tc);
341 /* Bind tc to vpe */
349 cpu_data[cpu].tc_id = tc;
355 int i, vpe, tc, ntc, nvpe, tcpervpe, slop, cpu; local
422 for (tc = 0, vpe = 0 ; (vpe < nvpe) && (tc < ntc) ; vpe++) {
426 settc(tc);
437 if (tc != 0) {
438 smtc_tc_setup(vpe,tc, cp
1061 int tc; local
[all...]
H A Dvpe.c118 /* tc's associated with this vpe */
119 struct list_head tc; member in struct:vpe
131 struct tc { struct
139 struct list_head tc; member in struct:tc
141 /* The global list of tc's */
177 struct tc *get_tc(int index)
179 struct tc *t;
189 struct tc *get_tc_unused(void)
191 struct tc *t;
210 INIT_LIST_HEAD(&v->tc);
1040 cleanup_tc(struct tc *tc) argument
[all...]
H A Dmips-mt.c181 int tc; local
199 for(tc = 0; tc < ntc; tc++) {
200 settc(tc);
216 for(tc = 0; tc < ntc; tc++) {
217 settc(tc);
222 printk(" TC %d (current TC with VPE EPC above)\n", tc);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/mach-at32ap/
H A DMakefile3 obj-$(CONFIG_CPU_AT32AP7000) += time-tc.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/tc/
H A DMakefile7 obj-$(CONFIG_TC) += tc.o tc-driver.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dtransport_class.h84 static inline int transport_container_register(struct transport_container *tc) argument
86 return attribute_container_register(&tc->ac);
89 static inline int transport_container_unregister(struct transport_container *tc) argument
91 return attribute_container_unregister(&tc->ac);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A DMakefile4 TCOBJ= tc.o tc_qdisc.o tc_class.o tc_filter.o tc_util.o \
67 all: libtc.a tc $(TCSO)
69 tc: $(TCOBJ) $(LIBNETLINK) $(LIBUTIL) $(TCLIB)
75 mkdir -p $(DESTDIR)/usr/lib/tc
76 install -m 0755 tc $(DESTDIR)$(SBINDIR)
77 $(STRIP) $(DESTDIR)$(SBINDIR)/tc
79 do install -m 755 $$i $(DESTDIR)/usr/lib/tc; $(STRIP) $(DESTDIR)/usr/lib/tc/$$i; \
83 rm -f $(TCOBJ) $(TCLIB) libtc.a tc *.so emp_ematch.yacc.h; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dtalloc.c155 struct talloc_chunk *tc; local
161 tc = SMB_MALLOC(sizeof(*tc));
162 if (tc) {
163 tc->ptr = p;
164 tc->size = size;
165 tc->next = t->list;
166 t->list = tc;
196 struct talloc_chunk *tc; local
207 for (tc
[all...]
H A Dgenrand.c68 unsigned char tc; local
72 tc = hash[ind];
74 hash[j] = tc;
92 unsigned char tc; local
98 tc = hash[index_i];
100 hash[index_j] = tc;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/netem/
H A DMakefile19 mkdir -p $(DESTDIR)/usr/lib/tc
21 do install -m 755 $$i $(DESTDIR)/usr/lib/tc; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Ddvenc.c72 struct tm tc; local
82 brktimegm(ct, &tc);
93 ((tc.tm_sec / 10) << 4) | /* tens of seconds */
94 (tc.tm_sec % 10); /* units of seconds */
96 ((tc.tm_min / 10) << 4) | /* tens of minutes */
97 (tc.tm_min % 10); /* units of minutes */
100 ((tc.tm_hour / 10) << 4) | /* tens of hours */
101 (tc.tm_hour % 10); /* units of hours */
143 brktimegm(ct, &tc);
147 ((tc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/examples/
H A DSYN-DoS.rate.limit13 TC=$IPROUTE/tc/tc
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/dec/
H A DMakefile9 obj-$(CONFIG_TC) += tc.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Dlcnalloc.c341 LCN tc; local
347 tc = lcn + bmp_pos + 1;
349 "position, tc 0x%llx, "
351 (unsigned long long)tc,
360 if (tc >= vol->mft_zone_end) {
367 tc > vol->mft_zone_pos)
368 && tc >= vol->mft_lcn)
369 vol->mft_zone_pos = tc;
382 if (tc >= vol->nr_clusters)
387 tc > vo
484 LCN tc; local
527 LCN tc; local
568 LCN tc; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dsmbdes.c375 unsigned char tc; local
379 tc = s_box[ind];
381 s_box[j] = tc;
385 unsigned char tc; local
391 tc = s_box[index_i];
393 s_box[index_j] = tc;
415 unsigned char tc; local
419 tc = s_box[ind];
421 s_box[j] = tc;
425 unsigned char tc; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/drivers/
H A Dcryptocop.c355 static int create_pad_descriptor(struct cryptocop_tfrm_ctx *tc, struct cryptocop_dma_desc **pad_desc, int alloc_flag) argument
376 switch (tc->unit_no) {
378 error = create_md5_pad(alloc_flag, tc->consumed, &pad, &plen);
385 mo.hashconf = tc->hash_conf;
386 mo.hashmode = tc->hash_mode;
389 error = create_sha1_pad(alloc_flag, tc->consumed, &pad, &plen);
396 mo.hashconf = tc->hash_conf;
397 mo.hashmode = tc->hash_mode;
400 if (tc->consumed % tc
426 setup_key_dl_desc(struct cryptocop_tfrm_ctx *tc, struct cryptocop_dma_desc **kd, int alloc_flag) argument
484 setup_cipher_iv_desc(struct cryptocop_tfrm_ctx *tc, struct cryptocop_dma_desc **id, int alloc_flag) argument
516 create_input_descriptors(struct cryptocop_operation *operation, struct cryptocop_tfrm_ctx *tc, struct cryptocop_dma_desc **id, int alloc_flag) argument
638 append_input_descriptors(struct cryptocop_operation *operation, struct cryptocop_dma_desc **current_in_cdesc, struct cryptocop_dma_desc **current_out_cdesc, struct cryptocop_tfrm_ctx *tc, int alloc_flag) argument
982 struct cryptocop_tfrm_ctx *tc = NULL; local
1569 struct cryptocop_transform_ctx *tc; local
1653 struct cryptocop_transform_ctx *tc = sess->tfrm_ctx; local
2587 struct cryptocop_transform_ctx *tc = get_transform_ctx(sess, CRYPTOCOP_IOCTL_CIPHER_TID); local
2641 struct cryptocop_transform_ctx *tc = get_transform_ctx(sess, CRYPTOCOP_IOCTL_DIGEST_TID); local
3267 struct cryptocop_tfrm_cfg *tc; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/touchscreen/
H A Dcorgi_ts.c46 struct ts_event tc; member in struct:corgi_ts
166 corgi_ts->tc.pressure = 0;
170 corgi_ts->tc.x = x;
171 corgi_ts->tc.y = y;
172 corgi_ts->tc.pressure = (x * (z2 - z1)) / z1;
183 if (!corgi_ts->tc.pressure && corgi_ts->pendown == 0)
186 input_report_abs(dev, ABS_X, corgi_ts->tc.x);
187 input_report_abs(dev, ABS_Y, corgi_ts->tc.y);
188 input_report_abs(dev, ABS_PRESSURE, corgi_ts->tc.pressure);
211 corgi_ts->tc
[all...]

Completed in 189 milliseconds

123456