Searched refs:temp (Results 1 - 25 of 738) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/arch-shark/
H A Dsystem.h13 short temp; local
17 temp=inw(0x26);
18 temp = temp | (1<<3) | (1<<10);
20 outw(temp,0x26);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/
H A Dirqflags.h33 unsigned long temp; \
34 (void) (&temp == &x); \
39 : "=r" (x), "=r" (temp) \
49 unsigned long temp; \
54 : "=r" (temp) \
64 unsigned long temp; \
69 : "=r" (temp) \
79 unsigned long temp; \
84 : "=r" (temp) \
94 unsigned long temp; \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh/
H A Datomic-irq.h29 unsigned long temp, flags; local
32 temp = *(long *)v;
33 temp += i;
34 *(long *)v = temp;
37 return temp;
42 unsigned long temp, flags; local
45 temp = *(long *)v;
46 temp -= i;
47 *(long *)v = temp;
50 return temp;
[all...]
H A Datomic-llsc.h47 unsigned long temp; local
55 : "=&z" (temp)
59 return temp;
64 unsigned long temp; local
72 : "=&z" (temp)
76 return temp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/tools/misc/lzma_src/C/
H A DLzHash.h18 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
19 hash2Value = temp & (kHash2Size - 1); \
20 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
23 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
24 hash2Value = temp & (kHash2Size - 1); \
25 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
26 hashValue = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
29 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
30 hash2Value = temp & (kHash2Size - 1); \
31 hash3Value = (temp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/boot/compressed/
H A Dofw-shark.c191 char temp[15]; local
193 temp[0]='/';
194 temp[1]='m';
195 temp[2]='e';
196 temp[3]='m';
197 temp[4]='o';
198 temp[5]='r';
199 temp[6]='y';
200 temp[7]='\0';
202 phandle=OF_finddevice(o,temp);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/ixp2000/
H A Dcaleb.c104 u8 temp; local
106 temp = caleb_reg_read(CALEB_PORTEN);
107 temp |= 1 << port;
108 caleb_reg_write(CALEB_PORTEN, temp);
113 u8 temp; local
115 temp = caleb_reg_read(CALEB_PORTEN);
116 temp &= ~(1 << port);
117 caleb_reg_write(CALEB_PORTEN, temp);
122 u8 temp; local
124 temp
131 u8 temp; local
[all...]
H A Dpm3386.c153 u16 temp[3]; local
155 temp[0] = pm3386_port_reg_read(port, 0x308, 0x100);
156 temp[1] = pm3386_port_reg_read(port, 0x309, 0x100);
157 temp[2] = pm3386_port_reg_read(port, 0x30a, 0x100);
158 pm3386_port_reg_write(port, 0x308, 0x100, swaph(temp[2]));
159 pm3386_port_reg_write(port, 0x309, 0x100, swaph(temp[1]));
160 pm3386_port_reg_write(port, 0x30a, 0x100, swaph(temp[0]));
246 u16 temp; local
248 temp = pm3386_port_reg_read(port, 0x308, 0x100);
249 mac[0] = temp
303 u16 temp; local
313 u16 temp; local
322 u16 temp; local
331 u16 temp; local
340 u16 temp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/host/
H A Dohci-dbg.c14 #define edstring(ed_type) ({ char *temp; \
16 case PIPE_CONTROL: temp = "ctrl"; break; \
17 case PIPE_BULK: temp = "bulk"; break; \
18 case PIPE_INTERRUPT: temp = "intr"; break; \
19 default: temp = "isoc"; break; \
20 }; temp;})
135 u32 temp; local
137 temp = ohci_readl (controller, &regs->revision) & 0xff;
140 0x03 & (temp >> 4), (temp
227 u32 temp, i; local
407 unsigned temp, size = count; local
476 size_t temp; local
504 unsigned temp, size, seen_count; local
605 unsigned temp, size; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/md2/
H A Dmd2_one.c77 char temp[1024]; local
82 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
83 ebcdic2ascii(temp, d, chunk);
84 MD2_Update(&c,temp,chunk);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/md2/
H A Dmd2_one.c78 char temp[1024];
83 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
84 ebcdic2ascii(temp, d, chunk);
85 MD2_Update(&c,temp,chunk);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/adouble/
H A Dad_flush.c57 u_int32_t temp; local
67 temp = htonl( ad->ad_magic );
68 memcpy(buf, &temp, sizeof( temp ));
69 buf += sizeof( temp );
71 temp = htonl( ad->ad_version );
72 memcpy(buf, &temp, sizeof( temp ));
73 buf += sizeof( temp );
84 temp
140 u_int32_t temp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/adouble/
H A Dad_flush.c57 u_int32_t temp; local
67 temp = htonl( ad->ad_magic );
68 memcpy(buf, &temp, sizeof( temp ));
69 buf += sizeof( temp );
71 temp = htonl( ad->ad_version );
72 memcpy(buf, &temp, sizeof( temp ));
73 buf += sizeof( temp );
84 temp
140 u_int32_t temp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/au88x0/
H A Dau88x0_mpu401.c48 int temp, mode; local
56 temp =
59 hwwrite(vortex->mmio, VORTEX_CTRL, temp);
62 temp =
65 hwwrite(vortex->mmio, VORTEX_CTRL, temp);
69 temp = hwread(vortex->mmio, VORTEX_CTRL2) & 0xffff00cf;
70 temp |= (MIDI_CLOCK_DIV << 8) | ((mode >> 24) & 0xff) << 4;
71 hwwrite(vortex->mmio, VORTEX_CTRL2, temp);
75 temp = hwread(vortex->mmio, VORTEX_MIDI_DATA);
76 if (temp !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/
H A Dbrowser.js21 var len; var ad; var temp;
25 temp=Myall.indexOf(".");
26 ad=Myall.substring(0,temp);
29 Myall=Myall.substring(temp+1,len);
31 temp=Myall.indexOf(".");
32 ad=Myall.substring(0,temp);
35 Myall=Myall.substring(temp+1,len);
37 temp=Myall.indexOf(".");
38 ad=Myall.substring(0,temp);
41 Myall=Myall.substring(temp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/libsmbclient/
H A Dtestacl.c29 char temp[128]; local
32 fgets(temp, sizeof(temp), stdin);
34 if (temp[strlen(temp) - 1] == '\n') /* A new line? */
36 temp[strlen(temp) - 1] = '\0';
39 if (temp[0] != '\0')
41 strncpy(pWorkgroup, temp, maxLenWorkgroup - 1);
45 fgets(temp, sizeo
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpcclient/
H A Dcmd_dfs.c95 fstring temp; local
97 unistr2_to_ascii(temp, &info1->entrypath, sizeof(temp) - 1);
98 printf("entrypath: %s\n", temp);
105 fstring temp; local
107 unistr2_to_ascii(temp, &info2->entrypath, sizeof(temp) - 1);
108 printf("entrypath: %s\n", temp);
110 unistr2_to_ascii(temp, &info2->comment, sizeof(temp)
121 fstring temp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/testsuite/
H A Dunzip.tests16 mkdir temp
17 cd temp
36 rm -rf temp
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dmkmanifest.c65 char *ext,*temp; local
71 temp = buf;
85 if (*temp == '\0')
90 if (!strcasecmp(temp, dev[i]))
91 *temp = 'x';
94 if (strlen(temp) > 8)
95 *(temp+8) = '\0';
100 while ((s = strpbrk(temp, "^+=/[]:',?*\\<>|\". ")))
105 strncpy(ans, temp, 12);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/lib/
H A Dbitops.c23 unsigned long temp, flags; local
26 temp = *ptr;
29 return temp;
36 long temp; local
39 temp = (long) *ptr;
42 return (unsigned long)temp;
49 long temp; local
52 temp = (long) *ptr;
55 return (unsigned long)temp;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/aic7xxx/
H A Daic7xxx_93cx6.c113 uint8_t temp; local
117 temp = sd->sd_MS ^ sd->sd_CS;
118 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
123 temp ^= sd->sd_DO;
124 SEEPROM_OUTB(sd, temp);
126 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
129 temp ^= sd->sd_DO;
139 uint8_t temp; local
141 temp = sd->sd_MS;
142 SEEPROM_OUTB(sd, temp);
161 uint8_t temp; local
232 uint8_t temp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dfaandct.c70 static av_always_inline void row_fdct(FLOAT temp[64], DCTELEM * data) argument
93 temp[0 + i]= tmp10 + tmp11;
94 temp[4 + i]= tmp10 - tmp11;
98 temp[2 + i]= tmp13 + tmp12;
99 temp[6 + i]= tmp13 - tmp12;
118 temp[5 + i]= z13 + z2;
119 temp[3 + i]= z13 - z2;
120 temp[1 + i]= z11 + z4;
121 temp[7 + i]= z11 - z4;
131 FLOAT temp[6 local
189 FLOAT temp[64]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-ixp2000/
H A Dpci.c114 u32 temp; local
120 temp = (u32) (value) << ((where % 0x4) * 8);
121 *addr = (*addr & mask) | temp;
143 volatile u32 temp; local
149 temp = *(IXP2000_PCI_CONTROL);
150 if (temp & ((1 << 8) | (1 << 5))) {
151 ixp2000_reg_wrb(IXP2000_PCI_CONTROL, temp);
154 temp = *(IXP2000_PCI_CMDSTAT);
155 if (temp & (1 << 29)) {
156 while (temp
176 volatile u32 temp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hwmon/
H A Dlm75.h36 static inline u16 LM75_TEMP_TO_REG(int temp) argument
38 int ntemp = SENSORS_LIMIT(temp, LM75_TEMP_MIN, LM75_TEMP_MAX);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/plat-iop/
H A Dcp6.c24 u32 temp; local
31 : "=r"(temp));

Completed in 249 milliseconds

1234567891011>>