Searched refs:gpt (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/gpt-12/
H A DMakefile1 # $FreeBSD: src/sbin/gpt/Makefile,v 1.7.2.1.6.1 2010/02/10 00:26:20 kensmith Exp $
3 PROG= gpt
4 SRCS= add.c boot.c create.c destroy.c gpt.c label.c map.c migrate.c \
7 MAN= gpt.8
H A Drecover.c28 __FBSDID("$FreeBSD: src/sbin/gpt/recover.c,v 1.8.10.1 2010/02/10 00:26:20 kensmith Exp $");
40 #include "gpt.h"
57 map_t *gpt, *tpg; local
66 gpt = map_find(MAP_TYPE_PRI_GPT_HDR);
71 if (gpt == NULL && tpg == NULL) {
108 if (gpt != NULL && tpg == NULL) {
116 memcpy(tpg->map_data, gpt->map_data, secsz);
119 hdr->hdr_lba_alt = htole64(gpt->map_start);
126 } else if (gpt == NULL && tpg != NULL) {
127 gpt
[all...]
H A Dcreate.c28 __FBSDID("$FreeBSD: src/sbin/gpt/create.c,v 1.11.10.1 2010/02/10 00:26:20 kensmith Exp $");
40 #include "gpt.h"
59 map_t *gpt, *tpg; local
152 gpt = map_add(1LL, 1LL, MAP_TYPE_PRI_GPT_HDR, calloc(1, secsz));
155 if (gpt == NULL || tbl == NULL)
158 hdr = gpt->map_data;
166 hdr->hdr_lba_self = htole64(gpt->map_start);
188 gpt_write(fd, gpt);
199 memcpy(tpg->map_data, gpt->map_data, secsz);
202 hdr->hdr_lba_alt = htole64(gpt
[all...]
H A Dremove.c28 __FBSDID("$FreeBSD: src/sbin/gpt/remove.c,v 1.10.10.1 2010/02/10 00:26:20 kensmith Exp $");
40 #include "gpt.h"
62 map_t *gpt, *tpg; local
69 gpt = map_find(MAP_TYPE_PRI_GPT_HDR);
70 if (gpt == NULL) {
103 hdr = gpt->map_data;
119 gpt_write(fd, gpt);
H A Dboot.c32 __FBSDID("$FreeBSD: src/sbin/gpt/boot.c,v 1.2.2.1.6.1 2010/02/10 00:26:20 kensmith Exp $");
46 #include "gpt.h"
66 map_t *gpt, *tbl, *map; local
72 gpt = map_find(MAP_TYPE_PRI_GPT_HDR);
73 if (gpt == NULL) {
84 hdr = gpt->map_data;
H A Dmigrate.c28 __FBSDID("$FreeBSD: src/sbin/gpt/migrate.c,v 1.16.2.1.6.1 2010/02/10 00:26:20 kensmith Exp $");
41 #include "gpt.h"
151 map_t *gpt, *tpg; local
213 gpt = map_add(1LL, 1LL, MAP_TYPE_PRI_GPT_HDR, calloc(1, secsz));
216 if (gpt == NULL || tbl == NULL)
223 hdr = gpt->map_data;
231 hdr->hdr_lba_self = htole64(gpt->map_start);
296 gpt_write(fd, gpt);
302 memcpy(tpg->map_data, gpt->map_data, secsz);
305 hdr->hdr_lba_alt = htole64(gpt
[all...]
H A Dadd.c28 __FBSDID("$FreeBSD: src/sbin/gpt/add.c,v 1.15.2.1.6.1 2010/02/10 00:26:20 kensmith Exp $");
40 #include "gpt.h"
60 map_t *gpt, *tpg; local
67 gpt = map_find(MAP_TYPE_PRI_GPT_HDR);
69 if (gpt == NULL) {
89 hdr = gpt->map_data;
141 gpt_write(fd, gpt);
H A Dlabel.c28 __FBSDID("$FreeBSD: src/sbin/gpt/label.c,v 1.3.10.1 2010/02/10 00:26:20 kensmith Exp $");
40 #include "gpt.h"
64 map_t *gpt, *tpg; local
71 gpt = map_find(MAP_TYPE_PRI_GPT_HDR);
72 if (gpt == NULL) {
105 hdr = gpt->map_data;
121 gpt_write(fd, gpt);
H A Dgpt.h26 * $FreeBSD: src/sbin/gpt/gpt.h,v 1.11.2.1.6.1 2010/02/10 00:26:20 kensmith Exp $
37 #include <sys/gpt.h>
/macosx-10.10/emacs-93/emacs/src/
H A Dbuffer.h42 #define GPT (current_buffer->text->gpt)
121 #define BUF_GPT(buf) ((buf)->text->gpt)
362 + ((pos) >= (buf)->text->gpt ? (buf)->text->gap_size : 0))
412 EMACS_INT gpt; /* Char pos of gap in buffer. */
406 EMACS_INT gpt; /* Char pos of gap in buffer. */ member in struct:buffer_text

Completed in 117 milliseconds