Searched refs:parts (Results 26 - 50 of 58) sorted by relevance

123

/freebsd-11-stable/sbin/fdisk_pc98/
H A Dfdisk.c78 struct pc98_partition parts[8]; member in struct:mboot
256 partp = ((struct pc98_partition *) &mboot.parts) + i;
272 partp = (struct pc98_partition *) (&mboot.parts[0]);
356 partp = ((struct pc98_partition *) &mboot.parts) + i - 1;
391 partp = ((struct pc98_partition *) &mboot.parts) + i - 1;
423 (struct pc98_partition *)(&mboot.parts[0]);
437 ((struct pc98_partition *) &mboot.parts) + i - 1;
514 struct pc98_partition *partp = &mboot.parts[0];
908 partp = ((struct pc98_partition *) &mboot.parts) + i - 1;
/freebsd-11-stable/sbin/fdisk/
H A Dfdisk.c82 struct dos_partition parts[NDOSPART]; member in struct:mboot
347 partp = &mboot.parts[i];
368 partp = &mboot.parts[i];
384 partp = &mboot.parts[0];
466 print_part(&mboot.parts[i - 1]);
535 struct dos_partition *partp = &mboot.parts[0];
553 struct dos_partition *partp = &mboot.parts[i - 1];
625 struct dos_partition *partp = &mboot.parts[0];
899 &mboot.parts[i]);
914 &mboot.parts[
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp81 Therefore it has two 53-bit mantissa parts that aren't necessarily adjacent
174 /* A tight upper bound on number of parts required to hold the value
179 However, whilst the result may require only this many parts,
183 requires two parts to hold the single-part result). So we add an
471 lostFractionThroughTruncation(const APFloatBase::integerPart *parts, argument
477 lsb = APInt::tcLSB(parts, partCount);
485 APInt::tcExtractBit(parts, bits - 1))
493 shiftRight(APFloatBase::integerPart *dst, unsigned int parts, unsigned int bits) argument
497 lost_fraction = lostFractionThroughTruncation(dst, parts, bits);
499 APInt::tcShiftRight(dst, parts, bit
[all...]
H A DGraphWriter.cpp117 SmallVector<StringRef, 8> parts; local
118 Names.split(parts, '|');
119 for (auto Name : parts) {
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dposix1.exp16 Directory and filename parts of local variables
56 Directory and filename parts of local variables
102 Directory and filename parts of local variables
149 Directory and filename parts of local variables
H A Dposix1.mk72 "Directory and filename parts of local variables\n\
/freebsd-11-stable/contrib/libxo/xolint/
H A Dxolint.pl350 my @parts = split(/,/, $field[0]);
352 for (my $i = 1; $i <= $#parts; $i++) {
353 my $v = $parts[$i];
372 $field[0] = $parts[0] . $new;
/freebsd-11-stable/usr.bin/sort/
H A Dfile.c1491 merge_list_parts(struct sort_list **parts, size_t n, const char *fn) argument
1497 merge_sub_lists(parts, n, f_out);
1525 struct sort_list **parts; local
1529 parts = sort_malloc(sizeof(struct sort_list*) * nthreads);
1540 parts[i] = sort_malloc(sizeof(struct sort_list));
1541 parts[i]->list = list->list + cstart;
1542 parts[i]->memsize = 0;
1543 parts[i]->sub_list_pos = i;
1548 parts[i]->count = sz;
1550 parts[
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachOLinkingContext.cpp46 SmallVector<StringRef, 3> parts;
47 llvm::SplitString(str, parts, ".");
50 if (llvm::getAsUnsignedInteger(parts[0], 10, num))
56 if (parts.size() > 1) {
57 if (llvm::getAsUnsignedInteger(parts[1], 10, num))
64 if (parts.size() > 2) {
65 if (llvm::getAsUnsignedInteger(parts[2], 10, num))
81 SmallVector<StringRef, 5> parts;
82 llvm::SplitString(str, parts, ".");
85 if (llvm::getAsUnsignedInteger(parts[
[all...]
/freebsd-11-stable/libexec/bootpd/
H A Dreadfile.c1688 u_int32 parts[4], *pp;
1716 pp = parts;
1723 if (pp < (parts + 4)) {
1738 * the number of parts specified.
1740 n = pp - parts;
1743 value = parts[0];
1746 value = (parts[0] << 24) | (parts[1] & 0xFFFFFF);
1749 value = (parts[0] << 24) | ((parts[
1672 u_int32 parts[4], *pp; local
[all...]
/freebsd-11-stable/share/mk/
H A Dsrc.lua.mk19 # but parts of the src build that use it may have certain expectations that
/freebsd-11-stable/contrib/bmake/
H A Dtarg.c547 struct tm *parts; local
550 parts = localtime(&tm);
551 (void)strftime(buf, sizeof buf, "%k:%M:%S %b %d, %Y", parts);
/freebsd-11-stable/contrib/gcc/config/i386/
H A Di386.c1013 register parts instead of whole registers, so we may maintain just
5740 /* The unwind info consists of two parts: install the fafp as the cfa,
6118 /* Extract the parts of an RTL expression that is a valid memory address
6283 struct ix86_address parts;
6285 int ok = ix86_decompose_address (x, &parts);
6289 if (parts.base && GET_CODE (parts.base) == SUBREG)
6290 parts.base = SUBREG_REG (parts.base);
6291 if (parts
6268 struct ix86_address parts; local
6656 struct ix86_address parts; local
8401 struct ix86_address parts; local
12189 ix86_split_to_parts(rtx operand, rtx *parts, enum machine_mode mode) argument
13899 struct ix86_address parts; local
[all...]
/freebsd-11-stable/contrib/libxo/xohtml/external/
H A Djquery.js1917 var parts, attr, name,
1947 parts = key.split(".");
1948 parts[1] = parts[1] ? "." + parts[1] : "";
1951 data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]);
1959 return data === undefined && parts[1] ?
1960 this.data( parts[0] ) :
1966 args = [ parts[
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp1436 // different combinations of #ifdef. The index into parts[] is made up of
1442 raw_self_contained_string_ostream parts[NumParts]; local
1447 parts[0] << "typedef uint16_t mve_pred16_t;\n";
1448 parts[Float] << "typedef __fp16 float16_t;\n"
1454 raw_ostream &OS = parts[ST->requiresFloat() ? Float : 0];
1468 parts[0] << "\n";
1469 parts[Float] << "\n";
1495 raw_ostream &OS = parts[(Int.requiresFloat() ? Float : 0) |
1573 for (auto &part : parts)
1576 // Now we've finished accumulating bits and pieces into the parts[] arra
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1885 // generally a pointer to the base of an array of integer parts, representing
1886 // an unsigned bignum, and a count of how many parts there are.
1889 /// out higher parts.
1902 /// DST, of dstCOUNT parts, such that the bit srcLSB becomes the least
1918 static unsigned tcMSB(const WordType *parts, unsigned n);
1942 /// Otherwise DST is filled with the least significant DSTPARTS parts of the
1943 /// result, and if all of the omitted higher parts were zero return zero,
1951 /// filled with the least significant parts of the result. Returns one if
1973 unsigned parts);
1993 static WordType tcIncrement(WordType *dst, unsigned parts) {
[all...]
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound.spec108 - Using parts from ports collection entry by Jaap Akkerhuis.
/freebsd-11-stable/crypto/openssl/util/
H A Dadd_cr.pl83 * as the author of the parts of the library used.
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_prime.pl51 * as the author of the parts of the library used.
/freebsd-11-stable/sys/dev/hptmv/
H A Dvdevice.h264 struct fdisk_partition_table parts[4]; member in struct:_Master_Boot_Record
/freebsd-11-stable/contrib/subversion/
H A Dwin-tests.py427 parts = path.split(os.path.sep)
428 drive = parts[0].upper()
429 parts = parts[1:]
431 for part in parts:
/freebsd-11-stable/crypto/openssl/crypto/conf/
H A Dkeysets.pl73 * as the author of the parts of the library used.
/freebsd-11-stable/crypto/openssl/crypto/objects/
H A Dobj_dat.pl195 * as the author of the parts of the library used.
H A Dobjects.pl146 * as the author of the parts of the library used.
/freebsd-11-stable/usr.sbin/portsnap/portsnap/
H A Dportsnap.sh56 path -- Extract only parts of the tree starting with the given
802 # is equal to the old index for parts of the tree which we don't want to
803 # update, and equal to the new index for parts of the tree which gets updates.

Completed in 477 milliseconds

123