Searched refs:parts (Results 1 - 200 of 1208) sorted by relevance

1234567

/linux-4.4.14/arch/c6x/mm/
H A DMakefile2 # Makefile for the linux c6x-specific parts of the memory manager.
/linux-4.4.14/arch/cris/arch-v10/mm/
H A DMakefile2 # Makefile for the linux cris-specific parts of the memory manager.
/linux-4.4.14/arch/mips/jazz/
H A DMakefile2 # Makefile for the Jazz family specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-cayman/
H A DMakefile2 # Makefile for the Hitachi Cayman specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-dreamcast/
H A DMakefile2 # Makefile for the Sega Dreamcast specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-lboxre2/
H A DMakefile2 # Makefile for the L-BOX RE2 specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-microdev/
H A DMakefile2 # Makefile for the SuperH MicroDev specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-r2d/
H A DMakefile2 # Makefile for the RTS7751R2D specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-sdk7780/
H A DMakefile2 # Makefile for the SDK7780 specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-se/7206/
H A DMakefile2 # Makefile for the 7206 SolutionEngine specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-se/7343/
H A DMakefile2 # Makefile for the 7343 SolutionEngine specific parts of the kernel
H A Dsetup.c48 .parts = nor_flash_partitions,
/linux-4.4.14/arch/sh/boards/mach-se/770x/
H A DMakefile2 # Makefile for the 770x SolutionEngine specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-se/7751/
H A DMakefile2 # Makefile for the 7751 SolutionEngine specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-sh03/
H A DMakefile2 # Makefile for the Interface (CTP/PCI-SH03) specific parts of the kernel
/linux-4.4.14/arch/openrisc/mm/
H A DMakefile2 # Makefile for the linux openrisc-specific parts of the memory manager.
/linux-4.4.14/arch/cris/mm/
H A DMakefile2 # Makefile for the linux cris-specific parts of the memory manager.
/linux-4.4.14/arch/h8300/mm/
H A DMakefile2 # Makefile for the linux h8300-specific parts of the memory manager.
/linux-4.4.14/arch/ia64/pci/
H A DMakefile2 # Makefile for the ia64-specific parts of the pci bus
/linux-4.4.14/arch/alpha/mm/
H A DMakefile2 # Makefile for the linux alpha-specific parts of the memory manager.
/linux-4.4.14/arch/sh/boards/mach-hp6xx/
H A DMakefile2 # Makefile for the HP6xx specific parts of the kernel
/linux-4.4.14/block/
H A Dcmdline-parser.c78 static void free_subpart(struct cmdline_parts *parts) free_subpart() argument
82 while (parts->subpart) { free_subpart()
83 subpart = parts->subpart; free_subpart()
84 parts->subpart = subpart->next_subpart; free_subpart()
89 static int parse_parts(struct cmdline_parts **parts, const char *bdevdef) parse_parts() argument
98 *parts = NULL; parse_parts()
141 *parts = newparts; parse_parts()
150 void cmdline_parts_free(struct cmdline_parts **parts) cmdline_parts_free() argument
154 while (*parts) { cmdline_parts_free()
155 next_parts = (*parts)->next_parts; cmdline_parts_free()
156 free_subpart(*parts); cmdline_parts_free()
157 kfree(*parts); cmdline_parts_free()
158 *parts = next_parts; cmdline_parts_free()
163 int cmdline_parts_parse(struct cmdline_parts **parts, const char *cmdline) cmdline_parts_parse() argument
171 *parts = NULL; cmdline_parts_parse()
177 next_parts = parts; cmdline_parts_parse()
194 if (!*parts) { cmdline_parts_parse()
206 cmdline_parts_free(parts); cmdline_parts_parse()
211 struct cmdline_parts *cmdline_parts_find(struct cmdline_parts *parts, cmdline_parts_find() argument
214 while (parts && strncmp(bdev, parts->name, sizeof(parts->name))) cmdline_parts_find()
215 parts = parts->next_parts; cmdline_parts_find()
216 return parts; cmdline_parts_find()
225 int cmdline_parts_set(struct cmdline_parts *parts, sector_t disk_size, cmdline_parts_set() argument
233 for (subpart = parts->subpart; subpart; cmdline_parts_set()
H A Dpartition-generic.c478 if (state->parts[p].size) rescan_partitions()
488 size = state->parts[p].size; rescan_partitions()
492 from = state->parts[p].from; rescan_partitions()
521 if (state->parts[p].has_info) rescan_partitions()
522 info = &state->parts[p].info; rescan_partitions()
524 state->parts[p].flags, rescan_partitions()
525 &state->parts[p].info); rescan_partitions()
532 if (state->parts[p].flags & ADDPART_FLAG_RAID) rescan_partitions()
/linux-4.4.14/arch/mips/alchemy/devboards/
H A Dplatform.c172 struct mtd_partition *parts; db1x_register_norflash() local
180 parts = kzalloc(sizeof(struct mtd_partition) * 5, GFP_KERNEL); db1x_register_norflash()
181 if (!parts) db1x_register_norflash()
207 parts[i].offset = 0; db1x_register_norflash()
208 parts[i].name = "User FS"; db1x_register_norflash()
209 parts[i].size = size / 2; db1x_register_norflash()
213 parts[i].offset = MTDPART_OFS_APPEND; db1x_register_norflash()
214 parts[i].name = "User FS 2"; db1x_register_norflash()
215 parts[i].size = (size / 2) - (0x20000000 - 0x1fc00000); db1x_register_norflash()
218 parts[i].offset = MTDPART_OFS_APPEND; db1x_register_norflash()
219 parts[i].name = "YAMON"; db1x_register_norflash()
220 parts[i].size = YAMON_SIZE; db1x_register_norflash()
221 parts[i].mask_flags = MTD_WRITEABLE; db1x_register_norflash()
224 parts[i].offset = MTDPART_OFS_APPEND; db1x_register_norflash()
225 parts[i].name = "raw kernel"; db1x_register_norflash()
226 parts[i].size = 0x00400000 - YAMON_SIZE - YAMON_ENV_SIZE; db1x_register_norflash()
229 parts[i].offset = MTDPART_OFS_APPEND; db1x_register_norflash()
230 parts[i].name = "YAMON Env"; db1x_register_norflash()
231 parts[i].size = YAMON_ENV_SIZE; db1x_register_norflash()
232 parts[i].mask_flags = MTD_WRITEABLE; db1x_register_norflash()
236 parts[i].offset = MTDPART_OFS_APPEND; db1x_register_norflash()
237 parts[i].name = "User FS"; db1x_register_norflash()
238 parts[i].size = size / 2; db1x_register_norflash()
243 pfd->parts = parts; db1x_register_norflash()
260 kfree(parts); db1x_register_norflash()
/linux-4.4.14/arch/tile/mm/
H A DMakefile2 # Makefile for the linux tile-specific parts of the memory manager.
/linux-4.4.14/arch/xtensa/mm/
H A DMakefile2 # Makefile for the Linux/Xtensa-specific parts of the memory manager.
/linux-4.4.14/arch/mips/cobalt/
H A DMakefile2 # Makefile for the Cobalt micro systems family specific parts of the kernel
H A Dmtd.c36 .parts = cobalt_mtd_partitions,
/linux-4.4.14/drivers/mtd/
H A Dcmdlinepart.c36 * <size> and <offset> can be specified such that the parts are out of order
39 * The parts are assigned MTD numbers in the order they are specified in the
76 struct mtd_partition *parts; member in struct:cmdline_mtd_partition
102 struct mtd_partition *parts; newpart() local
175 parts = newpart(s + 1, &s, num_parts, this_part + 1, newpart()
177 if (IS_ERR(parts)) newpart()
178 return parts; newpart()
187 parts = kzalloc(alloc_size, GFP_KERNEL); newpart()
188 if (!parts) newpart()
190 extra_mem = (unsigned char *)(parts + *num_parts); newpart()
194 parts[this_part].size = size; newpart()
195 parts[this_part].offset = offset; newpart()
196 parts[this_part].mask_flags = mask_flags; newpart()
201 parts[this_part].name = extra_mem; newpart()
205 this_part, parts[this_part].name, parts[this_part].offset, newpart()
206 parts[this_part].size, parts[this_part].mask_flags)); newpart()
216 return parts; newpart()
229 struct mtd_partition *parts; mtdpart_setup_real() local
249 parts = newpart(p + 1, /* cmdline */ mtdpart_setup_real()
251 &num_parts, /* out: number of parts */ mtdpart_setup_real()
256 if (IS_ERR(parts)) { mtdpart_setup_real()
264 return PTR_ERR(parts); mtdpart_setup_real()
271 this_mtd->parts = parts; mtdpart_setup_real()
335 if (part->parts[i].offset == OFFSET_CONTINUOUS) parse_cmdline_partitions()
336 part->parts[i].offset = offset; parse_cmdline_partitions()
338 offset = part->parts[i].offset; parse_cmdline_partitions()
340 if (part->parts[i].size == SIZE_REMAINING) parse_cmdline_partitions()
341 part->parts[i].size = master->size - offset; parse_cmdline_partitions()
343 if (offset + part->parts[i].size > master->size) { parse_cmdline_partitions()
346 part->parts[i].size = master->size - offset; parse_cmdline_partitions()
348 offset += part->parts[i].size; parse_cmdline_partitions()
350 if (part->parts[i].size == 0) { parse_cmdline_partitions()
354 memmove(&part->parts[i], &part->parts[i + 1], parse_cmdline_partitions()
355 sizeof(*part->parts) * (part->num_parts - i)); parse_cmdline_partitions()
360 *pparts = kmemdup(part->parts, sizeof(*part->parts) * part->num_parts, parse_cmdline_partitions()
H A Dbcm63xxpart.c77 struct mtd_partition *parts; bcm63xx_parse_cfe_partitions() local
157 parts = kzalloc(sizeof(*parts) * nrparts + 10 * nrparts, GFP_KERNEL); bcm63xx_parse_cfe_partitions()
158 if (!parts) { bcm63xx_parse_cfe_partitions()
164 parts[curpart].name = "CFE"; bcm63xx_parse_cfe_partitions()
165 parts[curpart].offset = 0; bcm63xx_parse_cfe_partitions()
166 parts[curpart].size = cfelen; bcm63xx_parse_cfe_partitions()
174 parts[kernelpart].name = "kernel"; bcm63xx_parse_cfe_partitions()
175 parts[kernelpart].offset = kerneladdr; bcm63xx_parse_cfe_partitions()
176 parts[kernelpart].size = kernellen; bcm63xx_parse_cfe_partitions()
185 parts[rootfspart].name = "rootfs"; bcm63xx_parse_cfe_partitions()
186 parts[rootfspart].offset = rootfsaddr; bcm63xx_parse_cfe_partitions()
187 parts[rootfspart].size = rootfslen; bcm63xx_parse_cfe_partitions()
189 parts[rootfspart].size += sparelen; bcm63xx_parse_cfe_partitions()
193 parts[curpart].name = "nvram"; bcm63xx_parse_cfe_partitions()
194 parts[curpart].offset = master->size - nvramlen; bcm63xx_parse_cfe_partitions()
195 parts[curpart].size = nvramlen; bcm63xx_parse_cfe_partitions()
199 parts[curpart].name = "linux"; bcm63xx_parse_cfe_partitions()
200 parts[curpart].offset = cfelen; bcm63xx_parse_cfe_partitions()
201 parts[curpart].size = master->size - cfelen - nvramlen; bcm63xx_parse_cfe_partitions()
205 parts[i].name, parts[i].offset, parts[i].size); bcm63xx_parse_cfe_partitions()
210 *pparts = parts; bcm63xx_parse_cfe_partitions()
H A Dbcm47xxpart.c88 struct mtd_partition *parts; bcm47xxpart_parse() local
107 parts = kzalloc(sizeof(struct mtd_partition) * BCM47XXPART_MAX_PARTS, bcm47xxpart_parse()
109 if (!parts) bcm47xxpart_parse()
114 kfree(parts); bcm47xxpart_parse()
141 bcm47xxpart_add_part(&parts[curr_part++], "boot", bcm47xxpart_parse()
151 bcm47xxpart_add_part(&parts[curr_part++], "board_data", bcm47xxpart_parse()
158 bcm47xxpart_add_part(&parts[curr_part++], "factory", bcm47xxpart_parse()
166 bcm47xxpart_add_part(&parts[curr_part++], "POT", offset, bcm47xxpart_parse()
174 bcm47xxpart_add_part(&parts[curr_part++], "ML", offset, bcm47xxpart_parse()
189 bcm47xxpart_add_part(&parts[curr_part++], "firmware", bcm47xxpart_parse()
195 bcm47xxpart_add_part(&parts[curr_part++], bcm47xxpart_parse()
203 bcm47xxpart_add_part(&parts[curr_part++], bcm47xxpart_parse()
219 bcm47xxpart_add_part(&parts[curr_part++], bcm47xxpart_parse()
240 bcm47xxpart_add_part(&parts[curr_part++], "rootfs", bcm47xxpart_parse()
251 bcm47xxpart_add_part(&parts[curr_part++], "nvram", bcm47xxpart_parse()
266 bcm47xxpart_add_part(&parts[curr_part++], "board_data", bcm47xxpart_parse()
289 bcm47xxpart_add_part(&parts[curr_part++], "nvram", bcm47xxpart_parse()
303 parts[i + 1].offset : master->size; bcm47xxpart_parse()
305 parts[i].size = next_part_offset - parts[i].offset; bcm47xxpart_parse()
307 parts[trx_part].size = next_part_offset - bcm47xxpart_parse()
308 parts[trx_part].offset; bcm47xxpart_parse()
311 *pparts = parts; bcm47xxpart_parse()
H A Dredboot.c65 struct mtd_partition *parts; parse_redboot_partitions() local
228 parts = kzalloc(sizeof(*parts)*nrparts + nulllen + namelen, GFP_KERNEL); parse_redboot_partitions()
230 if (!parts) { parse_redboot_partitions()
235 nullname = (char *)&parts[nrparts]; parse_redboot_partitions()
247 parts[0].name = nullname; parse_redboot_partitions()
248 parts[0].size = fl->img->flash_base; parse_redboot_partitions()
249 parts[0].offset = 0; parse_redboot_partitions()
254 parts[i].size = fl->img->size; parse_redboot_partitions()
255 parts[i].offset = fl->img->flash_base; parse_redboot_partitions()
256 parts[i].name = names; parse_redboot_partitions()
263 parts[i].mask_flags = MTD_WRITEABLE; parse_redboot_partitions()
271 parts[i].offset = parts[i-1].size + parts[i-1].offset; parse_redboot_partitions()
272 parts[i].size = fl->next->img->flash_base - parts[i].offset; parse_redboot_partitions()
273 parts[i].name = nullname; parse_redboot_partitions()
281 *pparts = parts; parse_redboot_partitions()
H A Dafs.c168 struct mtd_partition *parts; parse_afs_partitions() local
208 parts = kzalloc(sz, GFP_KERNEL); parse_afs_partitions()
209 if (!parts) parse_afs_partitions()
212 str = (char *)(parts + idx); parse_afs_partitions()
237 parts[idx].name = str; parse_afs_partitions()
238 parts[idx].size = (iis.length + mtd->erasesize - 1) & ~(mtd->erasesize - 1); parse_afs_partitions()
239 parts[idx].offset = img_ptr; parse_afs_partitions()
240 parts[idx].mask_flags = 0; parse_afs_partitions()
243 idx, img_ptr, parts[idx].size / 1024, parse_afs_partitions()
251 kfree(parts); parse_afs_partitions()
252 parts = NULL; parse_afs_partitions()
255 *pparts = parts; parse_afs_partitions()
/linux-4.4.14/arch/unicore32/mm/
H A DMakefile2 # Makefile for the linux unicore-specific parts of the memory manager.
/linux-4.4.14/include/linux/
H A Dcmdline-parser.h33 void cmdline_parts_free(struct cmdline_parts **parts);
35 int cmdline_parts_parse(struct cmdline_parts **parts, const char *cmdline);
37 struct cmdline_parts *cmdline_parts_find(struct cmdline_parts *parts,
40 int cmdline_parts_set(struct cmdline_parts *parts, sector_t disk_size,
H A Dflex_array.h27 struct flex_array_part *parts[]; member in struct:flex_array::__anon12290::__anon12291
39 (FLEX_ARRAY_BASE_SIZE - offsetof(struct flex_array, parts))
H A Dpti.h16 * various parts in the system out through the Intel Penwell PTI port and
21 * This header file will allow other parts of the OS to use the
H A Dserial_sci.h9 * Generic header for SuperH (H)SCI(F) (used by sh/sh64 and related parts)
14 /* Serial Control Register (@ = not supported by all parts) */
H A Dkobject_ns.h13 * interface, ESPECIALLY the parts about reference counts and object
/linux-4.4.14/include/linux/mtd/
H A Dnand-gpio.h13 struct mtd_partition *parts; member in struct:gpio_nand_platdata
H A Dlatch-addr-flash.h26 struct mtd_partition *parts; member in struct:latch_addr_flash_data
H A Dphysmap.h32 struct mtd_partition *parts; member in struct:physmap_flash_data
/linux-4.4.14/arch/mips/dec/
H A DMakefile2 # Makefile for the DECstation family specific parts of the kernel
/linux-4.4.14/arch/mips/include/asm/mach-au1x00/
H A Dau1550nd.h11 struct mtd_partition *parts; member in struct:au1550nd_platdata
/linux-4.4.14/arch/s390/mm/
H A DMakefile2 # Makefile for the linux s390-specific parts of the memory manager.
/linux-4.4.14/arch/sh/boards/mach-highlander/
H A DMakefile2 # Makefile for the Highlander specific parts of the kernel
/linux-4.4.14/arch/m68k/mm/
H A DMakefile2 # Makefile for the linux m68k-specific parts of the memory manager.
/linux-4.4.14/arch/frv/mm/
H A DMakefile2 # Makefile for the arch-specific parts of the memory manager.
/linux-4.4.14/arch/ia64/mm/
H A DMakefile2 # Makefile for the ia64-specific parts of the memory manager.
/linux-4.4.14/arch/m32r/mm/
H A DMakefile2 # Makefile for the Linux M32R-specific parts of the memory manager.
/linux-4.4.14/block/partitions/
H A Dcmdline.c38 info = &state->parts[slot].info; add_part()
48 state->parts[slot].has_info = true; add_part()
71 struct cmdline_parts *parts; cmdline_partition() local
88 parts = cmdline_parts_find(bdev_parts, bdev); cmdline_partition()
89 if (!parts) cmdline_partition()
94 cmdline_parts_set(parts, disk_size, 1, add_part, (void *)state); cmdline_partition()
H A Dcheck.h18 } *parts; member in struct:parsed_partitions
46 p->parts[n].from = from; put_partition()
47 p->parts[n].size = size; put_partition()
H A Dcheck.c124 state->parts = vzalloc(nr * sizeof(state->parts[0])); allocate_partitions()
125 if (!state->parts) { allocate_partitions()
137 vfree(state->parts); free_partitions()
165 memset(state->parts, 0, state->limit * sizeof(state->parts[0])); check_partition()
H A Dsun.c109 state->parts[slot].flags = 0; sun_partition()
112 state->parts[slot].flags |= ADDPART_FLAG_RAID; sun_partition()
114 state->parts[slot].flags |= ADDPART_FLAG_WHOLEDISK; sun_partition()
H A Dsgi.c75 state->parts[slot].flags = ADDPART_FLAG_RAID; sgi_partition()
/linux-4.4.14/drivers/regulator/
H A Dqcom_rpm-regulator.c53 (((reg)->parts->fm.mask >> (reg)->parts->fm.shift) == 3)
61 const struct rpm_reg_parts *parts; member in struct:qcom_rpm_reg
211 vreg->parts->request_len); rpm_reg_write()
218 const struct rpm_reg_parts *parts = vreg->parts; rpm_reg_set_mV_sel() local
219 const struct request_member *req = &parts->mV; rpm_reg_set_mV_sel()
245 const struct rpm_reg_parts *parts = vreg->parts; rpm_reg_set_uV_sel() local
246 const struct request_member *req = &parts->uV; rpm_reg_set_uV_sel()
278 const struct rpm_reg_parts *parts = vreg->parts; rpm_reg_mV_enable() local
279 const struct request_member *req = &parts->mV; rpm_reg_mV_enable()
297 const struct rpm_reg_parts *parts = vreg->parts; rpm_reg_uV_enable() local
298 const struct request_member *req = &parts->uV; rpm_reg_uV_enable()
316 const struct rpm_reg_parts *parts = vreg->parts; rpm_reg_switch_enable() local
317 const struct request_member *req = &parts->enable_state; rpm_reg_switch_enable()
335 const struct rpm_reg_parts *parts = vreg->parts; rpm_reg_mV_disable() local
336 const struct request_member *req = &parts->mV; rpm_reg_mV_disable()
354 const struct rpm_reg_parts *parts = vreg->parts; rpm_reg_uV_disable() local
355 const struct request_member *req = &parts->uV; rpm_reg_uV_disable()
373 const struct rpm_reg_parts *parts = vreg->parts; rpm_reg_switch_disable() local
374 const struct request_member *req = &parts->enable_state; rpm_reg_switch_disable()
399 const struct rpm_reg_parts *parts = vreg->parts; rpm_reg_set_load() local
400 const struct request_member *req = &parts->ia; rpm_reg_set_load()
458 .parts = &rpm8660_ldo_parts,
468 .parts = &rpm8660_ldo_parts,
478 .parts = &rpm8660_smps_parts,
488 .parts = &rpm8660_ncp_parts,
493 .parts = &rpm8660_switch_parts,
504 .parts = &rpm8660_ldo_parts,
514 .parts = &rpm8660_ldo_parts,
524 .parts = &rpm8660_smps_parts,
531 .parts = &rpm8660_switch_parts,
542 .parts = &rpm8960_ldo_parts,
552 .parts = &rpm8960_ldo_parts,
562 .parts = &rpm8960_ldo_parts,
572 .parts = &rpm8960_smps_parts,
582 .parts = &rpm8960_smps_parts,
592 .parts = &rpm8960_ncp_parts,
597 .parts = &rpm8960_switch_parts,
605 .parts = &rpm8960_smps_parts,
647 rpm_reg_set(vreg, &vreg->parts->freq, i + 1); rpm_reg_of_parse_freq()
670 ret = rpm_reg_set(vreg, &vreg->parts->pd, 1); rpm_reg_of_parse()
677 if (vreg->parts->freq.mask) { rpm_reg_of_parse()
683 if (vreg->parts->pm.mask) { rpm_reg_of_parse()
687 ret = rpm_reg_set(vreg, &vreg->parts->pm, pwm); rpm_reg_of_parse()
694 if (vreg->parts->fm.mask) { rpm_reg_of_parse()
741 ret = rpm_reg_set(vreg, &vreg->parts->fm, force_mode); rpm_reg_of_parse()
/linux-4.4.14/include/linux/spi/
H A Dflash.h9 * @parts: optional array of mtd_partitions for static partitioning
15 * provide information about SPI flash parts (such as DataFlash) to
23 struct mtd_partition *parts; member in struct:flash_platform_data
H A Dds1305.h24 /* set only on ds1306 parts */
/linux-4.4.14/drivers/isdn/i4l/
H A DMakefile13 # Optional parts of multipart objects.
/linux-4.4.14/arch/sparc/mm/
H A DMakefile1 # Makefile for the linux Sparc-specific parts of the memory manager.
H A Dextable.c41 /* A range entry, skip both parts. */ search_extable()
/linux-4.4.14/arch/sh/boards/mach-se/7722/
H A DMakefile2 # Makefile for the HITACHI UL SolutionEngine 7722 specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-se/7724/
H A DMakefile2 # Makefile for the HITACHI UL SolutionEngine 7724 specific parts of the kernel
/linux-4.4.14/arch/sh/boards/mach-se/7780/
H A DMakefile2 # Makefile for the HITACHI UL SolutionEngine 7780 specific parts of the kernel
/linux-4.4.14/arch/m68k/include/asm/
H A Datari_stram.h14 /* functions called internally by other parts of the kernel */
H A Dmcfintc.h16 * Most of the older ColdFire parts use the same simple interrupt
18 * and 5407 parts.
46 * IMR bit position definitions. Not all ColdFire parts with this interrupt
H A Dcoldfire.h31 * The majority of ColdFire parts use an MBAR register to set
34 * parts have fixed addresses and the internal peripherals cannot
H A Dmcfgpio.h93 * Some parts have 8 bit ports, some have 16bit and some have 32bit; some have
110 /* These parts have GPIO organized by 8 bit ports */
119 /* These parts have GPIO organized by 16 bit ports */
128 /* These parts have GPIO organized by 32 bit ports */
145 * These parts have an 'Edge' Port module (external interrupt/GPIO) which uses
H A Dcacheflush_no.h52 * Some ColdFire parts implement separate instruction and data caches,
/linux-4.4.14/arch/metag/mm/
H A DMakefile2 # Makefile for the linux Meta-specific parts of the memory manager.
/linux-4.4.14/sound/soc/codecs/
H A Dadav80x.h2 * header file for ADAV80X parts
/linux-4.4.14/drivers/net/ethernet/sfc/
H A Dmtd.c66 int efx_mtd_add(struct efx_nic *efx, struct efx_mtd_partition *parts, efx_mtd_add() argument
73 part = (struct efx_mtd_partition *)((char *)parts + efx_mtd_add()
99 part = (struct efx_mtd_partition *)((char *)parts + efx_mtd_add()
109 struct efx_mtd_partition *parts, *part, *next; efx_mtd_remove() local
116 parts = list_first_entry(&efx->mtd_list, struct efx_mtd_partition, efx_mtd_remove()
122 kfree(parts); efx_mtd_remove()
H A Dsiena.c848 struct efx_mcdi_mtd_partition *parts, siena_mtd_get_fw_subtypes()
861 parts[i].fw_subtype = fw_subtype_list[parts[i].nvram_type]; siena_mtd_get_fw_subtypes()
868 struct efx_mcdi_mtd_partition *parts; siena_mtd_probe() local
880 parts = kcalloc(hweight32(nvram_types), sizeof(*parts), GFP_KERNEL); siena_mtd_probe()
881 if (!parts) siena_mtd_probe()
889 rc = siena_mtd_probe_partition(efx, &parts[n_parts], siena_mtd_probe()
900 rc = siena_mtd_get_fw_subtypes(efx, parts, n_parts); siena_mtd_probe()
904 rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); siena_mtd_probe()
907 kfree(parts); siena_mtd_probe()
847 siena_mtd_get_fw_subtypes(struct efx_nic *efx, struct efx_mcdi_mtd_partition *parts, size_t n_parts) siena_mtd_get_fw_subtypes() argument
/linux-4.4.14/arch/arm/include/asm/mach/
H A Dflash.h24 * parts: optional array of mtd_partitions for static partitioning
35 struct mtd_partition *parts; member in struct:flash_platform_data
/linux-4.4.14/include/uapi/linux/netfilter/
H A Dnf_conntrack_tuple_common.h10 /* The protocol-specific manipulable parts of the tuple: always in
/linux-4.4.14/include/linux/platform_data/
H A Dmtd-orion_nand.h14 struct mtd_partition *parts; member in struct:orion_nand_data
H A Dmtd-onenand-omap2.h23 struct mtd_partition *parts; member in struct:omap_onenand_platform_data
H A Dcyttsp4.h4 * For use with Cypress Txx3xx parts.
5 * Supported parts include:
H A Dmtd-mxc_nand.h29 struct mtd_partition *parts; /* partition table */ member in struct:mxc_nand_platform_data
30 int nr_parts; /* size of parts */
H A Dmtd-nand-pxa3xx.h40 const struct mtd_partition *parts[NUM_CHIP_SELECT]; member in struct:pxa3xx_nand_platform_data
H A Dpinctrl-adi2.h25 * @pint_assign: The 32-bit GPIO PINT registers can be divided into 2 parts. A
H A Datmel.h37 struct mtd_partition *parts; member in struct:atmel_nand_data
H A Dmtd-nand-omap2.h71 struct mtd_partition *parts; member in struct:omap_nand_platform_data
H A Dsimplefb.h36 * @red,green,blue: Offsets and sizes of the single RGB parts
H A Dmtd-davinci.h63 struct mtd_partition *parts; member in struct:davinci_nand_pdata
/linux-4.4.14/arch/s390/boot/
H A DMakefile2 # Makefile for the linux s390-specific parts of the memory manager.
/linux-4.4.14/arch/s390/boot/compressed/
H A Dvmlinux.lds.S10 /* Be careful parts of head_64.S assume startup_32 is at
/linux-4.4.14/arch/sh/include/asm/
H A Dtimex.h10 * Only parts using the legacy CPG code for their clock framework
H A Dpgtable.h96 * SH-X and lower (legacy) SuperH parts (SH-3, SH-4, some SH-4A) can't do page
100 * SH-X2 (SH7785) and later parts take this to the opposite end of the extreme,
/linux-4.4.14/arch/arm/mach-gemini/
H A Ddevices.c65 int platform_register_pflash(unsigned int size, struct mtd_partition *parts, platform_register_pflash() argument
88 pflash_platform_data.parts = parts; platform_register_pflash()
H A Dcommon.h28 struct mtd_partition *parts,
/linux-4.4.14/arch/mips/txx9/rbtx4939/
H A Dsetup.c383 static struct mtd_partition parts[4]; rbtx4939_mtd_init() local
392 parts[i].name = names[i]; rbtx4939_mtd_init()
393 parts[i].size = 0x400000; rbtx4939_mtd_init()
394 parts[i].offset = MTDPART_OFS_NXTBLK; rbtx4939_mtd_init()
402 parts[i].name = names[i]; rbtx4939_mtd_init()
403 parts[i].size = 0x400000; rbtx4939_mtd_init()
404 parts[i].offset = MTDPART_OFS_NXTBLK; rbtx4939_mtd_init()
409 parts[0].name = "boot"; rbtx4939_mtd_init()
410 parts[0].offset = 0xc00000; rbtx4939_mtd_init()
411 parts[0].size = 0x400000; rbtx4939_mtd_init()
412 parts[1].name = "user"; rbtx4939_mtd_init()
413 parts[1].offset = 0; rbtx4939_mtd_init()
414 parts[1].size = 0xc00000; rbtx4939_mtd_init()
416 boot_pdata->parts = parts; rbtx4939_mtd_init()
/linux-4.4.14/arch/arm/mach-omap2/
H A Dboard-flash.c61 board_nor_data.parts = nor_parts; board_nor_init()
95 board_onenand_data.parts = onenand_parts; board_onenand_init()
140 board_nand_data.parts = nand_parts; board_nand_init()
229 board_nor_init(partition_info[0].parts, board_flash_init()
235 board_onenand_init(partition_info[1].parts, board_flash_init()
241 board_nand_init(partition_info[2].parts, board_flash_init()
H A Dboard-flash.h22 struct mtd_partition *parts; member in struct:flash_partitions
/linux-4.4.14/arch/unicore32/include/asm/
H A Dcache.h21 * unrelated code may cause parts of the buffer to be read into the
/linux-4.4.14/arch/x86/boot/compressed/
H A Dvmlinux.lds.S20 /* Be careful parts of head_64.S assume startup_32 is at
/linux-4.4.14/fs/qnx4/
H A Dbitmap.c6 * Using parts of the xiafs filesystem.
H A Ddir.c6 * Using parts of the xiafs filesystem.
/linux-4.4.14/arch/arm/include/asm/
H A Dcache.h13 * unrelated code may cause parts of the buffer to be read into the
/linux-4.4.14/include/linux/mfd/abx500/
H A Dab8500-codec.h48 /* Platform data structure for the audio-parts of the AB8500 */
/linux-4.4.14/lib/
H A Dflex_array.c2 * Flexible array managed in PAGE_SIZE parts
36 * flex_array->parts[] array to store the user
113 memset(&ret->parts[0], FLEX_ARRAY_FREE, flex_array_alloc()
132 * @fa: the flex array from which to free parts
144 kfree(fa->parts[part_nr]); flex_array_free_parts()
168 struct flex_array_part *part = fa->parts[part_nr]; __fa_get_part()
176 fa->parts[part_nr] = part; __fa_get_part()
210 part = (struct flex_array_part *)&fa->parts[0]; flex_array_put()
241 part = (struct flex_array_part *)&fa->parts[0]; flex_array_clear()
244 part = fa->parts[part_nr]; flex_array_clear()
256 * @fa: the flex array for which to preallocate parts
325 part = (struct flex_array_part *)&fa->parts[0]; flex_array_get()
328 part = fa->parts[part_nr]; flex_array_get()
387 part = fa->parts[part_nr]; flex_array_shrink()
391 fa->parts[part_nr] = NULL; flex_array_shrink()
/linux-4.4.14/drivers/input/touchscreen/
H A Dcyttsp4_i2c.c4 * For use with Cypress Txx4xx parts.
5 * Supported parts include:
H A Dcyttsp_i2c.c4 * For use with Cypress Txx3xx parts.
5 * Supported parts include:
H A Dcyttsp_i2c_common.c4 * For use with Cypress Txx3xx and Txx4xx parts.
5 * Supported parts include:
H A Dcyttsp_core.h4 * For use with Cypress Txx3xx parts.
5 * Supported parts include:
H A Dcyttsp4_spi.c4 * For use with Cypress Txx4xx parts.
5 * Supported parts include:
H A Dcyttsp_spi.c4 * For use with Cypress Txx3xx parts.
5 * Supported parts include:
/linux-4.4.14/arch/mn10300/unit-asb2303/
H A Dflash.c50 .parts = asb2303_partitions,
73 .parts = asb2303_partitions,
/linux-4.4.14/arch/frv/mb93090-mb00/
H A Dflash.c40 .parts = mb93090_partitions,
63 .parts = mb93090_partitions,
/linux-4.4.14/arch/avr32/boards/merisc/
H A Dflash.c75 .parts = flash_0_parts,
80 .parts = flash_1_parts,
/linux-4.4.14/arch/blackfin/include/asm/
H A Dmem_map.h27 /* Most parts lack on-chip L2 SRAM */
33 /* Most parts lack on-chip L1 ROM */
/linux-4.4.14/include/linux/input/
H A Dcyttsp.h4 * For use with Cypress Txx3xx parts.
5 * Supported parts include:
/linux-4.4.14/drivers/mtd/maps/
H A Dvmu-flash.c49 struct vmupart *parts; member in struct:memcard
71 if (src_ofs >= card->parts[partition].numblocks * card->blocklen) ofs_to_block()
75 if (num > card->parts[partition].numblocks) ofs_to_block()
109 * caching the results so that other parts
126 pcache = card->parts[partition].pcache; maple_vmu_read_block()
368 numblocks = card->parts[partition].numblocks; vmu_flash_read()
374 pcache = card->parts[partition].pcache; vmu_flash_read()
434 numblocks = card->parts[partition].numblocks; vmu_flash_write()
471 pcache = card->parts[partition].pcache; vmu_flash_write()
523 part_cur = &card->parts[card->partition]; vmu_queryblocks()
582 kfree(((card->parts)[error]).pcache); vmu_queryblocks()
583 ((card->parts)[error]).pcache = NULL; vmu_queryblocks()
632 card->parts = kmalloc(sizeof(struct vmupart) * card->partitions, vmu_connect()
634 if (!card->parts) { vmu_connect()
686 kfree(card->parts); vmu_connect()
705 kfree(((card->parts)[x]).name); vmu_disconnect()
707 kfree(card->parts); vmu_disconnect()
/linux-4.4.14/drivers/mtd/nand/
H A Ddiskonchip.c1051 static inline int __init nftl_partscan(struct mtd_info *mtd, struct mtd_partition *parts) nftl_partscan() argument
1126 parts[0].name = " DiskOnChip Firmware / Media Header partition"; nftl_partscan()
1127 parts[0].offset = 0; nftl_partscan()
1128 parts[0].size = offs; nftl_partscan()
1132 parts[numparts].name = " DiskOnChip BDTL partition"; nftl_partscan()
1133 parts[numparts].offset = offs; nftl_partscan()
1134 parts[numparts].size = (mh->NumEraseUnits - numheaders) << this->bbt_erase_shift; nftl_partscan()
1136 offs += parts[numparts].size; nftl_partscan()
1140 parts[numparts].name = " DiskOnChip Remainder partition"; nftl_partscan()
1141 parts[numparts].offset = offs; nftl_partscan()
1142 parts[numparts].size = mtd->size - offs; nftl_partscan()
1153 static inline int __init inftl_partscan(struct mtd_info *mtd, struct mtd_partition *parts) inftl_partscan() argument
1241 parts[0].name = " DiskOnChip IPL / Media Header partition"; inftl_partscan()
1242 parts[0].offset = 0; inftl_partscan()
1243 parts[0].size = mtd->erasesize * ip->firstUnit; inftl_partscan()
1248 parts[numparts].name = " DiskOnChip BDK partition"; inftl_partscan()
1250 parts[numparts].name = " DiskOnChip BDTL partition"; inftl_partscan()
1251 parts[numparts].offset = ip->firstUnit << vshift; inftl_partscan()
1252 parts[numparts].size = (1 + ip->lastUnit - ip->firstUnit) << vshift; inftl_partscan()
1261 parts[numparts].name = " DiskOnChip Remainder partition"; inftl_partscan()
1262 parts[numparts].offset = lastvunit << vshift; inftl_partscan()
1263 parts[numparts].size = end - parts[numparts].offset; inftl_partscan()
1277 struct mtd_partition parts[2]; nftl_scan_bbt() local
1279 memset((char *)parts, 0, sizeof(parts)); nftl_scan_bbt()
1282 numparts = nftl_partscan(mtd, parts); nftl_scan_bbt()
1304 return mtd_device_register(mtd, parts, no_autopart ? 0 : numparts); nftl_scan_bbt()
1312 struct mtd_partition parts[5]; inftl_scan_bbt() local
1351 memset((char *)parts, 0, sizeof(parts)); inftl_scan_bbt()
1352 numparts = inftl_partscan(mtd, parts); inftl_scan_bbt()
1358 return mtd_device_register(mtd, parts, no_autopart ? 0 : numparts); inftl_scan_bbt()
/linux-4.4.14/drivers/scsi/
H A Deata_pio.h17 * Here you can switch parts of the code on and of *
/linux-4.4.14/arch/powerpc/mm/
H A DMakefile2 # Makefile for the linux ppc-specific parts of the memory manager.
/linux-4.4.14/arch/sparc/kernel/
H A Diommu_common.h32 * This is the hardwired shift in the iotlb tag/data parts.
/linux-4.4.14/arch/m68k/kernel/
H A Dm68k_ksyms.c19 * Simpler 68k and ColdFire parts also need a few other gcc functions.
/linux-4.4.14/arch/mips/ath79/
H A DMakefile2 # Makefile for the Atheros AR71XX/AR724X/AR913X specific parts of the kernel
/linux-4.4.14/arch/m68k/coldfire/
H A Dreset.c19 * There are 2 common methods amongst the ColdFure parts for reseting
H A Dintc-simr.c4 * Interrupt controller code for the ColdFire 5208, 5207 & 532x parts.
29 * The 520x parts only support a limited range of these external
46 * Most of the ColdFire parts with the EDGE Port module just have
H A Dintc.c38 * In the early version 2 core ColdFire parts the IMR register was 16 bits
39 * in size. Version 3 (and later version 2) core parts have a 32 bit
H A Dnettel.c118 * parts. Both parts power up decoding the same address, so we
H A Dfirebee.c57 .parts = firebee_flash_parts,
H A Dclk.c26 * For more advanced ColdFire parts that have clocks that can be enabled
/linux-4.4.14/arch/avr32/include/asm/
H A Dcache.h10 * unrelated code may cause parts of the buffer to be read into the
/linux-4.4.14/tools/power/cpupower/utils/helpers/
H A Dbitmask.h6 * Unfortunately it's not very widespread, therefore relevant parts are
/linux-4.4.14/arch/avr32/boards/mimc200/
H A Dflash.c70 .parts = flash_parts_system,
102 .parts = flash_parts_data,
/linux-4.4.14/arch/blackfin/kernel/
H A Dreboot.c19 * reset while the Core B bit (on dual core parts) is cleared by
57 /* Seems to be fixed with newer parts though ... */ bfin_reset()
/linux-4.4.14/arch/blackfin/lib/
H A Dmuldi3.S37 We also need to add high parts from lower-level results to higher ones:
40 One interesting property is that all parts of the result that depend
/linux-4.4.14/include/keys/
H A Drxrpc-type.h43 u8 n_name_parts; /* N of parts of the name part of the principal */
44 char **name_parts; /* parts of the name part of the principal */
45 char *realm; /* parts of the realm part of the principal */
/linux-4.4.14/arch/mips/txx9/generic/
H A Dsetup.c627 static struct mtd_partition parts[2]; txx9_physmap_flash_init() local
631 if (pdata->nr_parts == 0 && !pdata->parts && txx9_physmap_flash_init()
633 !parts[0].name) { txx9_physmap_flash_init()
634 parts[0].name = "boot"; txx9_physmap_flash_init()
635 parts[0].offset = 0x1fc00000 - addr; txx9_physmap_flash_init()
636 parts[0].size = addr + size - 0x1fc00000; txx9_physmap_flash_init()
637 parts[1].name = "user"; txx9_physmap_flash_init()
638 parts[1].offset = 0; txx9_physmap_flash_init()
639 parts[1].size = 0x1fc00000 - addr; txx9_physmap_flash_init()
641 pdata_part.nr_parts = ARRAY_SIZE(parts); txx9_physmap_flash_init()
642 pdata_part.parts = parts; txx9_physmap_flash_init()
/linux-4.4.14/drivers/mtd/chips/
H A Dfwh_lock.h22 * This locking/unlock is specific to firmware hub parts. Only one
24 * hub parts cannot be interleaved as they are on the LPC bus
/linux-4.4.14/arch/ia64/include/asm/sn/
H A Dmodule.h50 * A rack number consists of three parts:
72 * A rack number consists of three parts:
/linux-4.4.14/arch/arm/mach-pxa/
H A Dcm-x255.c149 .parts = cmx255_nor_partitions,
206 .parts = cmx255_nand_parts,
H A Dh5000.c74 .parts = h5000_flash0_partitions,
80 .parts = h5000_flash1_partitions,
/linux-4.4.14/arch/arm/mach-clps711x/
H A Dboard-cdb89712.c63 .parts = cdb89712_flash_partitions,
92 .parts = cdb89712_bootrom_partitions,
H A Dboard-autcpu12.c114 pdata->parts[0].size = SZ_16M; autcpu12_adjust_parts()
129 .parts = autcpu12_nand_parts,
179 .parts = autcpu12_flash_partitions,
/linux-4.4.14/drivers/usb/host/
H A Dehci-mem.c168 32 /* byte alignment (for hw parts) */, ehci_mem_init()
178 32 /* byte alignment (for hw parts) */, ehci_mem_init()
192 32 /* byte alignment (for hw parts) */, ehci_mem_init()
202 32 /* byte alignment (for hw parts) */, ehci_mem_init()
/linux-4.4.14/drivers/tty/
H A Dn_tracesink.h20 * various parts in the system out through the Intel Penwell PTI port and
/linux-4.4.14/drivers/media/common/b2c2/
H A Dflexcop-misc.c38 /* bus parts have to decide if hw pid filtering is used or not. */ flexcop_determine_revision()
/linux-4.4.14/drivers/iio/dac/
H A Dad5624r.h66 * The AD5624/44/64 parts are available in different
H A Dad5446.c316 * The AD5620/40/60 parts are available in different fixed internal reference
319 * parts are supported here.
519 * The AD5620/40/60 parts are available in different fixed internal reference
522 * parts are supported here.
/linux-4.4.14/drivers/gpu/drm/udl/
H A Dudl_encoder.c3 * based in parts on udlfb.c:
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dramnv20.c47 (*pram)->parts = (nvkm_rd32(device, 0x100200) & 0x00000003) + 1; nv20_ram_new()
H A Dramnv41.c47 (*pram)->parts = (nvkm_rd32(device, 0x100200) & 0x00000003) + 1; nv41_ram_new()
H A Dramnv49.c47 (*pram)->parts = (nvkm_rd32(device, 0x100200) & 0x00000003) + 1; nv49_ram_new()
H A Dnv25.c34 u32 tags = round_up(tiles / fb->ram->parts, 0x40); nv25_fb_tile_comp()
H A Dnv35.c34 u32 tags = round_up(tiles / fb->ram->parts, 0x40); nv35_fb_tile_comp()
H A Dnv36.c34 u32 tags = round_up(tiles / fb->ram->parts, 0x40); nv36_fb_tile_comp()
H A Dnv40.c34 u32 tags = round_up(tiles / fb->ram->parts, 0x100); nv40_fb_tile_comp()
H A Dramgf100.c567 u32 parts = nvkm_rd32(device, 0x022438); gf100_ram_ctor() local
576 nvkm_debug(subdev, "parts %08x mask %08x\n", parts, pmask); gf100_ram_ctor()
579 for (i = 0; i < parts; i++) { gf100_ram_ctor()
610 ((bsize * parts) - rsvd_head) >> gf100_ram_ctor()
618 (size - (bsize * parts) - rsvd_tail) >> gf100_ram_ctor()
/linux-4.4.14/drivers/net/wireless/hostap/
H A Dhostap_config.h31 /* Following defines can be used to remove unneeded parts of the driver, e.g.,
/linux-4.4.14/drivers/gpu/drm/msm/
H A Dmsm_ringbuffer.h33 /* ringbuffer helpers (the parts that are same for a3xx/a2xx/z180..) */
/linux-4.4.14/arch/c6x/include/asm/
H A Dirq.h7 * Large parts taken directly from powerpc.
/linux-4.4.14/arch/mips/include/asm/
H A Dfloppy.h2 * Architecture specific parts of the Floppy driver
/linux-4.4.14/arch/mips/include/asm/mach-lantiq/falcon/
H A Dlantiq_soc.h40 /* SYSCTL - start/stop/restart/configure/... different parts of the Soc */
/linux-4.4.14/arch/mips/include/asm/sn/
H A Darch.h46 * These macros are used by various parts of the kernel to convert
/linux-4.4.14/arch/s390/include/uapi/asm/
H A Dkvm_virtio.h53 /* The alignment to use between consumer and producer parts of vring.
/linux-4.4.14/arch/sh/boards/
H A Dboard-espt.c41 .parts = espt_nor_flash_partitions,
/linux-4.4.14/arch/sh/boards/mach-rsk/
H A Dsetup.c48 .parts = rsk_partitions,
/linux-4.4.14/arch/sh/mm/
H A Dtlbex_32.c32 * We don't take page faults for P1, P2, and parts of P4, these handle_tlbmiss()
H A DMakefile2 # Makefile for the Linux SuperH-specific parts of the memory manager.
H A Dtlb-urb.c4 * TLB entry wiring helpers for URB-equipped parts.
/linux-4.4.14/arch/sparc/include/asm/
H A Dpsr.h2 * psr.h: This file holds the macros for masking off various parts of
/linux-4.4.14/arch/sparc/include/uapi/asm/
H A Dpsr.h2 * psr.h: This file holds the macros for masking off various parts of
/linux-4.4.14/arch/cris/kernel/
H A Dprocess.c12 * This file handles the architecture-dependent parts of process handling..
/linux-4.4.14/arch/arm/nwfpe/
H A Dmilieu.h26 include prominent notice akin to these three paragraphs for those parts of
/linux-4.4.14/arch/arm64/include/asm/
H A Dcache.h27 * unrelated code may cause parts of the buffer to be read into the
/linux-4.4.14/arch/avr32/boards/atngw100/
H A Dflash.c63 .parts = flash_parts,
/linux-4.4.14/arch/avr32/boards/atstk1000/
H A Dflash.c63 .parts = flash_parts,
/linux-4.4.14/arch/avr32/boards/favr-32/
H A Dflash.c63 .parts = flash_parts,
/linux-4.4.14/arch/arm/mach-sa1100/
H A Dshannon.c48 .parts = shannon_partitions,
H A Dnanoengine.c57 .parts = nanoengine_partitions,
H A Dpleb.c96 .parts = pleb_partitions,
/linux-4.4.14/arch/arm/mach-ks8695/
H A Dboard-sg.c56 .parts = sg_mtd_partitions,
/linux-4.4.14/fs/f2fs/
H A Dextent_cache.c438 int parts = 0; /* # of parts current extent split into */ f2fs_update_extent_tree_range() local
449 parts = 1; f2fs_update_extent_tree_range()
453 if (parts) { f2fs_update_extent_tree_range()
466 parts++; f2fs_update_extent_tree_range()
477 if (parts) f2fs_update_extent_tree_range()
483 * if original extent is split into zero or two parts, extent f2fs_update_extent_tree_range()
487 if (parts != 1) { f2fs_update_extent_tree_range()
494 if (!parts && !list_empty(&en->list)) f2fs_update_extent_tree_range()
501 if (!parts) f2fs_update_extent_tree_range()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/ltc/
H A Dgm107.c106 const u32 parts = nvkm_rd32(device, 0x022438); gm107_ltc_oneinit() local
111 for (i = 0; i < parts; i++) { gm107_ltc_oneinit()
/linux-4.4.14/drivers/gpu/drm/omapdrm/
H A Domap_encoder.c35 * handles the 'active' parts, ie. anything the modifies the state
36 * of the hw, and the connector handles the 'read-only' parts, like
/linux-4.4.14/drivers/char/hw_random/
H A Dstm32-rng.c38 * At the time of writing STM32 parts max out at ~200MHz meaning a timeout
41 * timeout is enough to take us up to multi-GHz parts!
/linux-4.4.14/arch/parisc/math-emu/
H A Ddfcmp.c141 /* Equal first parts. Now we must use unsigned compares to dbl_fcmp()
168 /* Equal first parts. Now we must use unsigned compares to dbl_fcmp()
/linux-4.4.14/arch/arm/mach-ixp4xx/
H A Domixp-setup.c77 .parts = omixp_partitions,
81 .parts = NULL,
/linux-4.4.14/drivers/staging/lustre/lustre/ldlm/
H A Dldlm_plain.c48 * different "parts" of a resource to be locked concurrently. Example
/linux-4.4.14/drivers/s390/crypto/
H A Dzcrypt_cca_key.h37 * Three parts of interest here: the header, the private section and
91 * The first three parts (the only parts considered in this release)
323 /* key parts */ zcrypt_type6_crt_key()
/linux-4.4.14/drivers/mtd/onenand/
H A Dgeneric.c72 pdata ? pdata->parts : NULL, generic_onenand_probe()
/linux-4.4.14/drivers/mfd/
H A Dda9055-i2c.c60 * the PMIC and CODEC parts of this chip are instantiated separately as I2C
/linux-4.4.14/drivers/net/wireless/libertas/
H A Dethtool.c27 * All 8388 parts have 16KiB EEPROM size at the time of writing.
/linux-4.4.14/arch/cris/arch-v10/kernel/
H A Dsetup.c10 * This file handles the architecture-dependent parts of initialization
/linux-4.4.14/fs/ext4/
H A Dext4_extents.h218 * combine low and high parts of physical block number into ext4_fsblk_t
231 * combine low and high parts of a leaf physical block number into ext4_fsblk_t
245 * breaking it into parts
258 * breaking it into parts
/linux-4.4.14/include/uapi/linux/
H A Dmeye.h12 * Some parts borrowed from various video4linux drivers, especially
H A Dpktcdvd.h43 * No user-servicable parts beyond this point ->
/linux-4.4.14/arch/powerpc/include/asm/
H A Dmpc85xx.h19 /* Some parts define SVR[0:23] as the SOC version */
/linux-4.4.14/arch/mips/bcm63xx/
H A Ddev-flash.c37 .parts = mtd_partitions,
/linux-4.4.14/arch/mips/mti-malta/
H A Dmalta-platform.c111 .parts = malta_mtd_partitions
/linux-4.4.14/arch/arm/mach-orion5x/
H A Drd88f6183ap-ge-setup.c67 .parts = rd88f6183ap_ge_partitions,
/linux-4.4.14/arch/arm/mach-s3c24xx/
H A Dpm-s3c2412.c55 /* mapping of interrupts to parts of the wakeup mask */
/linux-4.4.14/tools/testing/selftests/powerpc/pmu/ebb/
H A Dcycles_with_freeze_test.c15 * parts of the code. This is complicated by the fact that FC is set by the
/linux-4.4.14/drivers/media/usb/dvb-usb-v2/
H A Danysee.c392 * parts: DNOS404ZH102A(MT352, DTT7579(?))
396 * parts: DNOS404ZH103A(ZL10353, DTT7579(?))
402 * parts: DNOS404ZH103A(ZL10353, DTT7579(?)), CST56I01
411 * parts: TDA10023, DTOS403IH102B TM, CST56I01
418 * parts: BS2N10WCC01(CX24116, CX24118), ISL6423, TDA8024
425 * parts: TDA10023, DTOS403IH102B TM, TDA8024
433 * parts: ZL10353, TDA10023, DTOS403IH102B TM, TDA8024
447 * parts: ZL10353, TDA10023, DNOD44CDH086A(TDA18212)
463 * parts: DNBU10512IST(STV0903, STV6110), ISL6423
471 * parts: DNOQ44QCH106A(CXD2820R, TDA18212), TDA8024
479 * parts: ZL10353, TDA10023, DNOD44CDH086A(TDA18212)
495 * parts: DNBU10512IST(STV0903, STV6110), ISL6423
/linux-4.4.14/arch/blackfin/mach-bf533/boards/
H A Dezkit.c90 .parts = ezkit_partitions_a,
120 .parts = ezkit_partitions_b,
205 .parts = bfin_spi_flash_partitions,
/linux-4.4.14/drivers/firmware/efi/
H A Dfake_mem.c82 /* split into 2 parts */ efi_fake_memmap()
87 /* split into 3 parts */ efi_fake_memmap()
90 /* split into 2 parts */ efi_fake_memmap()

Completed in 4815 milliseconds

1234567