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

1234567891011>>

/linux-master/sound/usb/line6/
H A Dmidibuf.c33 static int midibuf_is_empty(struct midi_buffer *this) argument
35 return (this->pos_read == this->pos_write) && !this->full;
38 static int midibuf_is_full(struct midi_buffer *this) argument
40 return this->full;
43 void line6_midibuf_reset(struct midi_buffer *this) argument
45 this->pos_read = this->pos_write = this
49 line6_midibuf_init(struct midi_buffer *this, int size, int split) argument
62 line6_midibuf_bytes_free(struct midi_buffer *this) argument
71 line6_midibuf_bytes_used(struct midi_buffer *this) argument
80 line6_midibuf_write(struct midi_buffer *this, unsigned char *data, int length) argument
123 line6_midibuf_read(struct midi_buffer *this, unsigned char *data, int length, int read_type) argument
241 line6_midibuf_ignore(struct midi_buffer *this, int length) argument
253 line6_midibuf_destroy(struct midi_buffer *this) argument
[all...]
/linux-master/drivers/accessibility/speakup/
H A Dutils.h73 struct st_key *this = hash_name(name);
75 while (this) {
76 if (this->name && !strcmp(name, this->name))
77 return this;
78 this = this->next;
80 return this;
85 struct st_key *this = hash_name(name);
89 if (this
[all...]
H A Dmakemapdata.c53 struct st_key *this; local
100 this = find_key(def_val);
103 if (!this || *cp < '0' || *cp > '9')
105 value = this->value+atoi(cp);
117 this = &key_table[i];
118 if (!this->name)
121 printf("\t{ \"%s\", %d, %d, },\n", this->name, this->value, this->shift);
122 this
[all...]
H A Dgenmap.c54 struct st_key *this; local
85 this = find_key(cp);
86 if (this == NULL)
88 if (this->shift == is_shift) {
91 shift_state += this->value;
92 } else if (this->shift == is_input)
93 value = this->value;
105 this = find_key(cp);
106 if (this == NULL || this
[all...]
/linux-master/drivers/gpu/drm/loongson/
H A Dlsdc_pixpll.c104 struct lsdc_pixpll *this = (struct lsdc_pixpll *)data; local
106 iounmap(this->mmio);
108 kfree(this->priv);
116 * @this: point to the object where this function is called from
118 static int lsdc_pixel_pll_setup(struct lsdc_pixpll * const this) argument
122 this->mmio = ioremap(this->reg_base, this->reg_size);
123 if (!this
149 lsdc_pixpll_find(struct lsdc_pixpll * const this, unsigned int clock, struct lsdc_pixpll_parms *pout) argument
192 lsdc_pixel_pll_compute(struct lsdc_pixpll * const this, unsigned int clock, struct lsdc_pixpll_parms *pout) argument
251 __pixpll_rreg(struct lsdc_pixpll *this, union lsdc_pixpll_reg_bitmap *dst) argument
262 __pixpll_wreg(struct lsdc_pixpll *this, union lsdc_pixpll_reg_bitmap *src) argument
273 __pixpll_ops_powerup(struct lsdc_pixpll * const this) argument
284 __pixpll_ops_powerdown(struct lsdc_pixpll * const this) argument
295 __pixpll_ops_on(struct lsdc_pixpll * const this) argument
306 __pixpll_ops_off(struct lsdc_pixpll * const this) argument
317 __pixpll_ops_bypass(struct lsdc_pixpll * const this) argument
328 __pixpll_ops_unbypass(struct lsdc_pixpll * const this) argument
339 __pixpll_ops_untoggle_param(struct lsdc_pixpll * const this) argument
350 __pixpll_ops_set_param(struct lsdc_pixpll * const this, struct lsdc_pixpll_parms const *p) argument
364 __pixpll_ops_toggle_param(struct lsdc_pixpll * const this) argument
375 __pixpll_ops_wait_locked(struct lsdc_pixpll * const this) argument
400 lsdc_pixpll_update(struct lsdc_pixpll * const this, struct lsdc_pixpll_parms const *pin) argument
428 lsdc_pixpll_get_freq(struct lsdc_pixpll * const this) argument
445 lsdc_pixpll_print(struct lsdc_pixpll * const this, struct drm_printer *p) argument
469 lsdc_pixpll_init(struct lsdc_pixpll * const this, struct drm_device *ddev, unsigned int index) argument
[all...]
H A Dlsdc_gfxpll.c59 static void __gfxpll_rreg(struct loongson_gfxpll *this, argument
63 reg->d = readq(this->mmio);
65 reg->w[0] = readl(this->mmio);
66 reg->w[1] = readl(this->mmio + 4);
72 static int loongson_gfxpll_update(struct loongson_gfxpll * const this, argument
80 static void loongson_gfxpll_get_rates(struct loongson_gfxpll * const this, argument
85 struct loongson_gfxpll_parms *pparms = &this->parms;
92 __gfxpll_rreg(this, &gfxpll_reg);
117 static void loongson_gfxpll_print(struct loongson_gfxpll * const this, argument
121 struct loongson_gfxpll_parms *parms = &this
143 struct loongson_gfxpll *this = (struct loongson_gfxpll *)data; local
150 loongson_gfxpll_init(struct loongson_gfxpll * const this) argument
178 struct loongson_gfxpll *this; local
[all...]
H A Dlsdc_pixpll.h52 int (*setup)(struct lsdc_pixpll * const this);
54 int (*compute)(struct lsdc_pixpll * const this,
58 int (*update)(struct lsdc_pixpll * const this,
61 unsigned int (*get_rate)(struct lsdc_pixpll * const this);
63 void (*print)(struct lsdc_pixpll * const this,
82 int lsdc_pixpll_init(struct lsdc_pixpll * const this,
H A Dlsdc_gfxpll.h23 int (*init)(struct loongson_gfxpll * const this);
25 int (*update)(struct loongson_gfxpll * const this,
28 void (*get_rates)(struct loongson_gfxpll * const this,
31 void (*print)(struct loongson_gfxpll * const this,
/linux-master/include/linux/mtd/
H A Donenand.h72 * @chip_lock: [INTERN] spinlock used to protect access to this
153 #define ONENAND_CURRENT_BUFFERRAM(this) (this->bufferram_index)
154 #define ONENAND_NEXT_BUFFERRAM(this) (this->bufferram_index ^ 1)
155 #define ONENAND_SET_NEXT_BUFFERRAM(this) (this->bufferram_index ^= 1)
156 #define ONENAND_SET_PREV_BUFFERRAM(this) (this->bufferram_index ^= 1)
157 #define ONENAND_SET_BUFFERRAM0(this) (thi
[all...]
/linux-master/drivers/s390/net/
H A Dfsm.c21 fsm_instance *this; local
25 this = kzalloc(sizeof(fsm_instance), order);
26 if (this == NULL) {
31 strscpy(this->name, name, sizeof(this->name));
32 init_waitqueue_head(&this->wait_q);
38 kfree_fsm(this);
45 this->f = f;
51 kfree_fsm(this);
63 kfree_fsm(this);
73 kfree_fsm(fsm_instance *this) argument
135 fsm_timer *this = from_timer(this, t, tl); local
144 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
183 fsm_modtimer(fsm_timer *this, int millisec, int event, void *arg) argument
[all...]
/linux-master/drivers/mtd/nand/onenand/
H A Donenand_base.c218 * @this: onenand chip data structure
224 static int onenand_block_address(struct onenand_chip *this, int block) argument
227 if (block & this->density_mask)
228 return ONENAND_DDP_CHIP1 | (block ^ this->density_mask);
235 * @this: onenand chip data structure
241 static int onenand_bufferram_address(struct onenand_chip *this, int block) argument
244 if (block & this->density_mask)
298 * @this: - OneNAND device structure
301 static unsigned flexonenand_block(struct onenand_chip *this, loff_t addr) argument
305 if (ONENAND_IS_DDP(this)
320 onenand_block(struct onenand_chip *this, loff_t addr) argument
334 flexonenand_addr(struct onenand_chip *this, int block) argument
352 onenand_addr(struct onenand_chip *this, int block) argument
400 struct onenand_chip *this = mtd->priv; local
524 onenand_read_ecc(struct onenand_chip *this) argument
555 struct onenand_chip * this = mtd->priv; local
635 struct onenand_chip *this = data; local
653 struct onenand_chip *this = mtd->priv; local
669 struct onenand_chip *this = mtd->priv; local
700 struct onenand_chip *this = mtd->priv; local
735 struct onenand_chip *this = mtd->priv; local
761 struct onenand_chip *this = mtd->priv; local
797 struct onenand_chip *this = mtd->priv; local
837 struct onenand_chip *this = mtd->priv; local
875 struct onenand_chip *this = mtd->priv; local
899 struct onenand_chip *this = mtd->priv; local
942 struct onenand_chip *this = mtd->priv; local
975 struct onenand_chip *this = mtd->priv; local
996 struct onenand_chip *this = mtd->priv; local
1033 struct onenand_chip *this = mtd->priv; local
1054 struct onenand_chip *this = mtd->priv; local
1077 struct onenand_chip *this = mtd->priv; local
1117 struct onenand_chip *this = mtd->priv; local
1218 struct onenand_chip *this = mtd->priv; local
1347 struct onenand_chip *this = mtd->priv; local
1442 struct onenand_chip *this = mtd->priv; local
1488 struct onenand_chip *this = mtd->priv; local
1541 struct onenand_chip *this = mtd->priv; local
1615 struct onenand_chip *this = mtd->priv; local
1644 struct onenand_chip *this = mtd->priv; local
1685 struct onenand_chip *this = mtd->priv; local
1710 struct onenand_chip *this = mtd->priv; local
1800 struct onenand_chip *this = mtd->priv; local
1981 struct onenand_chip *this = mtd->priv; local
2122 struct onenand_chip *this = mtd->priv; local
2133 struct onenand_chip *this = mtd->priv; local
2166 struct onenand_chip *this = mtd->priv; local
2278 struct onenand_chip *this = mtd->priv; local
2345 struct onenand_chip *this = mtd->priv; local
2445 struct onenand_chip *this = mtd->priv; local
2479 struct onenand_chip *this = mtd->priv; local
2507 struct onenand_chip *this = mtd->priv; local
2618 onenand_check_lock_status(struct onenand_chip *this) argument
2654 struct onenand_chip *this = mtd->priv; local
2703 struct onenand_chip *this = mtd->priv; local
2779 struct onenand_chip *this = mtd->priv; local
2910 struct onenand_chip *this = mtd->priv; local
2947 struct onenand_chip *this = mtd->priv; local
2991 struct onenand_chip *this = mtd->priv; local
3042 struct onenand_chip *this = mtd->priv; local
3199 struct onenand_chip *this = mtd->priv; local
3253 struct onenand_chip *this = mtd->priv; local
3396 struct onenand_chip *this = mtd->priv; local
3437 struct onenand_chip *this = mtd->priv; local
3518 struct onenand_chip *this = mtd->priv; local
3565 struct onenand_chip *this = mtd->priv; local
3657 struct onenand_chip *this = mtd->priv; local
3702 struct onenand_chip *this = mtd->priv; local
3806 struct onenand_chip *this = mtd->priv; local
3828 struct onenand_chip *this = mtd->priv; local
3999 struct onenand_chip *this = mtd->priv; local
[all...]
H A Donenand_bbt.c58 struct onenand_chip *this = mtd->priv; local
59 struct bbm_info *bbm = this->bbm;
79 numblocks = this->chipsize >> (bbm->bbt_erase_shift - 1);
95 from + j * this->writesize + bd->offs, &ops);
102 scanlen, this->writesize, bd)) {
112 if (FLEXONENAND(this)) {
133 struct onenand_chip *this = mtd->priv; local
135 return create_bbt(mtd, this->page_buf, bd, -1);
146 struct onenand_chip *this = mtd->priv; local
147 struct bbm_info *bbm = this
183 struct onenand_chip *this = mtd->priv; local
231 struct onenand_chip *this = mtd->priv; local
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/core/
H A Dmm.c5 * copy of this software and associated documentation files (the "Software"),
11 * The above copyright notice and this permission notice shall be included in
50 struct nvkm_mm_node *this = *pthis; local
52 if (this) {
53 struct nvkm_mm_node *prev = node(this, prev);
54 struct nvkm_mm_node *next = node(this, next);
57 prev->length += this->length;
58 list_del(&this->nl_entry);
59 kfree(this); this
114 struct nvkm_mm_node *prev, *this, *next; local
189 struct nvkm_mm_node *prev, *this, *next; local
[all...]
H A Denum.c7 * a copy of this software and associated documentation files (the
14 * The above copyright notice and this permission notice (including the
47 int this = snprintf(data, size, "%s%s", local
49 size -= this;
50 data += this;
/linux-master/fs/jffs2/
H A Dcompr.c11 * For licensing information, see the file 'LICENCE' in this directory.
21 /* Available compressors are on this list */
32 * Return 1 to use this compression
34 static int jffs2_is_best_compression(struct jffs2_compressor *this, argument
43 if ((this->compr == JFFS2_COMPR_LZO) && (bestsize > size))
47 if ((this->compr == JFFS2_COMPR_LZO) && (bestsize > (size * FAVOUR_LZO_PERCENT / 100)))
77 struct jffs2_compressor *this; local
90 list_for_each_entry(this, &jffs2_compressor_list, list) {
92 if (!this->compress || this
154 struct jffs2_compressor *this, *best=NULL; local
257 struct jffs2_compressor *this; local
303 struct jffs2_compressor *this; local
[all...]
H A Dnodelist.c8 * For licensing information, see the file 'LICENCE' in this directory.
24 struct jffs2_node_frag *this);
102 struct jffs2_node_frag *this)
104 if (this->node) {
105 this->node->frags--;
106 if (!this->node->frags) {
109 ref_offset(this->node->raw), this->node->ofs, this->node->ofs+this
101 jffs2_obsolete_node_frag(struct jffs2_sb_info *c, struct jffs2_node_frag *this) argument
169 no_overlapping_node(struct jffs2_sb_info *c, struct rb_root *root, struct jffs2_node_frag *newfrag, struct jffs2_node_frag *this, uint32_t lastend) argument
217 struct jffs2_node_frag *this; local
490 struct jffs2_inode_cache *this, *next; local
507 struct jffs2_raw_node_ref *this, *next; local
[all...]
/linux-master/drivers/mtd/nand/raw/
H A Dnand_bbt.c157 * @this: NAND chip object
166 static int read_bbt(struct nand_chip *this, uint8_t *buf, int page, int num, argument
169 struct mtd_info *mtd = nand_to_mtd(this);
180 from = ((loff_t)page) << this->page_shift;
183 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
219 this->bbt_erase_shift);
220 bbt_mark_entry(this, offs + act,
227 * move this message to pr_debug.
231 this->bbt_erase_shift);
234 bbt_mark_entry(this, off
259 read_abs_bbt(struct nand_chip *this, uint8_t *buf, struct nand_bbt_descr *td, int chip) argument
287 scan_read_data(struct nand_chip *this, uint8_t *buf, loff_t offs, struct nand_bbt_descr *td) argument
312 scan_read_oob(struct nand_chip *this, uint8_t *buf, loff_t offs, size_t len) argument
343 scan_read(struct nand_chip *this, uint8_t *buf, loff_t offs, size_t len, struct nand_bbt_descr *td) argument
353 scan_write_bbt(struct nand_chip *this, loff_t offs, size_t len, uint8_t *buf, uint8_t *oob) argument
369 bbt_get_ver_offs(struct nand_chip *this, struct nand_bbt_descr *td) argument
389 read_abs_bbts(struct nand_chip *this, uint8_t *buf, struct nand_bbt_descr *td, struct nand_bbt_descr *md) argument
414 scan_block_fast(struct nand_chip *this, struct nand_bbt_descr *bd, loff_t offs, uint8_t *buf) argument
451 bbt_block_checkbad(struct nand_chip *this, struct nand_bbt_descr *td, loff_t offs, uint8_t *buf) argument
490 create_bbt(struct nand_chip *this, uint8_t *buf, struct nand_bbt_descr *bd, int chip) argument
552 search_bbt(struct nand_chip *this, uint8_t *buf, struct nand_bbt_descr *td) argument
628 search_read_bbts(struct nand_chip *this, uint8_t *buf, struct nand_bbt_descr *td, struct nand_bbt_descr *md) argument
653 get_bbt_block(struct nand_chip *this, struct nand_bbt_descr *td, struct nand_bbt_descr *md, int chip) argument
716 mark_bbt_block_bad(struct nand_chip *this, struct nand_bbt_descr *td, int chip, int block) argument
744 write_bbt(struct nand_chip *this, uint8_t *buf, struct nand_bbt_descr *td, struct nand_bbt_descr *md, int chipsel) argument
930 nand_memory_bbt(struct nand_chip *this, struct nand_bbt_descr *bd) argument
949 check_create(struct nand_chip *this, uint8_t *buf, struct nand_bbt_descr *bd) argument
1073 nand_update_bbt(struct nand_chip *this, loff_t offs) argument
1129 mark_bbt_region(struct nand_chip *this, struct nand_bbt_descr *td) argument
1190 verify_bbt_descr(struct nand_chip *this, struct nand_bbt_descr *bd) argument
1243 nand_scan_bbt(struct nand_chip *this, struct nand_bbt_descr *bd) argument
1371 nand_create_badblock_pattern(struct nand_chip *this) argument
1397 nand_create_bbt(struct nand_chip *this) argument
1433 nand_isreserved_bbt(struct nand_chip *this, loff_t offs) argument
1447 nand_isbad_bbt(struct nand_chip *this, loff_t offs, int allowbbt) argument
1476 nand_markbad_bbt(struct nand_chip *this, loff_t offs) argument
[all...]
/linux-master/drivers/mtd/nand/raw/gpmi-nand/
H A Dgpmi-nand.c71 * You will see a DMA timeout in this case. The bug has been fixed
74 * To avoid this bug, just add a new parameter `just_enable` for
119 static int __gpmi_enable_clk(struct gpmi_nand_data *this, bool v) argument
126 clk = this->resources.clock[i];
142 clk_disable_unprepare(this->resources.clock[i - 1]);
146 static int gpmi_init(struct gpmi_nand_data *this) argument
148 struct resources *r = &this->resources;
151 ret = pm_runtime_resume_and_get(this->dev);
163 ret = gpmi_reset_block(r->bch_regs, GPMI_IS_MXS(this));
189 pm_runtime_mark_last_busy(this
195 gpmi_dump_info(struct gpmi_nand_data *this) argument
241 gpmi_check_ecc(struct gpmi_nand_data *this) argument
268 bbm_in_data_chunk(struct gpmi_nand_data *this, unsigned int *chunk_num) argument
306 set_geometry_by_ecc_info(struct gpmi_nand_data *this, unsigned int ecc_strength, unsigned int ecc_step) argument
436 get_ecc_strength(struct gpmi_nand_data *this) argument
449 set_geometry_for_large_oob(struct gpmi_nand_data *this) argument
577 legacy_set_geometry(struct gpmi_nand_data *this) argument
691 common_nfc_set_geometry(struct gpmi_nand_data *this) argument
731 bch_set_geometry(struct gpmi_nand_data *this) argument
840 gpmi_nfc_compute_timings(struct gpmi_nand_data *this, const struct nand_sdr_timings *sdr) argument
925 gpmi_nfc_apply_timings(struct gpmi_nand_data *this) argument
976 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1004 gpmi_clear_bch(struct gpmi_nand_data *this) argument
1010 get_dma_chan(struct gpmi_nand_data *this) argument
1019 struct gpmi_nand_data *this = param; local
1027 struct gpmi_nand_data *this = cookie; local
1034 gpmi_raw_len_to_len(struct gpmi_nand_data *this, int raw_len) argument
1047 prepare_data_dma(struct gpmi_nand_data *this, const void *buf, int raw_len, struct scatterlist *sgl, enum dma_data_direction dr) argument
1093 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1109 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1181 acquire_register_block(struct gpmi_nand_data *this, const char *res_name) argument
1202 acquire_bch_irq(struct gpmi_nand_data *this, irq_handler_t irq_h) argument
1219 release_dma_channels(struct gpmi_nand_data *this) argument
1229 acquire_dma_channels(struct gpmi_nand_data *this) argument
1248 gpmi_get_clks(struct gpmi_nand_data *this) argument
1271 acquire_resources(struct gpmi_nand_data *this) argument
1302 release_resources(struct gpmi_nand_data *this) argument
1307 gpmi_free_dma_buffer(struct gpmi_nand_data *this) argument
1324 gpmi_alloc_dma_buffer(struct gpmi_nand_data *this) argument
1364 block_mark_swapping(struct gpmi_nand_data *this, void *payload, void *auxiliary) argument
1410 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1503 gpmi_bch_layout_std(struct gpmi_nand_data *this) argument
1528 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1570 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1667 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1754 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1814 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1899 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
1979 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
2003 nand_boot_set_geometry(struct gpmi_nand_data *this) argument
2030 mx23_check_transcription_stamp(struct gpmi_nand_data *this) argument
2085 mx23_write_transcription_stamp(struct gpmi_nand_data *this) argument
2151 mx23_boot_init(struct gpmi_nand_data *this) argument
2224 nand_boot_init(struct gpmi_nand_data *this) argument
2234 gpmi_set_geometry(struct gpmi_nand_data *this) argument
2252 gpmi_init_last(struct gpmi_nand_data *this) argument
2295 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
2317 get_next_transfer(struct gpmi_nand_data *this) argument
2329 gpmi_chain_command( struct gpmi_nand_data *this, u8 cmd, const u8 *addr, int naddr) argument
2371 gpmi_chain_wait_ready( struct gpmi_nand_data *this) argument
2389 gpmi_chain_data_read( struct gpmi_nand_data *this, void *buf, int raw_len, bool *direct) argument
2436 gpmi_chain_data_write( struct gpmi_nand_data *this, const void *buf, int raw_len) argument
2488 struct gpmi_nand_data *this = nand_get_controller_data(chip); local
2661 gpmi_nand_init(struct gpmi_nand_data *this) argument
2730 struct gpmi_nand_data *this; local
2782 struct gpmi_nand_data *this = platform_get_drvdata(pdev); local
2799 struct gpmi_nand_data *this = dev_get_drvdata(dev); local
2807 struct gpmi_nand_data *this = dev_get_drvdata(dev); local
2838 struct gpmi_nand_data *this = dev_get_drvdata(dev); local
2845 struct gpmi_nand_data *this = dev_get_drvdata(dev); local
[all...]
/linux-master/net/caif/
H A Dcffrml.c37 struct cffrml *this = kzalloc(sizeof(struct cffrml), GFP_ATOMIC); local
38 if (!this)
40 this->pcpu_refcnt = alloc_percpu(int);
41 if (this->pcpu_refcnt == NULL) {
42 kfree(this);
48 this->layer.receive = cffrml_receive;
49 this->layer.transmit = cffrml_transmit;
50 this->layer.ctrlcmd = cffrml_ctrlcmd;
51 snprintf(this->layer.name, CAIF_LAYER_NAME_SZ, "frm%d", phyid);
52 this
59 struct cffrml *this = container_obj(layer); local
64 cffrml_set_uplayer(struct cflayer *this, struct cflayer *up) argument
69 cffrml_set_dnlayer(struct cflayer *this, struct cflayer *dn) argument
88 struct cffrml *this; local
143 struct cffrml *this = container_obj(layr); local
178 struct cffrml *this = container_obj(layr); local
185 struct cffrml *this = container_obj(layr); local
193 struct cffrml *this = container_obj(layr); local
[all...]
/linux-master/lib/zlib_inflate/
H A Dinftrees.c39 code this; /* table entry for duplication */ local
75 lens[] are in the range 0..MAXBITS. The caller must assure this.
77 symbol does not occur in this code.
104 this.op = (unsigned char)64; /* invalid code marker */
105 this.bits = (unsigned char)1;
106 this.val = (unsigned short)0;
107 *(*table)++ = this; /* make a table to force an error */
108 *(*table)++ = this;
136 Create and fill in decoding tables. In this loop, the table being
151 counts are used for this, an
[all...]
/linux-master/drivers/net/phy/
H A Dmii_timestamper.c55 struct list_head *this, *next; local
58 list_for_each_safe(this, next, &mii_timestamping_devices) {
59 desc = list_entry(this, struct mii_timestamping_desc, list);
83 struct list_head *this; local
86 list_for_each(this, &mii_timestamping_devices) {
87 desc = list_entry(this, struct mii_timestamping_desc, list);
112 struct list_head *this; local
125 list_for_each(this, &mii_timestamping_devices) {
126 desc = list_entry(this, struct mii_timestamping_desc, list);
/linux-master/Documentation/driver-api/media/drivers/ccs/
H A Dmk-ccs-regs59 my %this;
233 my $this = $_[0];
234 my $size = $this->{elsize};
235 my $h = $this->{argparams};
237 foreach my $arg (@{$this->{args}}) {
247 my ($this, $postfix, $is_same_reg) = @_;
249 ($this->{args}, $this->{argparams}, $this->{name});
252 my @sorted_args = @{$this
[all...]
/linux-master/drivers/block/drbd/
H A Ddrbd_interval.c12 struct drbd_interval *this = rb_entry(node, struct drbd_interval, rb); local
13 return this->end;
25 drbd_insert_interval(struct rb_root *root, struct drbd_interval *this) argument
28 sector_t this_end = this->sector + (this->size >> 9);
30 BUG_ON(!IS_ALIGNED(this->size, 512));
39 if (this->sector < here->sector)
41 else if (this->sector > here->sector)
43 else if (this < here)
45 else if (this > her
96 drbd_remove_interval(struct rb_root *root, struct drbd_interval *this) argument
[all...]
/linux-master/include/net/caif/
H A Dcffrml.h15 void cffrml_set_uplayer(struct cflayer *this, struct cflayer *up);
16 void cffrml_set_dnlayer(struct cflayer *this, struct cflayer *dn);
/linux-master/net/
H A Ddevres.c14 static void devm_free_netdev(struct device *dev, void *this) argument
16 struct net_device_devres *res = this;
42 static void devm_unregister_netdev(struct device *dev, void *this) argument
44 struct net_device_devres *res = this;
49 static int netdev_devres_match(struct device *dev, void *this, void *match_data) argument
51 struct net_device_devres *res = this;
59 * @dev: managing device for this netdev - usually the parent device

Completed in 258 milliseconds

1234567891011>>