Searched refs:partition (Results 1 - 25 of 73) sorted by relevance

123

/freebsd-11.0-release/contrib/gcclibs/include/
H A Dpartition.h1 /* List implementation of a partition of consecutive integers.
22 /* This package implements a partition of consecutive integers. The
26 on a partition are FIND, which takes an element, determines its
33 it is able to perform unions over all the classes in the partition
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
65 } *partition; typedef in typeref:struct:partition_def
67 extern partition partition_new (int);
68 extern void partition_delete (partition);
69 extern int partition_union (partition, in
[all...]
/freebsd-11.0-release/contrib/binutils/include/
H A Dpartition.h1 /* List implementation of a partition of consecutive integers.
22 /* This package implements a partition of consecutive integers. The
26 on a partition are FIND, which takes an element, determines its
33 it is able to perform unions over all the classes in the partition
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
65 } *partition; typedef in typeref:struct:partition_def
67 extern partition partition_new (int);
68 extern void partition_delete (partition);
69 extern int partition_union (partition, in
[all...]
/freebsd-11.0-release/contrib/gdb/include/
H A Dpartition.h1 /* List implementation of a partition of consecutive integers.
22 /* This package implements a partition of consecutive integers. The
26 on a partition are FIND, which takes an element, determines its
33 it is able to perform unions over all the classes in the partition
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
65 } *partition; typedef in typeref:struct:partition_def
67 extern partition partition_new PARAMS((int));
68 extern void partition_delete PARAMS((partition));
69 extern int partition_union PARAMS((partition,
[all...]
/freebsd-11.0-release/etc/
H A Dmac.conf16 default_labels process ?biba,?lomac,?mls,?partition,?sebsd
/freebsd-11.0-release/contrib/gcclibs/libiberty/
H A Dpartition.c1 /* List implementation of a partition of consecutive integers.
35 #include "partition.h"
39 /* Creates a partition of NUM_ELEMENTS elements. Initially each
42 partition
47 partition part = (partition)
61 /* Freeds a partition. */
64 partition_delete (partition part)
70 of partition PART. If ELEM1 and ELEM2 are already in the same
75 partition_union (partition par
[all...]
/freebsd-11.0-release/contrib/binutils/libiberty/
H A Dpartition.c1 /* List implementation of a partition of consecutive integers.
35 #include "partition.h"
39 /* Creates a partition of NUM_ELEMENTS elements. Initially each
42 partition
47 partition part = (partition)
61 /* Freeds a partition. */
64 partition_delete (partition part)
70 of partition PART. If ELEM1 and ELEM2 are already in the same
75 partition_union (partition par
[all...]
/freebsd-11.0-release/contrib/gperf/src/
H A Dsearch.h87 unsigned int count_possible_collisions (EquivalenceClass *partition, unsigned int c) const;
89 bool unchanged_partition (EquivalenceClass *partition, unsigned int c) const;
H A Dsearch.cc920 keywords. The equivalence classes partition the keyword set. (At the
921 beginning, the partition is the finest possible: each K is an equivalence
924 The partition before a step is always a refinement of the partition
926 We choose the steps in such a way that the partition really becomes
928 without changing the partition is better merged with the previous step,
956 /* The keyword set partition after this step. */
982 EquivalenceClass *partition = NULL; local
999 for (equclass = partition; equclass; equclass = equclass->_next)
1013 if (partition)
1040 delete_partition(EquivalenceClass *partition) argument
1055 count_possible_collisions(EquivalenceClass *partition, unsigned int c) const argument
1092 unchanged_partition(EquivalenceClass *partition, unsigned int c) const argument
1140 EquivalenceClass *partition = compute_partition (undetermined); local
[all...]
/freebsd-11.0-release/contrib/gcc/
H A DFREEBSD-libiberty17 partition.c \
32 partition.h \
/freebsd-11.0-release/contrib/binutils/bfd/
H A Dppcboot.c48 /* PPCbug partition table layout */
50 ppcboot_location_t partition_begin; /* partition begin */
51 ppcboot_location_t partition_end; /* partition end */
59 ppcboot_partition_t partition[4]; /* partition information */ member in struct:ppcboot_hdr
65 char partition_name[32]; /* partition name */
202 if (hdr.partition[0].partition_end.ind != PPC_IND)
437 long sector_begin = bfd_getl_signed_32 ((PTR) tdata->header.partition[i].sector_begin);
438 long sector_length = bfd_getl_signed_32 ((PTR) tdata->header.partition[i].sector_length);
441 if (!tdata->header.partition[
[all...]
/freebsd-11.0-release/sys/boot/common/
H A Ddisk.c283 int rc, slice, partition; local
298 partition = dev->d_partition;
303 * main partition table.
306 DEBUG("%s unit %d, slice %d, partition %d => %p (cached)",
322 DEBUG("%s unit %d, slice %d, partition %d => %p",
329 DEBUG("Can't read partition table");
336 partition >= 0) {
338 rc = ptable_getpart(od->table, &part, partition);
342 /* Try to get information about partition */
352 partition
487 int unit, slice, partition; local
[all...]
/freebsd-11.0-release/sbin/newfs/
H A Dnewfs.h111 * partition on the underlying media (file or disk). The value is used as
118 * partition offset itself when calling the underlying function, pwrite().
123 extern ufs2_daddr_t part_ofs; /* partition offset in blocks */
125 void mkfs (struct partition *, char *);
/freebsd-11.0-release/sys/i386/include/
H A Dbootinfo.h83 * adaptor (uba, mba, etc), unit number and partition number.
109 #define MAKEBOOTDEV(type, slice, unit, partition) \
111 ((unit) << B_UNITSHIFT) | ((partition) << B_PARTITIONSHIFT) | \
/freebsd-11.0-release/sys/boot/pc98/boot0.5/
H A Dboot.s48 movb partnum(%si), %al # %al = real partition number
97 # %cx: cylinder number of boot partition
98 # %si: pointer to partition table
101 shl %cl, %ax # %ax = partition number * 32
103 movw %ax, %si # %si = pointer to partition table
133 # Try to boot from default partition.
148 # Default partition is defined.
154 movb defpartnum, %al # %al = real partition number
157 movw %bx, curpartition # Store partition number
174 b_partn: .word 0 # Real partition numbe
[all...]
H A Ddisk.s52 # Copy partition table from buffer to parttable.
61 movw %di, %bx # %bx = offset to partition table
62 xorw %dx, %dx # %dx = partition number
92 # Read IPL and partition table in the current device.
139 # Restore default boot partition info.
296 parttable: .space 1024 # Copy of valid partition table
/freebsd-11.0-release/sys/sys/
H A Ddisklabel.h68 #define LABEL_PART 2 /* partition containing label */
69 #define RAW_PART 2 /* partition containing whole disk */
70 #define SWAP_PART 1 /* partition normally containing swap */
133 /* filesystem and partition information: */
137 struct partition { /* the partition table */ struct in struct:disklabel
138 u_int32_t p_size; /* number of sectors in partition */
209 * per-partition information.
224 #define FS_BOOT 13 /* partition contains bootstrap */
294 void bsd_partition_le_dec(u_char *ptr, struct partition *
[all...]
/freebsd-11.0-release/contrib/amd/amq/
H A Dpawd.c93 char partition[MAXPATHLEN]; local
104 /* Could be /a/server/disk/home/partition/user... */
109 /* Looking promising, next should be the partition name */
111 to = partition;
122 fprintf(stderr, "partition %s, username %s\n", partition, username);
146 if (strcmp(partition, hes_name)) return NULL;
/freebsd-11.0-release/sys/boot/uboot/lib/
H A Dlibuboot.h39 int partition; member in struct:uboot_devdesc::__anon7565::__anon7566
/freebsd-11.0-release/sys/boot/uboot/common/
H A Dmain.c176 * Parse a device string into type, unit, slice and partition numbers. A
182 * The returned values for slice and partition are interpreted by
192 * <type_name><unit>:<slice>.<partition> DEV_TYP_STOR
199 get_load_device(int *type, int *unit, int *slice, int *partition) argument
208 *partition = -1;
252 /* No slice and partition specification. */
275 /* No partition specification. */
289 /* No partition specification. */
293 *partition = strtol(p, &endp, 10);
300 /* Junk beyond partition numbe
311 char partition[32]; local
[all...]
/freebsd-11.0-release/sys/boot/i386/mbr/
H A Dmbr.s18 # A 512 byte MBR boot manager that simply boots the active partition.
42 # we load in the bootstrap from the partition to boot.
54 # Scan the partition table looking for an active entry. Note that %ch is
56 # the active partition in %si and scan the entire table to ensure that only
57 # one partition is marked active.
59 main: xorw %si,%si # No active partition
74 # Ok, we've found a possible active partition. Check to see that the drive
85 # Ok, now that we have a valid drive and partition entry, load the CHS from
86 # the partition entry and read the sector from the disk.
130 err_pt: movw $msg_pt,%si # "Invalid partition
[all...]
/freebsd-11.0-release/sbin/fdisk/
H A Dfdisk.c118 static int a_flag = 0; /* set active partition */
120 static int i_flag = 0; /* replace partition data */
122 static int u_flag = 0; /* update partition data */
130 * A list of partition types, probably outdated.
142 [0x09] = "AIX boot partition or Coherent",
155 [0x1b] = "ASUS Recovery partition (NTFS)",
184 [0x81] = "Minix since 1.4b, early Linux partition or Mitac disk manager",
211 [0xE1] = "DOS access or SpeedStor with 12-bit FAT extended partition",
213 [0xE4] = "SpeedStor with 16-bit FAT extended partition < 1024 cyl.",
219 [0xF4] = "SpeedStor large partition",
264 int partition = -1; local
1155 int status = 0, partition; local
1294 int status = 0, partition, i; local
[all...]
/freebsd-11.0-release/usr.sbin/bsdinstall/partedit/
H A Dscripted.c68 char *partition, *ap, *size = NULL, *type = NULL, *mount = NULL; local
116 while ((partition = strsep(&config, ",")) != NULL) {
117 while ((ap = strsep(&partition, " \t\n")) != NULL) {
162 fprintf(stderr, "Malformed partition setup "
/freebsd-11.0-release/gnu/usr.bin/cc/libiberty/
H A DMakefile19 partition.c pex-unix.c physmem.c safe-ctype.c splay-tree.c xexit.c \
/freebsd-11.0-release/sys/boot/i386/pmbr/
H A Dpmbr.s34 # A 512 byte PMBR boot manager that looks for a FreeBSD boot GPT partition
51 .set PART_ADDR,GPT_ADDR+SECSIZE # GPT partition array address
123 # Load a partition table sector from disk and look for a FreeBSD boot
124 # partition.
129 scan: movw %bx,%si # Compare partition UUID
133 jnz next_part # Didn't match, next partition
135 # We found a boot partition. Load it into RAM starting at 0x7c00.
137 movw %bx,%di # Save partition pointer in %di
162 # Move to the next partition. If we walk off the end of the sector, load
163 # the next sector. We assume that partition entrie
[all...]
/freebsd-11.0-release/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Derase_fn_imps.hpp129 const size_type left = partition(pred_t(pred));
226 partition(Pred pred) function in class:PB_DS_CLASS_C_DEC

Completed in 548 milliseconds

123