Searched refs:this (Results 1 - 25 of 2050) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/line6/
H A Dmidibuf.c29 the "Song Position Pointer", but this is used by Line6
38 void midibuf_reset(struct MidiBuffer *this) argument
40 this->pos_read = this->pos_write = this->full = 0;
41 this->command_prev = -1;
44 int midibuf_init(struct MidiBuffer *this, int size, int split) argument
46 this->buf = kmalloc(size, GFP_KERNEL);
48 if (this->buf == NULL)
51 this
57 midibuf_status(struct MidiBuffer *this) argument
64 midibuf_is_empty(struct MidiBuffer *this) argument
69 midibuf_is_full(struct MidiBuffer *this) argument
74 midibuf_bytes_free(struct MidiBuffer *this) argument
82 midibuf_bytes_used(struct MidiBuffer *this) argument
90 midibuf_write(struct MidiBuffer *this, unsigned char *data, int length) argument
132 midibuf_read(struct MidiBuffer *this, unsigned char *data, int length) argument
235 midibuf_ignore(struct MidiBuffer *this, int length) argument
247 midibuf_skip_message(struct MidiBuffer *this, unsigned short mask) argument
258 midibuf_destroy(struct MidiBuffer *this) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Ddshow_filter.c30 libAVFilter_GetClassID(libAVFilter *this, CLSID *id)
32 dshowdebug("libAVFilter_GetClassID(%p)\n", this);
33 /* I'm not creating a ClassID just for this. */
37 libAVFilter_Stop(libAVFilter *this) argument
39 dshowdebug("libAVFilter_Stop(%p)\n", this);
40 this->state = State_Stopped;
44 libAVFilter_Pause(libAVFilter *this) argument
46 dshowdebug("libAVFilter_Pause(%p)\n", this);
47 this->state = State_Paused;
51 libAVFilter_Run(libAVFilter *this, REFERENCE_TIM argument
59 libAVFilter_GetState(libAVFilter *this, DWORD ms, FILTER_STATE *state) argument
68 libAVFilter_SetSyncSource(libAVFilter *this, IReferenceClock *clock) argument
83 libAVFilter_GetSyncSource(libAVFilter *this, IReferenceClock **clock) argument
96 libAVFilter_EnumPins(libAVFilter *this, IEnumPins **enumpin) argument
111 libAVFilter_FindPin(libAVFilter *this, const wchar_t *id, IPin **pin) argument
129 libAVFilter_QueryFilterInfo(libAVFilter *this, FILTER_INFO *info) argument
142 libAVFilter_JoinFilterGraph(libAVFilter *this, IFilterGraph *graph, const wchar_t *name) argument
154 libAVFilter_QueryVendorInfo(libAVFilter *this, wchar_t **info) argument
166 libAVFilter_Setup(libAVFilter *this, void *priv_data, void *callback, enum dshowDeviceType type) argument
195 libAVFilter_Cleanup(libAVFilter *this) argument
[all...]
H A Ddshow_enumpins.c30 libAVEnumPins_Next(libAVEnumPins *this, unsigned long n, IPin **pins,
34 dshowdebug("libAVEnumPins_Next(%p)\n", this);
37 if (!this->pos && n == 1) {
38 libAVPin_AddRef(this->pin);
39 *pins = (IPin *) this->pin;
41 this->pos = 1;
50 libAVEnumPins_Skip(libAVEnumPins *this, unsigned long n) argument
52 dshowdebug("libAVEnumPins_Skip(%p)\n", this);
58 libAVEnumPins_Reset(libAVEnumPins *this) argument
60 dshowdebug("libAVEnumPins_Reset(%p)\n", this);
65 libAVEnumPins_Clone(libAVEnumPins *this, libAVEnumPins **pins) argument
80 libAVEnumPins_Setup(libAVEnumPins *this, libAVPin *pin, libAVFilter *filter) argument
98 libAVEnumPins_Cleanup(libAVEnumPins *this) argument
[all...]
H A Ddshow_enummediatypes.c30 libAVEnumMediaTypes_Next(libAVEnumMediaTypes *this, unsigned long n,
34 dshowdebug("libAVEnumMediaTypes_Next(%p)\n", this);
37 if (!this->pos && n == 1) {
38 if (!IsEqualGUID(&this->type.majortype, &GUID_NULL)) {
40 ff_copy_dshow_media_type(type, &this->type);
44 this->pos = 1;
53 libAVEnumMediaTypes_Skip(libAVEnumMediaTypes *this, unsigned long n) argument
55 dshowdebug("libAVEnumMediaTypes_Skip(%p)\n", this);
61 libAVEnumMediaTypes_Reset(libAVEnumMediaTypes *this) argument
63 dshowdebug("libAVEnumMediaTypes_Reset(%p)\n", this);
68 libAVEnumMediaTypes_Clone(libAVEnumMediaTypes *this, libAVEnumMediaTypes **enums) argument
83 libAVEnumMediaTypes_Setup(libAVEnumMediaTypes *this, const AM_MEDIA_TYPE *type) argument
[all...]
H A Ddshow_pin.c33 libAVPin_Connect(libAVPin *this, IPin *pin, const AM_MEDIA_TYPE *type)
35 dshowdebug("libAVPin_Connect(%p, %p, %p)\n", this, pin, type);
40 libAVPin_ReceiveConnection(libAVPin *this, IPin *pin, argument
43 enum dshowDeviceType devtype = this->filter->type;
44 dshowdebug("libAVPin_ReceiveConnection(%p)\n", this);
48 if (this->connectedto)
61 this->connectedto = pin;
63 ff_copy_dshow_media_type(&this->type, type);
68 libAVPin_Disconnect(libAVPin *this) argument
70 dshowdebug("libAVPin_Disconnect(%p)\n", this);
82 libAVPin_ConnectedTo(libAVPin *this, IPin **pin) argument
96 libAVPin_ConnectionMediaType(libAVPin *this, AM_MEDIA_TYPE *type) argument
108 libAVPin_QueryPinInfo(libAVPin *this, PIN_INFO *info) argument
125 libAVPin_QueryDirection(libAVPin *this, PIN_DIRECTION *dir) argument
134 libAVPin_QueryId(libAVPin *this, wchar_t **id) argument
146 libAVPin_QueryAccept(libAVPin *this, const AM_MEDIA_TYPE *type) argument
152 libAVPin_EnumMediaTypes(libAVPin *this, IEnumMediaTypes **enumtypes) argument
168 libAVPin_QueryInternalConnections(libAVPin *this, IPin **pin, unsigned long *npin) argument
175 libAVPin_EndOfStream(libAVPin *this) argument
182 libAVPin_BeginFlush(libAVPin *this) argument
189 libAVPin_EndFlush(libAVPin *this) argument
196 libAVPin_NewSegment(libAVPin *this, REFERENCE_TIME start, REFERENCE_TIME stop, double rate) argument
205 libAVPin_Setup(libAVPin *this, libAVFilter *filter) argument
267 libAVMemInputPin_AddRef(libAVMemInputPin *this) argument
274 libAVMemInputPin_Release(libAVMemInputPin *this) argument
281 libAVMemInputPin_GetAllocator(libAVMemInputPin *this, IMemAllocator **alloc) argument
287 libAVMemInputPin_NotifyAllocator(libAVMemInputPin *this, IMemAllocator *alloc, BOOL rdwr) argument
294 libAVMemInputPin_GetAllocatorRequirements(libAVMemInputPin *this, ALLOCATOR_PROPERTIES *props) argument
301 libAVMemInputPin_Receive(libAVMemInputPin *this, IMediaSample *sample) argument
336 libAVMemInputPin_ReceiveMultiple(libAVMemInputPin *this, IMediaSample **samples, long n, long *nproc) argument
349 libAVMemInputPin_ReceiveCanBlock(libAVMemInputPin *this) argument
357 libAVMemInputPin_Destroy(libAVMemInputPin *this) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dlubyrack.h35 this->AssertValidKeyLength(length);
56 #define KL this->key
57 #define KR this->key+this->L
58 #define BL this->buffer
59 #define BR this->buffer+this->S
61 #define IR inBlock+this->S
63 #define OR outBlock+this->S
67 this
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/
H A Dwl3501_cs.c82 * The event() function is this driver's Card Services event handler. It will
198 static inline void wl3501_switch_page(struct wl3501_card *this, u8 page) argument
200 wl3501_outb(page, this->base_addr + WL3501_NIC_BSS);
209 static int wl3501_get_flash_mac_addr(struct wl3501_card *this) argument
211 int base_addr = this->base_addr;
220 this->mac_addr[0] = inb(base_addr + WL3501_NIC_IODPA);
222 this->mac_addr[1] = inb(base_addr + WL3501_NIC_IODPA);
224 this->mac_addr[2] = inb(base_addr + WL3501_NIC_IODPA);
226 this->mac_addr[3] = inb(base_addr + WL3501_NIC_IODPA);
228 this
256 wl3501_set_to_wla(struct wl3501_card *this, u16 dest, void *src, int size) argument
278 wl3501_get_from_wla(struct wl3501_card *this, u16 src, void *dest, int size) argument
304 wl3501_get_tx_buffer(struct wl3501_card *this, u16 len) argument
340 wl3501_free_tx_buffer(struct wl3501_card *this, u16 ptr) argument
358 wl3501_esbq_req_test(struct wl3501_card *this) argument
366 wl3501_esbq_req(struct wl3501_card *this, u16 *ptr) argument
377 wl3501_esbq_exec(struct wl3501_card *this, void *sig, int sig_size) argument
392 wl3501_get_mib_value(struct wl3501_card *this, u8 index, void *bf, int size) argument
423 wl3501_pwr_mgmt(struct wl3501_card *this, int suspend) argument
465 wl3501_send_pkt(struct wl3501_card *this, u8 *data, u16 len) argument
550 wl3501_mgmt_resync(struct wl3501_card *this) argument
559 wl3501_fw_bss_type(struct wl3501_card *this) argument
565 wl3501_fw_cap_info(struct wl3501_card *this) argument
571 wl3501_mgmt_scan(struct wl3501_card *this, u16 chan_time) argument
586 wl3501_mgmt_join(struct wl3501_card *this, u16 stas) argument
604 wl3501_mgmt_start(struct wl3501_card *this) argument
657 wl3501_mgmt_scan_confirm(struct wl3501_card *this, u16 addr) argument
728 wl3501_block_interrupt(struct wl3501_card *this) argument
745 wl3501_unblock_interrupt(struct wl3501_card *this) argument
764 wl3501_receive(struct wl3501_card *this, u8 *bf, u16 size) argument
804 wl3501_esbq_req_free(struct wl3501_card *this) argument
823 wl3501_esbq_confirm(struct wl3501_card *this) argument
833 struct wl3501_card *this = netdev_priv(dev); local
840 wl3501_esbq_confirm_done(struct wl3501_card *this) argument
850 wl3501_mgmt_auth(struct wl3501_card *this) argument
863 wl3501_mgmt_association(struct wl3501_card *this) argument
879 struct wl3501_card *this = netdev_priv(dev); local
925 wl3501_alarm_interrupt(struct net_device *dev, struct wl3501_card *this) argument
935 wl3501_md_confirm_interrupt(struct net_device *dev, struct wl3501_card *this, u16 addr) argument
948 wl3501_md_ind_interrupt(struct net_device *dev, struct wl3501_card *this, u16 addr) argument
993 wl3501_get_confirm_interrupt(struct wl3501_card *this, u16 addr, void *sig, int size) argument
1002 wl3501_start_confirm_interrupt(struct net_device *dev, struct wl3501_card *this, u16 addr) argument
1017 struct wl3501_card *this = netdev_priv(dev); local
1027 wl3501_auth_confirm_interrupt(struct wl3501_card *this, u16 addr) argument
1046 struct wl3501_card *this = netdev_priv(dev); local
1106 wl3501_ack_interrupt(struct wl3501_card *this) argument
1126 struct wl3501_card *this; local
1139 wl3501_reset_board(struct wl3501_card *this) argument
1177 wl3501_init_firmware(struct wl3501_card *this) argument
1228 struct wl3501_card *this = netdev_priv(dev); local
1260 struct wl3501_card *this = netdev_priv(dev); local
1289 struct wl3501_card *this = netdev_priv(dev); local
1316 struct wl3501_card *this = netdev_priv(dev); local
1342 struct wl3501_card *this = netdev_priv(dev); local
1381 struct wl3501_card *this = netdev_priv(dev); local
1461 struct wl3501_card *this = netdev_priv(dev); local
1475 struct wl3501_card *this = netdev_priv(dev); local
1490 struct wl3501_card *this = netdev_priv(dev); local
1501 struct wl3501_card *this = netdev_priv(dev); local
1510 struct wl3501_card *this = netdev_priv(dev); local
1540 struct wl3501_card *this = netdev_priv(dev); local
1557 struct wl3501_card *this = netdev_priv(dev); local
1573 struct wl3501_card *this = netdev_priv(dev); local
1623 struct wl3501_card *this = netdev_priv(dev); local
1640 struct wl3501_card *this = netdev_priv(dev); local
1654 struct wl3501_card *this = netdev_priv(dev); local
1665 struct wl3501_card *this = netdev_priv(dev); local
1685 struct wl3501_card *this = netdev_priv(dev); local
1701 struct wl3501_card *this = netdev_priv(dev); local
1717 struct wl3501_card *this = netdev_priv(dev); local
1739 struct wl3501_card *this = netdev_priv(dev); local
1766 struct wl3501_card *this = netdev_priv(dev); local
1803 struct wl3501_card *this = netdev_priv(dev); local
1872 struct wl3501_card *this; local
1917 struct wl3501_card *this; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dread-catalog.c16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
42 call_set_domain (struct default_catalog_reader_ty *this, char *name) argument
45 (default_catalog_reader_class_ty *) this->methods;
48 methods->set_domain (this, name);
52 call_add_message (struct default_catalog_reader_ty *this, argument
60 (default_catalog_reader_class_ty *) this->methods;
63 methods->add_message (this, msgctxt,
71 call_frob_new_message (struct default_catalog_reader_ty *this, message_ty *mp, argument
76 (default_catalog_reader_class_ty *) this->methods;
79 methods->frob_new_message (this, m
94 default_catalog_reader_ty *this = (default_catalog_reader_ty *) that; local
112 default_catalog_reader_ty *this = (default_catalog_reader_ty *) that; local
152 default_copy_comment_state(default_catalog_reader_ty *this, message_ty *mp) argument
183 default_reset_comment_state(default_catalog_reader_ty *this) argument
220 default_catalog_reader_ty *this = (default_catalog_reader_ty *) that; local
244 default_catalog_reader_ty *this = (default_catalog_reader_ty *) that; local
259 default_catalog_reader_ty *this = (default_catalog_reader_ty *) that; local
273 default_catalog_reader_ty *this = (default_catalog_reader_ty *) that; local
288 default_catalog_reader_ty *this = (default_catalog_reader_ty *) that; local
308 default_catalog_reader_ty *this = (default_catalog_reader_ty *) that; local
319 default_set_domain(default_catalog_reader_ty *this, char *name) argument
335 default_add_message(default_catalog_reader_ty *this, char *msgctxt, char *msgid, lex_pos_ty *msgid_pos, char *msgid_plural, char *msgstr, size_t msgstr_len, lex_pos_ty *msgstr_pos, char *prev_msgctxt, char *prev_msgid, char *prev_msgid_plural, bool force_fuzzy, bool obsolete) argument
[all...]
H A Dread-po.c15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
27 /* For compiling this file in C++ mode. */
29 # define this thiss macro
36 po_parse (abstract_catalog_reader_ty *this, FILE *fp, argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/net/
H A Dfsm.c20 fsm_instance *this; local
24 this = kzalloc(sizeof(fsm_instance), order);
25 if (this == NULL) {
30 strlcpy(this->name, name, sizeof(this->name));
31 init_waitqueue_head(&this->wait_q);
37 kfree_fsm(this);
44 this->f = f;
50 kfree_fsm(this);
62 kfree_fsm(this);
72 kfree_fsm(fsm_instance *this) argument
132 fsm_expire_timer(fsm_timer *this) argument
142 fsm_settimer(fsm_instance *fi, fsm_timer *this) argument
155 fsm_deltimer(fsm_timer *this) argument
165 fsm_addtimer(fsm_timer *this, int millisec, int event, void *arg) argument
184 fsm_modtimer(fsm_timer *this, int millisec, int event, void *arg) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Dorigin.c15 * along with this program; if not, write to the Free Software
45 /* look up for the origin of this Netlink event */
48 struct origin *this; local
50 list_for_each_entry(this, &origin_list, head) {
51 if (this->nl_portid == nlh->nlmsg_pid) {
52 return this->type;
60 struct origin *this, *tmp; local
62 list_for_each_entry_safe(this, tmp, &origin_list, head) {
63 if (this->nl_portid == nfnl_portid(nfct_nfnlh(h))) {
64 list_del(&this
[all...]
H A Dprocess.c15 * along with this program; if not, write to the Free Software
27 struct child_process *c, *this; local
33 /* We only want one process of this type at the same time. This is
37 list_for_each_entry(this, &process_list, head) {
38 if (this->type == type) {
65 struct child_process *this, *tmp; local
67 list_for_each_entry_safe(this, tmp, &process_list, head) {
68 if (this->pid == pid) {
69 list_del(&this->head);
70 if (this
88 struct child_process *this; local
[all...]
H A Dalarm.c15 * along with this program; if not, write to the Free Software
43 struct alarm_block *this; local
45 this = container_of(*new, struct alarm_block, node);
48 if (timercmp(&alarm->tv, &this->tv, <))
115 struct alarm_block *this; local
116 this = container_of(node, struct alarm_block, node);
117 return calculate_next_run(&this->tv, &tv, next_run);
127 struct alarm_block *this, *tmp; local
134 this = container_of(node, struct alarm_block, node);
136 if (timercmp(&this
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/jffs2/
H A Dcompr.c11 * For licensing information, see the file 'LICENCE' in this directory.
19 /* Available compressors are on this list */
30 * Return 1 to use this compression
32 static int jffs2_is_best_compression(struct jffs2_compressor *this, argument
41 if ((this->compr == JFFS2_COMPR_LZO) && (bestsize > size))
45 if ((this->compr == JFFS2_COMPR_LZO) && (bestsize > (size * FAVOUR_LZO_PERCENT / 100)))
80 struct jffs2_compressor *this, *best=NULL; local
97 list_for_each_entry(this, &jffs2_compressor_list, list) {
99 if ((!this->compress)||(this
200 struct jffs2_compressor *this; local
245 struct jffs2_compressor *this; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/mtd/
H A Donenand.h97 #define ONENAND_CURRENT_BUFFERRAM(this) (this->bufferram_index)
98 #define ONENAND_NEXT_BUFFERRAM(this) (this->bufferram_index ^ 1)
99 #define ONENAND_SET_NEXT_BUFFERRAM(this) (this->bufferram_index ^= 1)
100 #define ONENAND_SET_PREV_BUFFERRAM(this) (this->bufferram_index ^= 1)
101 #define ONENAND_SET_BUFFERRAM0(this) (this
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/devices/
H A Ddoc2000.c46 * this:
419 static void DoC_ScanChips(struct DiskOnChip *this, int maxchips) argument
425 this->numchips = 0;
426 this->mfr = 0;
427 this->id = 0;
435 ret = DoC_IdentChip(this, floor, chip);
438 this->numchips++;
444 if (!this->numchips) {
450 this->chips = kmalloc(sizeof(struct Nand) * this
511 struct DiskOnChip *this = mtd->priv; local
607 struct DiskOnChip *this = mtd->priv; local
751 struct DiskOnChip *this = mtd->priv; local
925 struct DiskOnChip *this = mtd->priv; local
989 struct DiskOnChip *this = mtd->priv; local
1092 struct DiskOnChip *this = mtd->priv; local
1107 struct DiskOnChip *this = mtd->priv; local
1179 struct DiskOnChip *this; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/hardware/eicon/
H A Ddi.c22 along with this program; if not, write to the Free Software
81 ENTITY * this = NULL; local
108 this = entity_ptr(a, e_no);
110 if ( !this )
119 DBG_TRC((">A%d Id=0x%x Req=0x%x", ((ISDN_ADAPTER *)a->io)->ANum, this->Id, this->Req))
122 dbug(dprintf("out:Req=%x,Id=%x,Ch=%x",this->Req,this->Id,this->ReqCh));
127 if (!(a->tx_stream[this
364 ENTITY * this; local
566 ENTITY * this; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/onenand/
H A Donenand_base.c162 * @param this onenand chip data structure
168 static int onenand_block_address(struct onenand_chip *this, int block) argument
171 if (block & this->density_mask)
172 return ONENAND_DDP_CHIP1 | (block ^ this->density_mask);
179 * @param this onenand chip data structure
185 static int onenand_bufferram_address(struct onenand_chip *this, int block) argument
188 if (block & this->density_mask)
242 * @param this - OneNAND device structure
245 static unsigned flexonenand_block(struct onenand_chip *this, loff_t addr) argument
249 if (ONENAND_IS_DDP(this)
264 onenand_block(struct onenand_chip *this, loff_t addr) argument
278 flexonenand_addr(struct onenand_chip *this, int block) argument
296 onenand_addr(struct onenand_chip *this, int block) argument
344 struct onenand_chip *this = mtd->priv; local
469 onenand_read_ecc(struct onenand_chip *this) argument
500 struct onenand_chip * this = mtd->priv; local
580 struct onenand_chip *this = data; local
598 struct onenand_chip *this = mtd->priv; local
614 struct onenand_chip *this = mtd->priv; local
645 struct onenand_chip *this = mtd->priv; local
680 struct onenand_chip *this = mtd->priv; local
706 struct onenand_chip *this = mtd->priv; local
742 struct onenand_chip *this = mtd->priv; local
782 struct onenand_chip *this = mtd->priv; local
820 struct onenand_chip *this = mtd->priv; local
844 struct onenand_chip *this = mtd->priv; local
887 struct onenand_chip *this = mtd->priv; local
920 struct onenand_chip *this = mtd->priv; local
941 struct onenand_chip *this = mtd->priv; local
976 struct onenand_chip *this = mtd->priv; local
995 struct onenand_chip *this = mtd->priv; local
1042 struct onenand_chip *this = mtd->priv; local
1082 struct onenand_chip *this = mtd->priv; local
1184 struct onenand_chip *this = mtd->priv; local
1316 struct onenand_chip *this = mtd->priv; local
1422 struct onenand_chip *this = mtd->priv; local
1452 struct onenand_chip *this = mtd->priv; local
1486 struct onenand_chip *this = mtd->priv; local
1537 struct onenand_chip *this = mtd->priv; local
1611 struct onenand_chip *this = mtd->priv; local
1640 struct onenand_chip *this = mtd->priv; local
1681 struct onenand_chip *this = mtd->priv; local
1706 struct onenand_chip *this = mtd->priv; local
1798 struct onenand_chip *this = mtd->priv; local
1839 struct onenand_chip *this = mtd->priv; local
2023 struct onenand_chip *this = mtd->priv; local
2202 struct onenand_chip *this = mtd->priv; local
2213 struct onenand_chip *this = mtd->priv; local
2247 struct onenand_chip *this = mtd->priv; local
2365 struct onenand_chip *this = mtd->priv; local
2435 struct onenand_chip *this = mtd->priv; local
2551 struct onenand_chip *this = mtd->priv; local
2581 struct onenand_chip *this = mtd->priv; local
2609 struct onenand_chip *this = mtd->priv; local
2720 onenand_check_lock_status(struct onenand_chip *this) argument
2756 struct onenand_chip *this = mtd->priv; local
2804 struct onenand_chip *this = mtd->priv; local
2882 struct onenand_chip *this = mtd->priv; local
3013 struct onenand_chip *this = mtd->priv; local
3050 struct onenand_chip *this = mtd->priv; local
3094 struct onenand_chip *this = mtd->priv; local
3145 struct onenand_chip *this = mtd->priv; local
3307 struct onenand_chip *this = mtd->priv; local
3361 struct onenand_chip *this = mtd->priv; local
3476 struct onenand_chip *this = mtd->priv; local
3517 struct onenand_chip *this = mtd->priv; local
3598 struct onenand_chip *this = mtd->priv; local
3646 struct onenand_chip *this = mtd->priv; local
3738 struct onenand_chip *this = mtd->priv; local
3783 struct onenand_chip *this = mtd->priv; local
3886 struct onenand_chip *this = mtd->priv; local
3908 struct onenand_chip *this = mtd->priv; local
4072 struct onenand_chip *this = mtd->priv; local
[all...]
H A Donenand_sim.c71 #define ONENAND_CORE_SPARE(flash, this, offset) \
72 ((flash->data) + (this->chipsize) + (offset >> 5))
74 #define ONENAND_MAIN_AREA(this, offset) \
75 (this->base + ONENAND_DATARAM + offset)
77 #define ONENAND_SPARE_AREA(this, offset) \
78 (this->base + ONENAND_SPARERAM + offset)
80 #define ONENAND_GET_WP_STATUS(this) \
81 (readw(this->base + ONENAND_REG_WP_STATUS))
83 #define ONENAND_SET_WP_STATUS(v, this) \
84 (writew(v, this
130 onenand_lock_handle(struct onenand_chip *this, int cmd) argument
173 onenand_bootram_handle(struct onenand_chip *this, int cmd) argument
195 onenand_update_interrupt(struct onenand_chip *this, int cmd) argument
260 onenand_data_handle(struct onenand_chip *this, int cmd, int dataram, unsigned int offset) argument
370 onenand_command_handle(struct onenand_chip *this, int cmd) argument
427 struct onenand_chip *this = info->mtd.priv; local
549 struct onenand_chip *this = info->mtd.priv; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/nand/
H A Dcmx270_nand.c57 struct nand_chip *this = mtd->priv; local
59 return (readl(this->IO_ADDR_R) >> 16);
65 struct nand_chip *this = mtd->priv; local
68 writel((*buf++ << 16), this->IO_ADDR_W);
74 struct nand_chip *this = mtd->priv; local
77 *buf++ = readl(this->IO_ADDR_R) >> 16;
83 struct nand_chip *this = mtd->priv; local
86 if (buf[i] != (u_char)(readl(this->IO_ADDR_R) >> 16))
110 struct nand_chip* this = mtd->priv; local
111 unsigned int nandaddr = (unsigned int)this
153 struct nand_chip *this; local
[all...]
H A Dcs553x_nand.c100 struct nand_chip *this = mtd->priv; local
103 memcpy_fromio(buf, this->IO_ADDR_R, 0x800);
107 memcpy_fromio(buf, this->IO_ADDR_R, len);
112 struct nand_chip *this = mtd->priv; local
115 memcpy_toio(this->IO_ADDR_R, buf, 0x800);
119 memcpy_toio(this->IO_ADDR_R, buf, len);
124 struct nand_chip *this = mtd->priv; local
125 return readb(this->IO_ADDR_R);
130 struct nand_chip *this = mtd->priv; local
133 while (i && readb(this
143 struct nand_chip *this = mtd->priv; local
155 struct nand_chip *this = mtd->priv; local
164 struct nand_chip *this = mtd->priv; local
173 struct nand_chip *this = mtd->priv; local
189 struct nand_chip *this; local
353 struct nand_chip *this; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dclients.h14 #error only libtransmission should #include this header.
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/include/asm/
H A Dsparsemem.h21 #error Sparsemem is not supported on this platform
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/
H A DFormat.h6 // Any parts of this program derived from the xMule, lMule or eMule project,
21 // along with this program; if not, write to the Free Software
49 * thread-safe way to get the error description, then this conversion is
55 * conversion type. Basic type conversions may take place to accomplish this
65 * The only exception from this rule is integer (@c d, @c i, @c u) conversion.
82 * because msgfmt will treat this as an error.)
130 * Specialize this member template to teach CFormat how to handle
136 template<typename _Tp> CFormat& operator%(_Tp* value) { return this->operator%<void*>(value); }
139 CFormat& operator%(const wxString& value) { return this->operator%<const wxString&>(value); }
140 CFormat& operator%(const CFormat& value) { return this
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/services/
H A Dntfy.c22 int dsp_notifier_event(struct notifier_block *this, unsigned long event, argument
25 struct ntfy_event *ne = container_of(this, struct ntfy_event,

Completed in 300 milliseconds

1234567891011>>