Home
last modified time | relevance | path

Searched refs:this (Results 1 – 25 of 4656) sorted by relevance

12345678910>>...187

/openbmc/linux/sound/usb/line6/
H A Dmidibuf.c35 return (this->pos_read == this->pos_write) && !this->full; in midibuf_is_empty()
45 this->pos_read = this->pos_write = this->full = 0; in line6_midibuf_reset()
67 (this->pos_read - this->pos_write + this->size - 1) % this->size + in line6_midibuf_bytes_free()
76 (this->pos_write - this->pos_read + this->size - 1) % this->size + in line6_midibuf_bytes_used()
102 length1 = this->size - this->pos_write; in line6_midibuf_write()
116 if (this->pos_write == this->pos_read) in line6_midibuf_write()
145 length1 = this->size - this->pos_read; in line6_midibuf_read()
147 command = this->buf[this->pos_read]; in line6_midibuf_read()
157 this->buf[this->pos_read] = fixed; in line6_midibuf_read()
185 if (this->buf[this->pos_read + i] & 0x80) in line6_midibuf_read()
[all …]
/openbmc/linux/drivers/net/wireless/legacy/
H A Dwl3501_cs.c338 wl3501_set_to_wla(this, this->tx_buffer_tail, in wl3501_free_tx_buffer()
365 if (this->esbq_req_head >= this->esbq_req_end) in wl3501_esbq_req()
366 this->esbq_req_head = this->esbq_req_start; in wl3501_esbq_req()
584 this->bss_cnt = this->join_sta_bss = 0; in wl3501_mgmt_scan()
710 if (this->join_sta_bss == this->bss_cnt) { in wl3501_mgmt_scan_confirm()
773 wl3501_get_from_wla(this, this->start_seg + 2, in wl3501_receive()
820 if (this->esbq_req_tail >= this->esbq_req_end) in wl3501_esbq_req_free()
821 this->esbq_req_tail = this->esbq_req_start; in wl3501_esbq_req_free()
889 if (this->join_sta_bss < this->bss_cnt) { in wl3501_mgmt_join_confirm()
914 if (this->join_sta_bss == this->bss_cnt) { in wl3501_mgmt_join_confirm()
[all …]
/openbmc/linux/drivers/mtd/nand/onenand/
H A Donenand_base.c682 free_irq(this->irq, this); in onenand_try_interrupt_wait()
2623 end = this->chipsize >> this->erase_shift; in onenand_check_lock_status()
2732 this->write_word(value, this->base + in onenand_otp_command()
2751 this->write_word(value, this->base + in onenand_otp_command()
2811 this->write_word(value, this->base + in onenand_otp_write_oob_nolock()
2820 this->write_word(value, this->base + in onenand_otp_write_oob_nolock()
3200 u_char *buf = FLEXONENAND(this) ? this->page_buf : this->oob_buf; in onenand_lock_user_prot_reg()
3714 this->technology = this->read_word(this->base + ONENAND_REG_TECHNOLOGY); in onenand_probe()
3726 this->dies = ONENAND_IS_DDP(this) ? 2 : 1; in onenand_probe()
3763 this->page_mask = (1 << (this->erase_shift - this->page_shift)) - 1; in onenand_probe()
[all …]
/openbmc/u-boot/drivers/mtd/onenand/
H A Donenand_base.c233 if (ONENAND_IS_DDP(this) && addr >= this->diesize[0]) { in flexonenand_block()
267 if (ONENAND_IS_DDP(this) && block >= this->density_mask) { in flexonenand_addr()
366 - onenand_addr(this, block)) >> this->page_shift; in onenand_command()
431 this->write_word(cmd, this->base + ONENAND_REG_COMMAND); in onenand_command()
448 ecc = this->read_word(this->base in onenand_read_ecc()
2068 end = this->chipsize >> this->erase_shift; in onenand_check_lock_status()
2121 if (ONENAND_IS_DDP(this) && !FLEXONENAND(this)) { in onenand_unlock_all()
2594 this->technology = this->read_word(this->base + ONENAND_REG_TECHNOLOGY); in onenand_probe()
2606 this->dies = ONENAND_IS_DDP(this) ? 2 : 1; in onenand_probe()
2642 this->ppb_shift = (this->erase_shift - this->page_shift); in onenand_probe()
[all …]
/openbmc/linux/drivers/gpu/drm/loongson/
H A Dlsdc_pixpll.c106 iounmap(this->mmio); in lsdc_pixel_pll_free()
108 kfree(this->priv); in lsdc_pixel_pll_free()
122 this->mmio = ioremap(this->reg_base, this->reg_size); in lsdc_pixel_pll_setup()
123 if (!this->mmio) in lsdc_pixel_pll_setup()
128 iounmap(this->mmio); in lsdc_pixel_pll_setup()
134 this->priv = pparms; in lsdc_pixel_pll_setup()
136 return drmm_add_action_or_reset(this->ddev, lsdc_pixel_pll_free, this); in lsdc_pixel_pll_setup()
421 __pixpll_ops_on(this); in lsdc_pixpll_update()
477 this->ddev = ddev; in lsdc_pixpll_init()
478 this->reg_size = 8; in lsdc_pixpll_init()
[all …]
H A Dlsdc_gfxpll.c134 this->funcs->get_rates(this, &dc, &gmc, &gpu); in loongson_gfxpll_print()
145 iounmap(this->mmio); in loongson_gfxpll_fini()
147 kfree(this); in loongson_gfxpll_fini()
157 this->mmio = ioremap(this->reg_base, this->reg_size); in loongson_gfxpll_init()
161 this->funcs->print(this, &printer, false); in loongson_gfxpll_init()
181 this = kzalloc(sizeof(*this), GFP_KERNEL); in loongson_gfxpll_create()
182 if (IS_ERR_OR_NULL(this)) in loongson_gfxpll_create()
185 this->ddev = ddev; in loongson_gfxpll_create()
190 ret = this->funcs->init(this); in loongson_gfxpll_create()
192 kfree(this); in loongson_gfxpll_create()
[all …]
/openbmc/linux/drivers/mtd/nand/raw/gpmi-nand/
H A Dgpmi-nand.c937 if (GPMI_IS_MX6Q(this) || GPMI_IS_MX6SX(this)) in gpmi_nfc_apply_timings()
946 if (GPMI_IS_MX6Q(this) || GPMI_IS_MX6SX(this)) { in gpmi_nfc_apply_timings()
1040 if (this->bch) in gpmi_raw_len_to_len()
1255 clk = devm_clk_get(this->dev, this->devdata->clks[i]); in gpmi_get_clks()
1546 block_mark_swapping(this, buf, this->auxiliary_virt); in gpmi_ecc_read_page()
1684 block_mark_swapping(this, this->data_buffer_dma, in gpmi_ecc_write_page()
2379 | BF_GPMI_CTRL0_CS(this->nand.cur_cs, this) in gpmi_chain_wait_ready()
2408 | BF_GPMI_CTRL0_CS(this->nand.cur_cs, this) in gpmi_chain_data_read()
2454 | BF_GPMI_CTRL0_CS(this->nand.cur_cs, this) in gpmi_chain_data_write()
2679 this->swap_block_mark = !GPMI_IS_MX23(this); in gpmi_nand_init()
[all …]
/openbmc/linux/drivers/mtd/nand/raw/
H A Dnand_bbt.c396 scan_read(this, buf, (loff_t)td->pages[0] << this->page_shift, in read_abs_bbts()
405 scan_read(this, buf, (loff_t)md->pages[0] << this->page_shift, in read_abs_bbts()
561 int blocktopage = this->bbt_erase_shift - this->page_shift; in search_bbt()
667 (this->bbt_erase_shift - this->page_shift); in get_bbt_block()
695 page = block << (this->bbt_erase_shift - this->page_shift); in get_bbt_block()
798 page = block << (this->bbt_erase_shift - this->page_shift); in write_bbt()
1151 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift); in mark_bbt_region()
1258 if (!this->bbt) in nand_scan_bbt()
1307 kfree(this->bbt); in nand_scan_bbt()
1308 this->bbt = NULL; in nand_scan_bbt()
[all …]
/openbmc/linux/drivers/s390/net/
H A Dfsm.c31 strscpy(this->name, name, sizeof(this->name)); in init_fsm()
45 this->f = f; in init_fsm()
69 return this; in init_fsm()
75 if (this) { in kfree_fsm()
80 kfree(this); in kfree_fsm()
135 fsm_timer *this = from_timer(this, t, tl); in fsm_expire_timer() local
138 this->fi->name, this); in fsm_expire_timer()
140 fsm_event(this->fi, this->expire_event, this->event_arg); in fsm_expire_timer()
159 this); in fsm_deltimer()
170 this->fi->name, this, millisec); in fsm_addtimer()
[all …]
/openbmc/linux/fs/jffs2/
H A Dnodelist.c109 ref_offset(this->node->raw), this->node->ofs, this->node->ofs+this->node->size); in jffs2_obsolete_node_frag()
114 …ref_offset(this->node->raw), this->node->ofs, this->node->ofs+this->node->size, this->node->frags); in jffs2_obsolete_node_frag()
225 this->ofs, this->ofs+this->size, this->node?(ref_offset(this->node->raw)):0xffffffff, this); in jffs2_add_frag_to_fragtree()
226 lastend = this->ofs + this->size; in jffs2_add_frag_to_fragtree()
251 this->ofs, this->ofs + this->size, in jffs2_add_frag_to_fragtree()
255 this->ofs, this->ofs + this->size); in jffs2_add_frag_to_fragtree()
275 this->ofs, this->ofs+this->size, ref_offset(this->node->raw)); in jffs2_add_frag_to_fragtree()
278 this->ofs, this->ofs+this->size); in jffs2_add_frag_to_fragtree()
315 newfrag, newfrag->ofs, newfrag->ofs+newfrag->size, this, this->ofs, this->ofs+this->size); in jffs2_add_frag_to_fragtree()
320 dbg_fragtree2("obsoleting node frag %p (%x-%x)\n", this, this->ofs, this->ofs+this->size); in jffs2_add_frag_to_fragtree()
[all …]
H A Dcompr.c92 if (!this->compress || this->disabled) in jffs2_selected_compress()
103 this->usecount++; in jffs2_selected_compress()
111 this->usecount--; in jffs2_selected_compress()
114 ret = this->compr; in jffs2_selected_compress()
178 if ((!this->compress)||(this->disabled)) in jffs2_compress()
181 if ((this->compr_buf_size < orig_slen) && (this->compr_buf)) { in jffs2_compress()
202 this->usecount++; in jffs2_compress()
208 this->usecount--; in jffs2_compress()
214 best = this; in jffs2_compress()
278 this->usecount++; in jffs2_decompress()
[all …]
/openbmc/webui-vue/src/components/Global/
H A DLoadingBar.vue26 this.startLoadingInterval();
29 this.endLoadingInterval();
32 this.hideLoadingBar();
37 this.clearLoadingInterval();
38 this.clearTimeout();
43 if (this.loadingIndicatorValue > 100) this.clearLoadingInterval();
48 this.clearTimeout();
58 this.clearTimeout();
63 if (this.loadingIntervalId) clearInterval(this.loadingIntervalId);
67 if (this.timeoutId) clearTimeout(this.timeoutId);
[all …]
/openbmc/linux/include/linux/mtd/
H A Donenand.h153 #define ONENAND_CURRENT_BUFFERRAM(this) (this->bufferram_index) argument
154 #define ONENAND_NEXT_BUFFERRAM(this) (this->bufferram_index ^ 1) argument
155 #define ONENAND_SET_NEXT_BUFFERRAM(this) (this->bufferram_index ^= 1) argument
156 #define ONENAND_SET_PREV_BUFFERRAM(this) (this->bufferram_index ^= 1) argument
157 #define ONENAND_SET_BUFFERRAM0(this) (this->bufferram_index = 0) argument
158 #define ONENAND_SET_BUFFERRAM1(this) (this->bufferram_index = 1) argument
160 #define FLEXONENAND(this) \ argument
163 (this->read_word(this->base + ONENAND_REG_SYS_CFG1))
165 (this->write_word(v, this->base + ONENAND_REG_SYS_CFG1))
167 #define ONENAND_IS_DDP(this) \ argument
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/
H A DUserManagement.vue154 this.hideLoader();
247 this.startLoader();
249 this.endLoader();
268 this.$bvModal
287 this.setting = this.settings;
293 this.$store
299 this.$store
308 this.$store
353 this.$store
365 this.$store
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/core/
H A Dmm.c52 if (this) { in nvkm_mm_free()
59 kfree(this); this = prev; in nvkm_mm_free()
68 kfree(this); this = NULL; in nvkm_mm_free()
71 if (this && this->type != NVKM_MM_TYPE_NONE) { in nvkm_mm_free()
126 e = this->offset + this->length; in nvkm_mm_head()
146 this = region_head(mm, this, min(size_max, e - s)); in nvkm_mm_head()
147 if (!this) in nvkm_mm_head()
153 *pnode = this; in nvkm_mm_head()
195 u32 e = this->offset + this->length; in nvkm_mm_tail()
225 this = region_tail(mm, this, a); in nvkm_mm_tail()
[all …]
/openbmc/linux/Documentation/driver-api/media/drivers/ccs/
H A Dmk-ccs-regs59 my %this;
201 my $this = $_[0];
202 my $size = $this->{elsize};
203 my $h = $this->{argparams};
217 ($this->{args}, $this->{argparams}, $this->{name});
222 my $size = arr_size($this);
297 next if $#{$this{args}} + 1 != scalar keys %{$this{argparams}};
330 } @{$this{args}};
333 my $da = $this{argparams}->{$this{discontig}};
354 if (! @{$this{args}}) {
[all …]
/openbmc/linux/net/caif/
H A Dcffrml.c38 if (!this) in cffrml_create()
42 kfree(this); in cffrml_create()
52 this->dofcs = use_fcs; in cffrml_create()
53 this->layer.id = phyid; in cffrml_create()
66 this->up = up; in cffrml_set_uplayer()
71 this->dn = dn; in cffrml_set_dnlayer()
88 struct cffrml *this; in cffrml_receive() local
89 this = container_obj(layr); in cffrml_receive()
95 if (!this->dofcs) in cffrml_receive()
108 if (this->dofcs) { in cffrml_receive()
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/Certificates/
H A DCertificates.vue132 this.hideLoader();
218 this.startLoader();
221 this.endLoader();
243 this.$bvModal
263 this.fileTypeCorrect = this.getIsFileTypeCorrect(file);
282 this.$store
290 this.startLoader();
295 this.$store
307 this.startLoader();
308 this.$store
[all …]
/openbmc/linux/drivers/accessibility/speakup/
H A Dutils.h75 while (this) { in find_key()
76 if (this->name && !strcmp(name, this->name)) in find_key()
77 return this; in find_key()
78 this = this->next; in find_key()
80 return this; in find_key()
90 while (this->next) { in add_key()
93 this = this->next; in add_key()
96 this = this->next; in add_key()
99 this->value = value; in add_key()
100 this->shift = shift; in add_key()
[all …]
/openbmc/webui-vue/src/views/Settings/Network/
H A DNetwork.vue74 this.hideLoader();
91 this.getModalInfo();
95 this.startLoader();
122 this.tabIndex
127 this.tabIndex
132 this.tabIndex
137 this.$store.dispatch('network/setSelectedTabIndex', this.tabIndex);
145 this.startLoader();
146 this.$store
154 this.$store
[all …]
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Dnand_bbt.c272 this->chipsize >> this->bbt_erase_shift, in read_abs_bbt()
276 offs += this->chipsize >> this->bbt_erase_shift; in read_abs_bbt()
477 numblocks = this->chipsize >> this->bbt_erase_shift; in create_bbt()
529 int blocktopage = this->bbt_erase_shift - this->page_shift; in search_bbt()
543 bbtblocks = this->chipsize >> this->bbt_erase_shift; in search_bbt()
571 startblock += this->chipsize >> this->bbt_erase_shift; in search_bbt()
639 numblocks = (int)(this->chipsize >> this->bbt_erase_shift); in write_bbt()
685 (this->bbt_erase_shift - this->page_shift); in write_bbt()
970 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift); in mark_bbt_region()
1051 table_size = this->chipsize >> this->bbt_erase_shift; in verify_bbt_descr()
[all …]
/openbmc/u-boot/include/linux/mtd/
H A Donenand.h131 #define ONENAND_CURRENT_BUFFERRAM(this) (this->bufferram_index) argument
132 #define ONENAND_NEXT_BUFFERRAM(this) (this->bufferram_index ^ 1) argument
133 #define ONENAND_SET_NEXT_BUFFERRAM(this) (this->bufferram_index ^= 1) argument
134 #define ONENAND_SET_PREV_BUFFERRAM(this) (this->bufferram_index ^= 1) argument
135 #define ONENAND_SET_BUFFERRAM0(this) (this->bufferram_index = 0) argument
136 #define ONENAND_SET_BUFFERRAM1(this) (this->bufferram_index = 1) argument
138 #define FLEXONENAND(this) (this->device_id & DEVICE_IS_FLEXONENAND) argument
139 #define ONENAND_IS_MLC(this) (this->technology & ONENAND_TECHNOLOGY_IS_MLC) argument
140 #define ONENAND_IS_DDP(this) \ argument
143 #define ONENAND_IS_4KB_PAGE(this) \ argument
[all …]
/openbmc/webui-vue/src/views/Operations/Kvm/
H A DKvmConsole.vue96 this.openTerminal();
100 this.closeTerminal();
104 this.rfb.sendCtrlAltDel();
107 this.rfb.disconnect();
108 this.rfb = null;
112 this.rfb = new RFB(
113 this.$refs.panel,
120 const that = this;
134 this.isConnected = false;
158 this.openNewWindow();
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/Ldap/
H A DTableRoleGroups.vue185 this.isBusy = false;
190 this.$bvModal
192 this.$tc(
205 this.startLoader();
206 this.$store
222 this.$bvModal
237 this.$store
252 this.activeRoleGroup = null;
254 this.startLoader();
256 this.$store
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Inventory/Item/
H A DPCIeDevice.interface.yaml25 The Class Code for this function.
29 The Device Class for this function.
33 The Device ID for this function.
41 The Revision ID for this function.
53 The Vendor ID for this function.
58 The Class Code for this function.
66 The Device ID for this function.
86 The Vendor ID for this function.
99 The Device ID for this function.
119 The Vendor ID for this function.
[all …]

12345678910>>...187