Searched refs:spare (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.10/less-25/less/
H A Dlinenum.c68 static struct linenum_info *spare; /* We always keep one spare entry */ variable in typeref:struct:linenum_info
84 * Leave one for the "spare".
91 spare = &pool[NPOOL-1];
159 * Use the "spare" entry.
161 new = spare;
162 spare = NULL;
184 if (spare == NULL)
187 * We have used the spare entry.
189 * gap, take it out and make it the spare
[all...]
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_entry_link_resolver.c81 struct links_entry *spare; member in struct:archive_entry_linkresolver
257 if (res->spare != NULL) {
258 archive_entry_free(res->spare->canonical);
259 archive_entry_free(res->spare->entry);
260 free(res->spare);
261 res->spare = NULL;
296 res->spare = le;
310 if (res->spare != NULL) {
311 archive_entry_free(res->spare->canonical);
312 free(res->spare);
[all...]
/macosx-10.10/BerkeleyDB-21/db/dbinc/
H A Dcrypto.h50 u_int8_t spare[3]; /* Spares */ member in struct:__db_cipher
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dgmon.h77 int32_t spare[3]; /* reserved */ member in struct:gmonhdr
87 int32_t spare[3]; /* reserved */ member in struct:gmonhdr_64
H A Dcodesign.h171 uint64_t spare; // reserved member in struct:__SC_Scatter
/macosx-10.10/BerkeleyDB-21/db/dbinc_auto/
H A Dtxn_auto.h46 u_int32_t spare; member in struct:___txn_ckp_args
/macosx-10.10/tcpdump-61/tcpdump/
H A Drx.h86 u_int16_t spare; /* How clever: even though the AFS */ member in struct:rx_header
89 /* encoded _after_ the spare field */
/macosx-10.10/BerkeleyDB-21/db/txn/
H A Dtxn.src60 * Renamed to 'spare' in 4.6.
74 ARG spare u_int32_t lu
H A Dtxn_auto.c367 LOGCOPY_32(env, &argp->spare, bp);
368 bp += sizeof(argp->spare);
380 ckp_lsn, last_ckp, timestamp, envid, spare)
389 u_int32_t spare;
495 LOGCOPY_32(env, bp, &spare);
496 bp += sizeof(spare);
H A Dtxn_autop.c198 (void)printf("\tspare: %lu\n", (u_long)argp->spare);
/macosx-10.10/curl-83.1.2/curl/src/
H A Dtool_vms.c202 const int spare[8] = {0}; variable
/macosx-10.10/libunwind-35.3/testsuite/
H A Ddynamic_fde_registration.cxx40 unsigned spare[2]; member in struct:libgcc_object_info
/macosx-10.10/AppleRAID-4.0.6/
H A DAppleRAIDSet.cpp140 // this is only in v2 headers, the spare list is built on the fly
209 IOLog1("AppleRAIDSet::addSpare(%p) entered, spare count was %u.\n", member, (uint32_t)getSpareCount());
232 // deal with spare members separately
408 // update member & spare uuid lists in raid headers, only for v2 headers
795 // drag member back to spare list, keeping it attached, ** active count doesn't change **
806 while (AppleRAIDMember * spare = (AppleRAIDMember *)iter->getNextObject()) {
807 (void)spare->zeroRAIDHeader();
826 // make a copy since this changes the spare list
829 while (AppleRAIDMember * spare = (AppleRAIDMember *)copy->getAnyObject()) {
830 copy->removeObject(spare);
[all...]
H A Dartest.c70 printf("artest --spare <set uuid> disk1s3 ...\n");
991 bool modify = false, remove = false, spare = false, watch = false; local
1004 { "spare", required_argument, 0, 's' },
1063 spare = true;
1138 if (!add && !create && !destroy && !erase && !header && !list && !modify && !remove && !spare && !watch &&
1224 if (spare) addMember(setName, CFSTR(kAppleRAIDSparesKey), argc, argv);
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/
H A DbyteRep.c155 ENC_INT(0, buf, numBytes, i); // spare
185 ENC_INT(0, buf, numBytes, i); // spare
219 length = (6 * sizeof(int)) + // ver, minVers, q, k, m, spare
240 // spare
384 int spare; local
387 if(bufLen < (5 * sizeof(int))) { // ver, minVers, q, k, spare
408 DEC_INT(spare, buf, bufLen, bytes);
452 int spare; local
456 // spare
465 DEC_INT(spare, bu
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A DbyteRep.c155 ENC_INT(0, buf, numBytes, i); // spare
185 ENC_INT(0, buf, numBytes, i); // spare
219 length = (6 * sizeof(int)) + // ver, minVers, q, k, m, spare
240 // spare
384 int spare; local
387 if(bufLen < (5 * sizeof(int))) { // ver, minVers, q, k, spare
408 DEC_INT(spare, buf, bufLen, bytes);
452 int spare; local
456 // spare
465 DEC_INT(spare, bu
[all...]
/macosx-10.10/libarchive-30/libarchive/cpio/
H A Dcpio.c455 struct archive_entry *entry, *spare; local
521 archive_entry_linkify(cpio->linkresolver, &entry, &spare);
526 archive_entry_linkify(cpio->linkresolver, &entry, &spare);
552 struct archive_entry *entry, *spare; local
619 spare = NULL;
622 archive_entry_linkify(cpio->linkresolver, &entry, &spare);
628 if (spare != NULL) {
630 r = entry_to_archive(cpio, spare);
631 archive_entry_free(spare);
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Dsrconv.c460 ob.spare = 0;
493 ob.spare = 0;
719 dfp.spare = 0;
743 dds.spare = 0;
794 dar.spare = nints (dims);
808 dar.spare[j] = 0;
835 den.spare = 0;
874 dty.spare = 0;
1215 du.spare = 0;
1278 dus.spare
[all...]
/macosx-10.10/OpenSSL098-52/src/fips/
H A Dfips_premain.c49 int spare[8] = {0};
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dcodedirectory.h160 // of the linear versioning stream. Leave the 'spare' fields alone unless you need
229 Endian<uint64_t> spare; // reserved (must be zero) member in struct:Security::CodeSigning::CodeDirectory::Scatter
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dcodedirectory.h160 // of the linear versioning stream. Leave the 'spare' fields alone unless you need
229 Endian<uint64_t> spare; // reserved (must be zero) member in struct:Security::CodeSigning::CodeDirectory::Scatter
/macosx-10.10/cxxfilt-11/cxxfilt/include/
H A Dhp-symtab.h1629 unsigned int spare:12; member in struct:PXDB_struct
1681 unsigned int spare : 28; member in struct:DOC_info_PXDB_header_struct
1812 long spare; member in struct:quick_aux_procedure
/macosx-10.10/ntp-92/ntpd/
H A Drefclock_irig.c848 char spare[2]; /* mulligan digits */ local
908 &syncdig, spare, &pp->day, &pp->hour,
/macosx-10.10/curl-83.1.2/curl/packages/vms/
H A Dgenerate_vax_transfer.com80 $ write vopt tab, "SPARE", tab, "; never delete this spare"
259 ; Macro to reserve a spare entry.
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWCommand.h115 UInt8 spare[2]; member in class:IOFWCommand

Completed in 221 milliseconds

12