/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/ |
H A D | gf100.c | 27 #include <subdev/bios/init.h> 32 gf100_devinit_pll_set(struct nvkm_devinit *init, u32 type, u32 freq) in gf100_devinit_pll_set() argument 34 struct nvkm_subdev *subdev = &init->subdev; in gf100_devinit_pll_set() 67 gf100_devinit_disable(struct nvkm_devinit *init) in gf100_devinit_disable() argument 69 struct nvkm_device *device = init->subdev.device; in gf100_devinit_disable() 93 struct nv50_devinit *init = nv50_devinit(base); in gf100_devinit_preinit() local 94 struct nvkm_subdev *subdev = &init->base.subdev; in gf100_devinit_preinit() 107 .init = nv50_devinit_init,
|
/kernel/linux/linux-6.6/drivers/clk/qcom/ |
H A D | dispcc-qcm2290.c | 57 .hw.init = &(struct clk_init_data){ 131 .clkr.hw.init = &(struct clk_init_data){ 145 .clkr.hw.init = &(struct clk_init_data) { 168 .clkr.hw.init = &(struct clk_init_data){ 187 .clkr.hw.init = &(struct clk_init_data){ 210 .clkr.hw.init = &(struct clk_init_data){ 224 .clkr.hw.init = &(struct clk_init_data){ 240 .clkr.hw.init = &(struct clk_init_data){ 260 .clkr.hw.init = &(struct clk_init_data){ 274 .hw.init [all...] |
H A D | gpucc-sc7280.c | 39 .hw.init = &(struct clk_init_data){ 68 .hw.init = &(struct clk_init_data){ 122 .clkr.hw.init = &(struct clk_init_data){ 143 .clkr.hw.init = &(struct clk_init_data){ 155 .clkr.hw.init = &(struct clk_init_data) { 170 .clkr.hw.init = &(struct clk_init_data) { 187 .hw.init = &(struct clk_init_data){ 205 .hw.init = &(struct clk_init_data){ 223 .hw.init = &(struct clk_init_data){ 241 .hw.init [all...] |
H A D | gpucc-sm6350.c | 67 .hw.init = &(struct clk_init_data){ 82 .hw.init = &(struct clk_init_data){ 111 .hw.init = &(struct clk_init_data){ 168 .clkr.hw.init = &(struct clk_init_data){ 195 .clkr.hw.init = &(struct clk_init_data){ 210 .hw.init = &(struct clk_init_data){ 223 .hw.init = &(struct clk_init_data){ 236 .hw.init = &(struct clk_init_data){ 250 .hw.init = &(struct clk_init_data){ 263 .hw.init [all...] |
H A D | videocc-sdm845.c | 37 .hw.init = &(struct clk_init_data){ 78 .clkr.hw.init = &(struct clk_init_data){ 93 .hw.init = &(struct clk_init_data){ 106 .hw.init = &(struct clk_init_data){ 119 .hw.init = &(struct clk_init_data){ 132 .hw.init = &(struct clk_init_data){ 145 .hw.init = &(struct clk_init_data){ 158 .hw.init = &(struct clk_init_data){ 176 .hw.init = &(struct clk_init_data){ 189 .hw.init [all...] |
/third_party/python/Lib/ctypes/ |
H A D | __init__.py | 48 def create_string_buffer(init, size=None): 53 if isinstance(init, bytes): 55 size = len(init)+1 56 _sys.audit("ctypes.create_string_buffer", init, size) 59 buf.value = init 61 elif isinstance(init, int): 62 _sys.audit("ctypes.create_string_buffer", None, init) 63 buftype = c_char * init 66 raise TypeError(init) 275 def create_unicode_buffer(init, siz [all...] |
/kernel/linux/linux-5.10/drivers/clk/versatile/ |
H A D | clk-sp810.c | 88 struct clk_init_data init; in clk_sp810_of_setup() local 106 init.name = name; in clk_sp810_of_setup() 107 init.ops = &clk_sp810_timerclken_ops; in clk_sp810_of_setup() 108 init.flags = 0; in clk_sp810_of_setup() 109 init.parent_names = parent_names; in clk_sp810_of_setup() 110 init.num_parents = num; in clk_sp810_of_setup() 119 sp810->timerclken[i].hw.init = &init; in clk_sp810_of_setup() 128 init.ops->set_parent(&sp810->timerclken[i].hw, 1); in clk_sp810_of_setup()
|
/kernel/linux/linux-5.10/drivers/clk/tegra/ |
H A D | clk-tegra-super-cclk.c | 118 struct clk_init_data init; in tegra_clk_register_super_cclk() local 128 init.name = name; in tegra_clk_register_super_cclk() 129 init.flags = flags; in tegra_clk_register_super_cclk() 130 init.parent_names = parent_names; in tegra_clk_register_super_cclk() 131 init.num_parents = num_parents; in tegra_clk_register_super_cclk() 137 super->hw.init = &init; in tegra_clk_register_super_cclk() 140 init.ops = &tegra_cclk_super_mux_ops; in tegra_clk_register_super_cclk() 142 init.ops = &tegra_cclk_super_ops; in tegra_clk_register_super_cclk()
|
/kernel/linux/linux-6.6/include/kunit/ |
H A D | resource.h | 146 * @init: a user-supplied function to initialize the result (if needed). If 148 * If an init function is supplied, @data is passed to it instead. 151 * @data: value to pass to init function or set in resource data field. 154 kunit_resource_init_t init, 162 * @init: a user-supplied function to initialize the result (if needed). If 164 * If an init function is supplied, @data is passed to it instead. 167 * @data: value to pass to init function or set in resource data field. 170 kunit_resource_init_t init, in kunit_add_resource() 176 return __kunit_add_resource(test, init, free, res, data); in kunit_add_resource() 185 * @init 169 kunit_add_resource(struct kunit *test, kunit_resource_init_t init, kunit_resource_free_t free, struct kunit_resource *res, void *data) kunit_add_resource() argument 191 kunit_add_named_resource(struct kunit *test, kunit_resource_init_t init, kunit_resource_free_t free, struct kunit_resource *res, const char *name, void *data) kunit_add_named_resource() argument 237 kunit_alloc_and_get_resource(struct kunit *test, kunit_resource_init_t init, kunit_resource_free_t free, gfp_t internal_gfp, void *context) kunit_alloc_and_get_resource() argument 280 kunit_alloc_resource(struct kunit *test, kunit_resource_init_t init, kunit_resource_free_t free, gfp_t internal_gfp, void *context) kunit_alloc_resource() argument [all...] |
/kernel/linux/linux-6.6/drivers/clk/versatile/ |
H A D | clk-sp810.c | 89 struct clk_init_data init; in clk_sp810_of_setup() local 107 init.name = name; in clk_sp810_of_setup() 108 init.ops = &clk_sp810_timerclken_ops; in clk_sp810_of_setup() 109 init.flags = 0; in clk_sp810_of_setup() 110 init.parent_names = parent_names; in clk_sp810_of_setup() 111 init.num_parents = num; in clk_sp810_of_setup() 120 sp810->timerclken[i].hw.init = &init; in clk_sp810_of_setup() 129 init.ops->set_parent(&sp810->timerclken[i].hw, 1); in clk_sp810_of_setup()
|
/kernel/linux/linux-6.6/drivers/clk/tegra/ |
H A D | clk-tegra-super-cclk.c | 139 struct clk_init_data init; in tegra_clk_register_super_cclk() local 149 init.name = name; in tegra_clk_register_super_cclk() 150 init.flags = flags; in tegra_clk_register_super_cclk() 151 init.parent_names = parent_names; in tegra_clk_register_super_cclk() 152 init.num_parents = num_parents; in tegra_clk_register_super_cclk() 158 super->hw.init = &init; in tegra_clk_register_super_cclk() 161 init.ops = &tegra_cclk_super_mux_ops; in tegra_clk_register_super_cclk() 163 init.ops = &tegra_cclk_super_ops; in tegra_clk_register_super_cclk()
|
/kernel/linux/linux-5.10/arch/x86/mm/ |
H A D | init_64.c | 3 * linux/arch/x86_64/mm/init.c 21 #include <linux/init.h> 53 #include <asm/init.h> 62 #define DEFINE_POPULATE(fname, type1, type2, init) \ 64 type1##_t *arg1, type2##_t *arg2, bool init) \ 66 if (init) \ 72 DEFINE_POPULATE(p4d_populate, p4d, pud, init) 73 DEFINE_POPULATE(pgd_populate, pgd, p4d, init) 74 DEFINE_POPULATE(pud_populate, pud, pmd, init) 75 DEFINE_POPULATE(pmd_populate_kernel, pmd, pte, init) 448 phys_pte_init(pte_t *pte_page, unsigned long paddr, unsigned long paddr_end, pgprot_t prot, bool init) phys_pte_init() argument 502 phys_pmd_init(pmd_t *pmd_page, unsigned long paddr, unsigned long paddr_end, unsigned long page_size_mask, pgprot_t prot, bool init) phys_pmd_init() argument 587 phys_pud_init(pud_t *pud_page, unsigned long paddr, unsigned long paddr_end, unsigned long page_size_mask, pgprot_t _prot, bool init) phys_pud_init() argument 674 phys_p4d_init(p4d_t *p4d_page, unsigned long paddr, unsigned long paddr_end, unsigned long page_size_mask, pgprot_t prot, bool init) phys_p4d_init() argument 725 __kernel_physical_mapping_init(unsigned long paddr_start, unsigned long paddr_end, unsigned long page_size_mask, pgprot_t prot, bool init) __kernel_physical_mapping_init() argument [all...] |
/kernel/linux/linux-6.6/arch/x86/mm/ |
H A D | init_64.c | 3 * linux/arch/x86_64/mm/init.c 21 #include <linux/init.h> 54 #include <asm/init.h> 63 #define DEFINE_POPULATE(fname, type1, type2, init) \ 65 type1##_t *arg1, type2##_t *arg2, bool init) \ 67 if (init) \ 73 DEFINE_POPULATE(p4d_populate, p4d, pud, init) 74 DEFINE_POPULATE(pgd_populate, pgd, p4d, init) 75 DEFINE_POPULATE(pud_populate, pud, pmd, init) 76 DEFINE_POPULATE(pmd_populate_kernel, pmd, pte, init) 454 phys_pte_init(pte_t *pte_page, unsigned long paddr, unsigned long paddr_end, pgprot_t prot, bool init) phys_pte_init() argument 508 phys_pmd_init(pmd_t *pmd_page, unsigned long paddr, unsigned long paddr_end, unsigned long page_size_mask, pgprot_t prot, bool init) phys_pmd_init() argument 592 phys_pud_init(pud_t *pud_page, unsigned long paddr, unsigned long paddr_end, unsigned long page_size_mask, pgprot_t _prot, bool init) phys_pud_init() argument 675 phys_p4d_init(p4d_t *p4d_page, unsigned long paddr, unsigned long paddr_end, unsigned long page_size_mask, pgprot_t prot, bool init) phys_p4d_init() argument 726 __kernel_physical_mapping_init(unsigned long paddr_start, unsigned long paddr_end, unsigned long page_size_mask, pgprot_t prot, bool init) __kernel_physical_mapping_init() argument [all...] |
/kernel/linux/linux-5.10/lib/ |
H A D | atomic64_test.c | 10 #include <linux/init.h> 72 #define TEST_ARGS(bit, op, init, ret, expect, args...) \ 74 atomic##bit##_set(&v, init); \ 79 #define XCHG_FAMILY_TEST(bit, init, new) \ 81 FAMILY_TEST(TEST_ARGS, bit, xchg, init, init, new, new); \ 84 #define CMPXCHG_FAMILY_TEST(bit, init, new, wrong) \ 87 init, init, new, init, ne [all...] |
/kernel/linux/linux-6.6/drivers/fpga/ |
H A D | lattice-sysconfig.c | 92 struct gpio_desc *init = priv->init; in sysconfig_gpio_refresh() local 96 /* Enter init mode */ in sysconfig_gpio_refresh() 99 ret = sysconfig_poll_gpio(init, true); in sysconfig_gpio_refresh() 109 return sysconfig_poll_gpio(init, false); in sysconfig_gpio_refresh() 129 struct gpio_desc *init = priv->init; in sysconfig_refresh() local 132 if (program && init && done) in sysconfig_refresh() 355 struct gpio_desc *program, *init, *done; in sysconfig_probe() local 375 init in sysconfig_probe() [all...] |
/kernel/linux/linux-6.6/lib/ |
H A D | atomic64_test.c | 10 #include <linux/init.h> 72 #define TEST_ARGS(bit, op, init, ret, expect, args...) \ 74 atomic##bit##_set(&v, init); \ 79 #define XCHG_FAMILY_TEST(bit, init, new) \ 81 FAMILY_TEST(TEST_ARGS, bit, xchg, init, init, new, new); \ 84 #define CMPXCHG_FAMILY_TEST(bit, init, new, wrong) \ 87 init, init, new, init, ne [all...] |
/third_party/node/deps/undici/src/lib/fetch/ |
H A D | headers.js | 127 constructor (init) { 128 if (init instanceof HeadersList) { 129 this[kHeadersMap] = new Map(init[kHeadersMap]) 130 this[kHeadersSortedMap] = init[kHeadersSortedMap] 131 this.cookies = init.cookies === null ? null : [...init.cookies] 133 this[kHeadersMap] = new Map(init) 242 constructor (init = undefined) { 243 if (init === kConstruct) { 248 // The new Headers(init) constructo [all...] |
/kernel/linux/linux-5.10/drivers/clk/ |
H A D | clk-cdce925.c | 644 struct clk_init_data init; in cdce925_probe() local 699 init.ops = &cdce925_pll_ops; in cdce925_probe() 700 init.flags = 0; in cdce925_probe() 701 init.parent_names = &parent_name; in cdce925_probe() 702 init.num_parents = 1; in cdce925_probe() 712 init.name = pll_clk_name[i]; in cdce925_probe() 714 data->pll[i].hw.init = &init; in cdce925_probe() 748 init.ops = &cdce925_clk_y1_ops; in cdce925_probe() 749 init in cdce925_probe() [all...] |
/kernel/linux/linux-6.6/drivers/clk/ |
H A D | clk-cdce925.c | 640 struct clk_init_data init; in cdce925_probe() local 695 init.ops = &cdce925_pll_ops; in cdce925_probe() 696 init.flags = 0; in cdce925_probe() 697 init.parent_names = &parent_name; in cdce925_probe() 698 init.num_parents = 1; in cdce925_probe() 708 init.name = pll_clk_name[i]; in cdce925_probe() 710 data->pll[i].hw.init = &init; in cdce925_probe() 744 init.ops = &cdce925_clk_y1_ops; in cdce925_probe() 745 init in cdce925_probe() [all...] |
/kernel/linux/linux-5.10/drivers/clk/at91/ |
H A D | clk-master.c | 133 struct clk_init_data init; in at91_clk_register_master() local 144 init.name = name; in at91_clk_register_master() 145 init.ops = &master_ops; in at91_clk_register_master() 146 init.parent_names = parent_names; in at91_clk_register_master() 147 init.num_parents = num_parents; in at91_clk_register_master() 148 init.flags = 0; in at91_clk_register_master() 150 master->hw.init = &init; in at91_clk_register_master() 399 struct clk_init_data init; in at91_clk_sama7g5_register_master() local 412 init in at91_clk_sama7g5_register_master() [all...] |
H A D | clk-sam9x60-pll.c | 405 struct clk_init_data init; in sam9x60_clk_register_frac_pll() local 417 init.name = name; in sam9x60_clk_register_frac_pll() 418 init.parent_names = &parent_name; in sam9x60_clk_register_frac_pll() 419 init.num_parents = 1; in sam9x60_clk_register_frac_pll() 420 init.ops = &sam9x60_frac_pll_ops; in sam9x60_clk_register_frac_pll() 421 init.flags = CLK_SET_RATE_GATE; in sam9x60_clk_register_frac_pll() 423 init.flags |= CLK_IS_CRITICAL; in sam9x60_clk_register_frac_pll() 426 frac->core.hw.init = &init; in sam9x60_clk_register_frac_pll() 485 struct clk_init_data init; in sam9x60_clk_register_div_pll() local [all...] |
H A D | clk-peripheral.c | 102 struct clk_init_data init; in at91_clk_register_peripheral() local 113 init.name = name; in at91_clk_register_peripheral() 114 init.ops = &peripheral_ops; in at91_clk_register_peripheral() 115 init.parent_names = &parent_name; in at91_clk_register_peripheral() 116 init.num_parents = 1; in at91_clk_register_peripheral() 117 init.flags = 0; in at91_clk_register_peripheral() 120 periph->hw.init = &init; in at91_clk_register_peripheral() 422 struct clk_init_data init; in at91_clk_register_sam9x5_peripheral() local 433 init in at91_clk_register_sam9x5_peripheral() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/msm/adreno/ |
H A D | adreno_device.c | 32 .init = a2xx_gpu_init, 43 .init = a2xx_gpu_init, 54 .init = a2xx_gpu_init, 65 .init = a3xx_gpu_init, 76 .init = a3xx_gpu_init, 87 .init = a3xx_gpu_init, 98 .init = a3xx_gpu_init, 109 .init = a4xx_gpu_init, 120 .init = a4xx_gpu_init, 131 .init [all...] |
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | platinumfb.c | 31 #include <linux/init.h> 124 struct platinum_regvals *init; in platinumfb_set_par() local 135 init = platinum_reg_init[pinfo->vmode-1]; in platinumfb_set_par() 140 info->screen_base = pinfo->frame_buffer + init->fb_offset + offset; in platinumfb_set_par() 142 info->fix.smem_start = (pinfo->frame_buffer_phys) + init->fb_offset + offset; in platinumfb_set_par() 241 struct platinum_regvals *init; in set_platinum_clock() local 243 init = platinum_reg_init[pinfo->vmode-1]; in set_platinum_clock() 249 STORE_D2(7, init->clock_params[pinfo->clktype][0]); in set_platinum_clock() 250 STORE_D2(8, init->clock_params[pinfo->clktype][1]); in set_platinum_clock() 253 STORE_D2(4, init in set_platinum_clock() 269 struct platinum_regvals *init; platinum_set_hardware() local [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/verisilicon/ |
H A D | rockchip_vpu_hw.c | 500 .init = hantro_h264_dec_init, 506 .init = hantro_mpeg2_dec_init, 512 .init = hantro_vp8_dec_init, 526 .init = hantro_h264_dec_init, 532 .init = hantro_mpeg2_dec_init, 538 .init = hantro_vp8_dec_init, 552 .init = hantro_h264_dec_init, 558 .init = hantro_mpeg2_dec_init, 564 .init = hantro_vp8_dec_init, 578 .init [all...] |