Searched refs:tmp (Results 76 - 100 of 2904) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hardware/eicon/
H A Distream.c79 char tmp[4]; local
88 (dword*)&tmp[0],
90 if (tmp[0] & DIVA_DFIFO_READY) { /* No free blocks more */
109 tmp[1] = (char)to_write;
110 tmp[0] = (tmp[0] & DIVA_DFIFO_WRAP) |
113 if (tmp[0] & DIVA_DFIFO_LAST) {
114 tmp[2] = usr1;
115 tmp[3] = usr2;
123 (dword*)&tmp[
157 char tmp[4]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/camellia/
H A Dcmll_cbc.c72 u8 t8 [CAMELLIA_BLOCK_SIZE]; } tmp; local
130 memcpy(tmp.t8, in, CAMELLIA_BLOCK_SIZE);
132 SWAP4WORD(tmp.t32);
133 key->dec(key->rd_key, tmp.t32);
135 SWAP4WORD(tmp.t32);
137 out[n] = tmp.t8[n] ^ iv[n];
146 memcpy(tmp.t8, in, CAMELLIA_BLOCK_SIZE);
153 memcpy(ivec, tmp.t8, CAMELLIA_BLOCK_SIZE);
160 memcpy(tmp.t8, in, CAMELLIA_BLOCK_SIZE);
169 out[n] = tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-s3c2412/
H A Dpm.c38 unsigned long tmp; local
42 tmp = __raw_readl(S3C2412_PWRCFG);
43 tmp |= S3C2412_PWRCFG_STANDBYWFI_SLEEP;
44 __raw_writel(tmp, S3C2412_PWRCFG);
49 tmp = 0;
55 "mcr p15, 0, %0, c7, c0, 4" :: "r" (tmp));
106 unsigned long tmp; local
108 tmp = __raw_readl(S3C2412_PWRCFG);
109 tmp &= ~S3C2412_PWRCFG_STANDBYWFI_MASK;
110 tmp |
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-xtensa/
H A Dposix_types.h102 unsigned int *tmp = (unsigned int *)p->fds_bits; local
108 tmp[0] = 0; tmp[1] = 0; tmp[2] = 0; tmp[3] = 0;
109 tmp[4] = 0; tmp[5] = 0; tmp[6] = 0; tmp[7] = 0;
116 *tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dmsgl-cat.c68 is_message_selected (const message_ty *tmp) argument
70 int used = (tmp->used >= 0 ? tmp->used : - tmp->used);
72 return (is_header (tmp)
84 return mp->tmp->used < 0 && is_message_selected (mp->tmp);
87 return is_message_selected (mp->tmp);
95 if (mp->tmp->obsolete && is_message_needed (mp))
97 mp->tmp
296 message_ty *tmp; local
509 message_ty *tmp = mp->tmp; local
620 message_ty *tmp = mlp->item[j]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Ddelayacct.c101 s64 tmp; local
113 tmp = (s64)d->cpu_run_real_total;
115 tmp += timespec_to_ns(&ts);
116 d->cpu_run_real_total = (tmp < (s64)d->cpu_run_real_total) ? 0 : tmp;
118 tmp = (s64)d->cpu_scaled_run_real_total;
120 tmp += timespec_to_ns(&ts);
122 (tmp < (s64)d->cpu_scaled_run_real_total) ? 0 : tmp;
134 tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/math-emu/
H A Dqrnnd.S41 #define tmp $3 define
52 $loop1: cmplt n0,0,tmp
54 bis n1,tmp,n1
57 subq n1,d,tmp
58 cmovne qb,tmp,n1
60 cmplt n0,0,tmp
62 bis n1,tmp,n1
65 subq n1,d,tmp
66 cmovne qb,tmp,n1
68 cmplt n0,0,tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/lib/
H A Dipx_pton.c23 u_int32_t tmp; local
27 if ((tmp = hexget(*str)) & 0xf0) {
36 (*net) |= tmp;
48 u_int32_t tmp; local
51 if ((tmp = hexget(*str++)) & 0xf0)
53 node[i] = (u_int8_t)tmp;
55 if ((tmp = hexget(*str++)) & 0xf0)
57 node[i] |= (u_int8_t)tmp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/blackfin/kernel/
H A Dptrace.c182 unsigned long tmp; local
184 tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
185 put_reg(child, PT_SR, tmp);
201 unsigned long tmp = 0; local
207 if (is_user_addr_valid(child, addr + add, sizeof(tmp)) < 0)
213 && addr + add + sizeof(tmp) <= L1_CODE_START + L1_CODE_LENGTH) {
214 safe_dma_memcpy (&tmp, (const void *)(addr + add), sizeof(tmp));
215 copied = sizeof(tmp);
219 access_process_vm(child, addr + add, &tmp,
231 unsigned long tmp; local
315 long tmp; local
344 long tmp; local
358 long tmp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-tests/
H A Dtest-binary-io.sh6 tmpfiles="$tmpfiles t-bin-out1.tmp t-bin-out2.tmp"
7 ./test-binary-io${EXEEXT} > t-bin-out1.tmp || exit 1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/misc/
H A Drootprep.sh24 # tmp
25 mkdir -p tmp
26 ln -sf tmp/var var
27 ln -sf tmp/media media
28 (cd $ROOTDIR/usr && ln -sf ../tmp)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dclocksource.h119 u64 tmp = ((u64)1000000) << shift_constant; local
121 tmp += khz/2; /* round for do_div */
122 do_div(tmp, khz);
124 return (u32)tmp;
145 u64 tmp = ((u64)1000000000) << shift_constant; local
147 tmp += hz/2; /* round for do_div */
148 do_div(tmp, hz);
150 return (u32)tmp;
185 u64 tmp; local
187 tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dlibgcrypt-config143 tmp=""
145 if echo "$tmp" | fgrep -v -- "$i" >/dev/null; then
146 tmp="$tmp $i"
149 echo $tmp
164 tmp=""
166 if echo "$tmp" | fgrep -v -- "$i" >/dev/null; then
167 tmp="$tmp $i"
170 echo $tmp
[all...]
H A Dlibgcrypt-config.in143 tmp=""
145 if echo "$tmp" | fgrep -v -- "$i" >/dev/null; then
146 tmp="$tmp $i"
149 echo $tmp
164 tmp=""
166 if echo "$tmp" | fgrep -v -- "$i" >/dev/null; then
167 tmp="$tmp $i"
170 echo $tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/rc/
H A Dudhcpc.c42 char tmp[100]; local
49 snprintf(tmp, sizeof(tmp), "/tmp/udhcpc%d.expires", unit);
50 if (!(fp = fopen(tmp, "w"))) {
51 perror(tmp);
90 char tmp[100], prefix[] = "wanXXXXXXXXXX_"; local
99 nvram_set(strcat_r(prefix, "ipaddr", tmp), value);
101 nvram_set(strcat_r(prefix, "netmask", tmp), value);
103 nvram_set(strcat_r(prefix, "gateway", tmp), valu
164 char tmp[100]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/util/
H A Ddomd23 sed -e '/^# DO NOT DELETE.*/,$d' < Makefile > Makefile.tmp
24 echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
25 gcc -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp
26 ${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new
27 rm -f Makefile.tmp
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/
H A DMakefile.am19 rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION};
20 pushd ${top_srcdir} && git archive --prefix=${PACKAGE_TARNAME}-${PACKAGE_VERSION}/ HEAD | tar -C /tmp -x && popd;
21 pushd /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION} && ./autogen.sh && popd;
22 tar -C /tmp -cjf ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.bz2 --owner=root --group=root ${PACKAGE_TARNAME}-${PACKAGE_VERSION}/;
23 rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION};
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec2_smpt.c77 BIGNUM *tmp, *x, *y, *z;
93 tmp = BN_CTX_get(ctx);
106 if (!group->meth->field_sqr(group, tmp, x, ctx)) goto err;
107 if (!group->meth->field_div(group, tmp, &group->b, tmp, ctx)) goto err;
108 if (!BN_GF2m_add(tmp, &group->a, tmp)) goto err;
109 if (!BN_GF2m_add(tmp, x, tmp)) goto err;
110 if (!BN_GF2m_mod_solve_quad_arr(z, tmp, grou
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/util/
H A Ddomd24 sed -e '/^# DO NOT DELETE.*/,$d' < Makefile > Makefile.tmp
25 echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
26 ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp
27 ${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new
28 rm -f Makefile.tmp
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/rtc/
H A Drtc-ds1307.c95 int tmp; local
101 tmp = i2c_transfer(ds1307->client.adapter, ds1307->msg, 2);
102 if (tmp != 2) {
103 dev_err(dev, "%s error %d\n", "read", tmp);
116 tmp = ds1307->regs[DS1307_REG_HOUR] & 0x3f;
117 t->tm_hour = BCD2BIN(tmp);
120 tmp = ds1307->regs[DS1307_REG_MONTH] & 0x1f;
121 t->tm_mon = BCD2BIN(tmp) - 1;
139 int tmp; local
157 tmp
194 int tmp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh/
H A Dentry-macros.S22 .macro get_current_thread_info, ti, tmp
26 mov #((THREAD_SIZE - 1) >> 10) ^ 0xff, \tmp
27 shll8 \tmp
28 shll2 \tmp
30 and \tmp, \ti
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc64/
H A Ddma.h148 do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
149 tmp &= ~DMA_ENABLE; \
150 sbus_writel(tmp, (__regs) + DMA_CSR); \
153 do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
154 tmp &= ~DMA_INT_ENAB; \
155 sbus_writel(tmp, (__regs) + DMA_CSR); \
158 do { u32 tmp = sbus_readl((__regs) + DMA_CSR); \
159 tmp |= DMA_INT_ENAB; \
160 sbus_writel(tmp, (__regs) + DMA_CSR); \
163 do { u32 tmp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dr3d.c55 int tmp, tmp2; local
62 tmp = get_byte(s->pb); // major version
64 dprintf(s, "version %d.%d\n", tmp, tmp2);
66 tmp = get_be16(s->pb); // unknown
67 dprintf(s, "unknown1 %d\n", tmp);
69 tmp = get_be32(s->pb);
70 av_set_pts_info(st, 32, 1, tmp);
72 tmp = get_be32(s->pb); // filenum
73 dprintf(s, "filenum %d\n", tmp);
80 tmp
140 int tmp; local
210 int tmp, tmp2; local
263 int tmp, tmp2, samples, size; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ipath/
H A Dipath_fs.c176 u32 tmp, tmp2; local
206 tmp = dd->ipath_lastibcstat & IPATH_IBSTATE_MASK;
208 if (tmp == IPATH_IBSTATE_INIT)
209 tmp = 2;
210 else if (tmp == IPATH_IBSTATE_ARM)
211 tmp = 3;
212 else if (tmp == IPATH_IBSTATE_ACTIVE)
213 tmp = 4;
215 tmp = 0; /* down */
216 tmp2 = tmp
303 char *tmp; local
354 char *tmp; local
404 struct dentry *dir, *tmp; local
455 struct dentry *tmp; local
521 struct ipath_devdata *dd, *tmp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/ice1712/
H A Ddelta.c49 static void ap_cs8427_write_byte(struct snd_ice1712 *ice, unsigned char data, unsigned char tmp) argument
54 tmp &= ~(ICE1712_DELTA_AP_DOUT|ICE1712_DELTA_AP_CCLK);
56 tmp |= ICE1712_DELTA_AP_DOUT;
57 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
59 tmp |= ICE1712_DELTA_AP_CCLK;
60 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
66 static unsigned char ap_cs8427_read_byte(struct snd_ice1712 *ice, unsigned char tmp) argument
72 tmp &= ~ICE1712_DELTA_AP_CCLK;
73 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
77 tmp |
87 unsigned char tmp; local
110 ap_cs8427_codec_deassert(struct snd_ice1712 *ice, unsigned char tmp) argument
133 unsigned char tmp; local
150 unsigned char tmp; local
180 unsigned char tmp, mask1, mask2; local
296 unsigned char tmp, tmp2; local
316 unsigned char tmp, tmp2; local
375 unsigned int tmp; local
[all...]

Completed in 311 milliseconds

1234567891011>>