Home
last modified time | relevance | path

Searched refs:gpp (Results 1 – 15 of 15) sorted by relevance

/freebsd/sys/geom/part/
H A Dg_part.c722 g_part_ctl_add(struct gctl_req *req, struct g_part_parms *gpp) in g_part_ctl_add() argument
733 gp = gpp->gpp_geom; in g_part_ctl_add()
739 end = gpp->gpp_start + gpp->gpp_size - 1; in g_part_ctl_add()
741 if (gpp->gpp_start < table->gpt_first || in g_part_ctl_add()
742 gpp->gpp_start > table->gpt_last) { in g_part_ctl_add()
744 (intmax_t)gpp->gpp_start); in g_part_ctl_add()
747 if (end < gpp->gpp_start || end > table->gpt_last) { in g_part_ctl_add()
749 (intmax_t)gpp->gpp_size); in g_part_ctl_add()
752 if (gpp->gpp_index > table->gpt_entries) { in g_part_ctl_add()
753 gctl_error(req, "%d index '%d'", EINVAL, gpp->gpp_index); in g_part_ctl_add()
[all …]
H A Dg_part_bsd.c156 struct g_part_parms *gpp) in g_part_bsd_add() argument
161 if (gpp->gpp_parms & G_PART_PARM_LABEL) in g_part_bsd_add()
167 entry->part.p_size = gpp->gpp_size; in g_part_bsd_add()
168 entry->part.p_offset = gpp->gpp_start + table->offset; in g_part_bsd_add()
172 return (bsd_parse_type(gpp->gpp_type, &entry->part.p_fstype)); in g_part_bsd_add()
176 g_part_bsd_bootcode(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_bsd_bootcode() argument
181 if (gpp->gpp_codesize != BOOT1_SIZE && gpp->gpp_codesize != BBSIZE) in g_part_bsd_bootcode()
185 codeptr = gpp->gpp_codeptr; in g_part_bsd_bootcode()
187 if (gpp->gpp_codesize == BBSIZE) in g_part_bsd_bootcode()
194 g_part_bsd_create(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_bsd_create() argument
[all …]
H A Dg_part_apm.c212 struct g_part_parms *gpp) in g_part_apm_add() argument
222 entry->ent.ent_start = gpp->gpp_start; in g_part_apm_add()
223 entry->ent.ent_size = gpp->gpp_size; in g_part_apm_add()
228 error = apm_parse_type(gpp->gpp_type, entry->ent.ent_type, in g_part_apm_add()
232 if (gpp->gpp_parms & G_PART_PARM_LABEL) { in g_part_apm_add()
233 if (strlen(gpp->gpp_label) > sizeof(entry->ent.ent_name)) in g_part_apm_add()
235 strncpy(entry->ent.ent_name, gpp->gpp_label, in g_part_apm_add()
248 g_part_apm_create(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_apm_create() argument
259 pp = gpp->gpp_provider; in g_part_apm_create()
284 g_part_apm_destroy(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_apm_destroy() argument
[all …]
H A Dg_part_mbr.c235 struct g_part_parms *gpp) in g_part_mbr_add() argument
240 if (gpp->gpp_parms & G_PART_PARM_LABEL) in g_part_mbr_add()
244 start = gpp->gpp_start; in g_part_mbr_add()
245 size = gpp->gpp_size; in g_part_mbr_add()
261 return (mbr_parse_type(gpp->gpp_type, &entry->ent.dp_typ)); in g_part_mbr_add()
265 g_part_mbr_bootcode(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_mbr_bootcode() argument
270 if (gpp->gpp_codesize != MBRSIZE) in g_part_mbr_bootcode()
275 bcopy(gpp->gpp_codeptr, table->mbr, DOSPARTOFF); in g_part_mbr_bootcode()
276 if (dsn != 0 && !gpp->gpp_skip_dsn) in g_part_mbr_bootcode()
282 g_part_mbr_create(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_mbr_create() argument
[all …]
H A Dg_part_ebr.c246 struct g_part_parms *gpp) in g_part_ebr_add() argument
254 if (gpp->gpp_parms & G_PART_PARM_LABEL) in g_part_ebr_add()
259 start = gpp->gpp_start; in g_part_ebr_add()
260 size = gpp->gpp_size; in g_part_ebr_add()
284 return (ebr_parse_type(gpp->gpp_type, &entry->ent.dp_typ)); in g_part_ebr_add()
316 g_part_ebr_create(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_ebr_create() argument
324 pp = gpp->gpp_provider; in g_part_ebr_create()
354 g_part_ebr_destroy(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_ebr_destroy() argument
396 struct g_part_entry *baseentry, struct g_part_parms *gpp) in g_part_ebr_modify() argument
400 if (gpp->gpp_parms & G_PART_PARM_LABEL) in g_part_ebr_modify()
[all …]
H A Dg_part_bsd64.c272 struct g_part_parms *gpp) in g_part_bsd64_add() argument
276 if (gpp->gpp_parms & G_PART_PARM_LABEL) in g_part_bsd64_add()
280 if (bsd64_parse_type(gpp->gpp_type, entry) != 0) in g_part_bsd64_add()
287 g_part_bsd64_bootcode(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_bsd64_bootcode() argument
299 g_part_bsd64_create(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_bsd64_create() argument
307 pp = gpp->gpp_provider; in g_part_bsd64_create()
356 g_part_bsd64_destroy(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_bsd64_destroy() argument
427 struct g_part_entry *baseentry, struct g_part_parms *gpp) in g_part_bsd64_modify() argument
431 if (gpp->gpp_parms & G_PART_PARM_LABEL) in g_part_bsd64_modify()
435 if (gpp->gpp_parms & G_PART_PARM_TYPE) in g_part_bsd64_modify()
[all …]
H A Dg_part_gpt.c653 struct g_part_parms *gpp) in g_part_gpt_add() argument
659 error = gpt_parse_type(gpp->gpp_type, &entry->ent.ent_type); in g_part_gpt_add()
669 if (gpp->gpp_parms & G_PART_PARM_LABEL) in g_part_gpt_add()
670 g_gpt_utf8_to_utf16(gpp->gpp_label, entry->ent.ent_name, in g_part_gpt_add()
677 g_part_gpt_bootcode(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_gpt_bootcode() argument
685 codesz = MIN(codesz, gpp->gpp_codesize); in g_part_gpt_bootcode()
687 bcopy(gpp->gpp_codeptr, table->mbr, codesz); in g_part_gpt_bootcode()
692 g_part_gpt_create(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_gpt_create() argument
703 pp = gpp->gpp_provider; in g_part_gpt_create()
723 g_gpt_set_defaults(basetable, pp, gpp); in g_part_gpt_create()
[all …]
H A Dg_part_if.m122 struct g_part_parms *gpp;
137 struct g_part_parms *gpp;
143 struct g_part_parms *gpp;
149 struct g_part_parms *gpp;
188 struct g_part_parms *gpp;
203 struct g_part_parms *gpp;
225 struct g_part_parms *gpp;
H A Dg_part_ldm.c1119 struct g_part_parms *gpp) in g_part_ldm_add() argument
1126 g_part_ldm_bootcode(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_ldm_bootcode() argument
1133 g_part_ldm_create(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_ldm_create() argument
1140 g_part_ldm_destroy(struct g_part_table *basetable, struct g_part_parms *gpp) in g_part_ldm_destroy() argument
1198 struct g_part_entry *baseentry, struct g_part_parms *gpp) in g_part_ldm_modify() argument
/freebsd/sys/geom/zero/
H A Dg_zero.c56 static struct g_provider *gpp; variable
66 if (gpp == NULL) in g_zero_clear_sysctl()
69 gpp->flags &= ~G_PF_ACCEPT_UNMAPPED; in g_zero_clear_sysctl()
71 gpp->flags |= G_PF_ACCEPT_UNMAPPED; in g_zero_clear_sysctl()
108 gpp = pp = g_new_providerf(gp, "%s", gp->name); in g_zero_init()
131 gpp = NULL; in g_zero_destroy_geom()
/freebsd/contrib/file/magic/Magdir/
H A Danimation57 !:mime video/3gpp
64 !:mime video/3gpp
68 !:mime video/3gpp
71 !:mime video/3gpp
74 !:mime video/3gpp
83 !:mime video/3gpp
87 !:mime video/3gpp
92 !:mime video/3gpp
/freebsd/sys/contrib/device-tree/src/arm/samsung/
H A Ds3c64xx-pinctrl.dtsi116 gpp: gpp-gpio-bank { label
/freebsd/contrib/ncurses/
H A Daclocal.m4665 #include <gpp/builtin.h>
689 #include <gpp/builtin.h>
3624 cf_gpp_libname=gpp
3641 AC_DEFINE(HAVE_GPP_BUILTIN_H,1,[Define to 1 if we have gpp builtin.h])
H A Dconfigure3219 for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC
3258 for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC
25548 cf_gpp_libname=gpp
/freebsd/share/misc/
H A Dpci_vendors2119 597a RD790 PCI to PCI bridge (PCI express gpp port A)
2120 597b RX780/RD790 PCI to PCI bridge (PCI express gpp port B)
2121 597c RD790 PCI to PCI bridge (PCI express gpp port C)
2122 597d RX780/RD790 PCI to PCI bridge (PCI express gpp port D)
2123 597e RD790 PCI to PCI bridge (PCI express gpp port E)
2125 597f RD790 PCI to PCI bridge (PCI express gpp port F)
2136 5a15 RD890 PCI to PCI bridge (PCI express gpp port A)