Searched refs:where (Results 76 - 100 of 307) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/apps/
H A Ds_cb.c256 void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret) argument
261 w=where& ~SSL_ST_MASK;
267 if (where & SSL_CB_LOOP)
271 else if (where & SSL_CB_ALERT)
273 str=(where & SSL_CB_READ)?"read":"write";
279 else if (where & SSL_CB_EXIT)
H A Ds_apps.h166 void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Ds_cb.c284 void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret) argument
289 w=where& ~SSL_ST_MASK;
295 if (where & SSL_CB_LOOP)
299 else if (where & SSL_CB_ALERT)
301 str=(where & SSL_CB_READ)?"read":"write";
307 else if (where & SSL_CB_EXIT)
H A Ds_apps.h168 void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/syslib/
H A Dm8260_pci_erratum9.c360 static int indirect_write_config(struct pci_bus *pbus, unsigned int devfn, int where, argument
374 (((where & 0xfc) | cfg_type) << 24) | (devfn << 16)
380 cfg_write(value, hose->cfg_data + (where & 3), u8, out_8);
383 cfg_write(value, hose->cfg_data + (where & 2), u16, out_le16);
386 cfg_write(value, hose->cfg_data + (where & 0), u32, out_le32);
392 static int indirect_read_config(struct pci_bus *pbus, unsigned int devfn, int where, argument
406 (((where & 0xfc) | cfg_type) << 24) | (devfn << 16)
412 cfg_read(value, hose->cfg_data + (where & 3), u8 *, in_8);
415 cfg_read(value, hose->cfg_data + (where & 2), u16 *, in_le16);
418 cfg_read(value, hose->cfg_data + (where
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/kernel/
H A Dcore_mcpcia.c169 mk_conf_addr(struct pci_bus *pbus, unsigned int devfn, int where, argument
176 DBG_CFG(("mk_conf_addr(bus=%d,devfn=0x%x,hose=%d,where=0x%x,"
178 bus, devfn, hose->index, where, pci_addr, type1));
185 addr = (bus << 16) | (devfn << 8) | (where);
195 mcpcia_read_config(struct pci_bus *bus, unsigned int devfn, int where, argument
202 if (mk_conf_addr(bus, devfn, where, hose, &addr, &type1))
209 *value = __kernel_extbl(w, where & 3);
212 *value = __kernel_extwl(w, where & 3);
222 mcpcia_write_config(struct pci_bus *bus, unsigned int devfn, int where, argument
229 if (mk_conf_addr(bus, devfn, where, hos
[all...]
H A Dcore_t2.c139 mk_conf_addr(struct pci_bus *pbus, unsigned int device_fn, int where, argument
145 DBG(("mk_conf_addr(bus=%d, dfn=0x%x, where=0x%x,"
147 bus, device_fn, where, pci_addr, type1));
161 addr = (0x0800L << device) | ((device_fn & 7) << 8) | (where);
165 addr = (bus << 16) | (device_fn << 8) | (where);
282 t2_read_config(struct pci_bus *bus, unsigned int devfn, int where, argument
290 if (mk_conf_addr(bus, devfn, where, &pci_addr, &type1))
294 shift = (where & 3) * 8;
301 t2_write_config(struct pci_bus *bus, unsigned int devfn, int where, int size, argument
308 if (mk_conf_addr(bus, devfn, where,
[all...]
H A Dsys_marvel.c51 * where (interrupt) is:
57 * where (irq) is
205 unsigned int where)
211 val |= ((unsigned long)where << 24); /* set the new target pid */
219 io7_redirect_one_lsi(struct io7 *io7, unsigned int which, unsigned int where)
228 val |= ((unsigned long)where << 14); /* set the new target pid */
236 io7_redirect_one_msi(struct io7 *io7, unsigned int which, unsigned int where)
245 val |= ((unsigned long)where << 14); /* set the new target pid */
253 init_one_io7_lsi(struct io7 *io7, unsigned int which, unsigned int where)
258 io7->csrs->PO7_LSI_CTL[which].csr = ((unsigned long)where << 1
202 io7_redirect_irq(struct io7 *io7, volatile unsigned long *csr, unsigned int where) argument
218 io7_redirect_one_lsi(struct io7 *io7, unsigned int which, unsigned int where) argument
235 io7_redirect_one_msi(struct io7 *io7, unsigned int which, unsigned int where) argument
252 init_one_io7_lsi(struct io7 *io7, unsigned int which, unsigned int where) argument
263 init_one_io7_msi(struct io7 *io7, unsigned int which, unsigned int where) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dpci.h290 int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val);
291 int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val);
500 int pci_bus_read_config_byte (struct pci_bus *bus, unsigned int devfn, int where, u8 *val);
501 int pci_bus_read_config_word (struct pci_bus *bus, unsigned int devfn, int where, u16 *val);
502 int pci_bus_read_config_dword (struct pci_bus *bus, unsigned int devfn, int where, u32 *val);
503 int pci_bus_write_config_byte (struct pci_bus *bus, unsigned int devfn, int where, u8 val);
504 int pci_bus_write_config_word (struct pci_bus *bus, unsigned int devfn, int where, u16 val);
505 int pci_bus_write_config_dword (struct pci_bus *bus, unsigned int devfn, int where, u32 val);
507 static inline int pci_read_config_byte(struct pci_dev *dev, int where, u8 *val) argument
509 return pci_bus_read_config_byte (dev->bus, dev->devfn, where, va
511 pci_read_config_word(struct pci_dev *dev, int where, u16 *val) argument
515 pci_read_config_dword(struct pci_dev *dev, int where, u32 *val) argument
519 pci_write_config_byte(struct pci_dev *dev, int where, u8 val) argument
523 pci_write_config_word(struct pci_dev *dev, int where, u16 val) argument
527 pci_write_config_dword(struct pci_dev *dev, int where, u32 val) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dfloppyd_io.c264 static int floppyd_io(Stream_t *Stream, char *buf, mt_off_t where, int len, argument
270 where += This->offset;
272 if (where != This->lastwhere ){
273 if(floppyd_lseek( This->fd, where, SEEK_SET) < 0 ){
285 This->lastwhere = where + ret;
289 static int floppyd_read(Stream_t *Stream, char *buf, mt_off_t where, size_t len) argument
291 return floppyd_io(Stream, buf, where, len, (iofn) floppyd_reader);
294 static int floppyd_write(Stream_t *Stream, char *buf, mt_off_t where, size_t len) argument
296 return floppyd_io(Stream, buf, where, len, (iofn) floppyd_writer);
H A Dllong.h110 int mt_lseek(int fd, mt_off_t where, int whence);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/sysv/
H A Ditree.c169 Indirect *where,
176 if (!verify_chain(chain, where-1) || *where->p)
178 *where->p = where->key;
184 if (where->bh)
185 dirty_indirect(where->bh, inode);
196 bforget(where[i].bh);
198 sysv_free_block(inode->i_sb, where[i].key);
167 splice_branch(struct inode *inode, Indirect chain[], Indirect *where, int num) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/minix/
H A Ditree_common.c110 Indirect *where,
118 if (!verify_chain(chain, where-1) || *where->p)
121 *where->p = where->key;
130 if (where->bh)
131 mark_buffer_dirty_inode(where->bh, inode);
139 bforget(where[i].bh);
141 minix_free_block(inode, block_to_cpu(where[i].key));
108 splice_branch(struct inode *inode, Indirect chain[DEPTH], Indirect *where, int num) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/kernel/
H A Dpci_sh5.c193 static int sh5pci_read(struct pci_bus *bus, unsigned int devfn, int where, argument
196 SH5PCI_WRITE(PAR, CONFIG_CMD(bus, devfn, where));
200 *val = (u8)SH5PCI_READ_BYTE(PDR + (where & 3));
203 *val = (u16)SH5PCI_READ_SHORT(PDR + (where & 2));
213 static int sh5pci_write(struct pci_bus *bus, unsigned int devfn, int where, argument
216 SH5PCI_WRITE(PAR, CONFIG_CMD(bus, devfn, where));
220 SH5PCI_WRITE_BYTE(PDR + (where & 3), (u8)val);
223 SH5PCI_WRITE_SHORT(PDR + (where & 2), (u16)val);
281 at the point where we cross from 5V to 3.3V is not the normal case.
483 /* The pci subsytem needs to know where memor
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dpci_impl.h142 int where, int size,
146 int where, int size,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/brcm-boards/bcm947xx/
H A Dpcibios.c57 sbpci_read_config_reg(struct pci_bus *bus, unsigned int devfn, int where, argument
65 PCI_FUNC(devfn), where, value, size);
71 sbpci_write_config_reg(struct pci_bus *bus, unsigned int devfn, int where, argument
79 PCI_FUNC(devfn), where, &value, size);
444 unsigned long where, size; local
451 where = PCI_BASE_ADDRESS_0 + (resource * 4);
453 pci_read_config_dword(dev, where, &reg);
455 pci_write_config_dword(dev, where, reg);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/tests/
H A Dxgettext-csharp-318 // Two backslashes (unlike in Java, where this is just one backslash).
20 // A 6-character string (unlike in Java, where this is just one backslash).
101 #. Two backslashes (unlike in Java, where this is just one backslash).
106 #. A 6-character string (unlike in Java, where this is just one backslash).
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/stack/
H A Dstack.h88 int sk_insert(STACK *sk,char *data,int where);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Dstack.h88 int sk_insert(STACK *sk,char *data,int where);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/stack/
H A Dstack.h88 int sk_insert(STACK *sk,char *data,int where);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dstack.h88 int sk_insert(STACK *sk,char *data,int where);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/lib/
H A Dmcount.S44 add %g6, %g3, %g3 ! where does task_struct+frame end?
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-ixp2000/
H A Denp2611.c124 int where, int size, u32 *value)
127 return ixp2000_pci_read_config(bus, devfn, where, size, value);
133 int where, int size, u32 value)
136 return ixp2000_pci_write_config(bus, devfn, where, size, value);
123 enp2611_pci_read_config(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value) argument
132 enp2611_pci_write_config(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/kernel/
H A Dreal2.S48 * arg0p points to where saved arg values may be found
113 # define PUSH_CR(r, where) mfctl r, %r1 ! STREG,ma %r1, REG_SZ(where)
114 # define POP_CR(r, where) LDREG,mb -REG_SZ(where), %r1 ! mtctl %r1, r
226 * arg0p points to where saved arg values may be found
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Dptrace.h45 void signal_fault(struct pt_regs *regs, void __user *frame, char *where);

Completed in 318 milliseconds

1234567891011>>