Searched refs:original (Results 1 - 25 of 66) sorted by relevance

123

/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DAtomic.cpp99 sys::cas_flag original, result; local
101 original = *ptr;
102 result = original * val;
103 } while (sys::CompareAndSwap(ptr, result, original) != original);
109 sys::cas_flag original, result; local
111 original = *ptr;
112 result = original / val;
113 } while (sys::CompareAndSwap(ptr, result, original) != original);
[all...]
/freebsd-9.3-release/bin/sleep/
H A Dsleep.c69 time_t original; local
81 original = time_to_sleep.tv_sec = (time_t)d;
94 warnx("about %d second(s) left out of the original %d",
95 (int)time_to_sleep.tv_sec, (int)original);
/freebsd-9.3-release/contrib/cvs/src/
H A Droot.h32 char *original; /* The complete source CVSroot string. */ member in struct:cvsroot_s
H A Drecurse.c202 if (strcmp (root->original, current_parsed_root->original))
409 from current_parsed_root->original. If we do, and two repositories
486 appropriate to current_parsed_root->original.
624 if (findnode (root_directories, this_root->original))
626 process_this_directory = !strcmp (current_parsed_root->original,
627 this_root->original);
636 n->key = xstrdup (this_root->original);
641 this_root->original);
1070 if (findnode (root_directories, this_root->original))
[all...]
H A Drelease.c136 + strlen (current_parsed_root->original)
146 current_parsed_root->original);
H A Dlogin.c302 error (1, 0, "CVSROOT: %s", root->original);
383 /* open the original file again */
533 error (1, 0, "CVSROOT: %s", current_parsed_root->original);
632 error (1, 0, "CVSROOT: %s", current_parsed_root->original);
662 error (1, 0, "CVSROOT: %s", current_parsed_root->original);
H A Droot.c297 newroot->original = NULL;
320 if (root->original != NULL)
321 free (root->original);
387 /* save the original string */
388 newroot->original = xstrdup (root_in);
569 * called on a CVSROOT now. cvsroot->original is saved for error messages
793 newroot->original = xstrdup(dir);
797 * called on a CVSROOT now. cvsroot->original is saved for error messages
H A Dcreate_adm.c89 Create_Root (dir, current_parsed_root->original);
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DRWMutex.h79 RWMutexImpl(const RWMutexImpl & original) LLVM_DELETED_FUNCTION;
137 SmartRWMutex(const SmartRWMutex<mt_only> & original);
H A DMutex.h130 SmartMutex(const SmartMutex<mt_only> & original);
/freebsd-9.3-release/sys/sys/
H A Dsglist.h101 int sglist_slice(struct sglist *original, struct sglist **slice,
103 int sglist_split(struct sglist *original, struct sglist **head,
/freebsd-9.3-release/sys/kern/
H A Dsubr_sglist.c521 * entries for the first 'length' bytes of the 'original' list are
522 * stored in the '*head' list and are removed from 'original'.
533 * If 'original' is shared (refcount > 1), then EDOOFUS will be
537 sglist_split(struct sglist *original, struct sglist **head, size_t length, argument
544 if (original->sg_refs > 1)
551 for (i = 0; i < original->sg_nseg; i++) {
552 space += original->sg_segs[i].ss_len;
559 * 'original'.
583 /* Copy 'count' entries to 'sg' from 'original'. */
584 bcopy(original
668 sglist_slice(struct sglist *original, struct sglist **slice, size_t offset, size_t length, int mflags) argument
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dread-rtl.c424 apply_macro_to_rtx (rtx original, struct mapping *macro, int value, argument
434 if (original == 0)
435 return original;
438 bellwether_code = BELLWETHER_CODE (GET_CODE (original));
440 memcpy (x, original, RTX_CODE_SIZE (bellwether_code));
472 if (XVEC (original, i))
474 XVEC (x, i) = rtvec_alloc (XVECLEN (original, i));
476 XVECEXP (x, i, j) = apply_macro_to_rtx (XVECEXP (original, i, j),
533 add_condition_to_string (const char *original, const char *extra) argument
535 if (original !
579 rtx elem, new_elem, original, x; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Drwlock.h59 * original algorithm to be more portable as a user space application.
99 isc_rwlocktype_t original; member in struct:isc_rwlock
/freebsd-9.3-release/sys/fs/cd9660/
H A Dcd9660_util.c178 isofntrans(infn, infnlen, outfn, outfnlen, original, assoc, joliet_level, flags, handle)
183 int original;
199 if (!original && !joliet_level && c >= 'A' && c <= 'Z')
201 else if (!original && c == ';') {
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Drwlock.h59 * original algorithm to be more portable as a user space application.
99 isc_rwlocktype_t original; member in struct:isc_rwlock
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Drwlock.c102 rwl->original = isc_rwlocktype_none;
627 rwl->original = (rwl->original == isc_rwlocktype_none) ?
646 rwl->original = (rwl->original == isc_rwlocktype_none) ?
652 if (rwl->original == isc_rwlocktype_none &&
677 if (rwl->original != isc_rwlocktype_none) {
678 rwl->type = rwl->original;
679 rwl->original = isc_rwlocktype_none;
708 INSIST(rwl->original
[all...]
/freebsd-9.3-release/sys/geom/vinum/
H A Dgeom_vinum_raid5.c343 struct gv_sd *broken, *original, *parity, *s; local
360 original = parity = broken = NULL;
385 original = s;
393 if ((original == NULL) || (parity == NULL))
397 if (original->state != GV_SD_UP)
401 if (original->state == GV_SD_STALE && parity->state == GV_SD_STALE &&
455 /* A normal read can be fulfilled with the original subdisk. */
457 cbp = gv_raid5_clone_bio(bp, original, wp, addr, 0);
469 * A degraded write means we cannot write to the original data
471 * recalculate the parity from the original dat
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Drwlock.c102 rwl->original = isc_rwlocktype_none;
627 rwl->original = (rwl->original == isc_rwlocktype_none) ?
646 rwl->original = (rwl->original == isc_rwlocktype_none) ?
652 if (rwl->original == isc_rwlocktype_none &&
677 if (rwl->original != isc_rwlocktype_none) {
678 rwl->type = rwl->original;
679 rwl->original = isc_rwlocktype_none;
708 INSIST(rwl->original
[all...]
/freebsd-9.3-release/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc_check.c196 const char *haystack, const char *needle, const char *original)
226 memcpy(scratch, original, i);
227 memcpy(&scratch[i], &original[i + j],
255 const char *needle, const char *original)
266 if (is_based(params, unified, needle, original)) {
195 is_based(passwdqc_params_t *params, const char *haystack, const char *needle, const char *original) argument
254 is_word_based(passwdqc_params_t *params, const char *needle, const char *original) argument
/freebsd-9.3-release/contrib/compiler-rt/BlocksRuntime/
H A Druntime.c53 long original = InterlockedCompareExchange(dst, newl, oldl); local
54 return (original == oldl);
59 int original = InterlockedCompareExchange(dst, newi, oldi); local
60 return (original == oldi);
/freebsd-9.3-release/lib/libc/sparc64/gen/
H A Dmodf.S126 and %l5, %l3, %l5 ! save original rounding mode
144 * Now insert the original sign in %f4:f5.
156 * The value in %f4:f5 is now the integer portion of the original
158 * from the original value argument (%d0), and return the result.
167 * We get here if the original comparison of %f4:f5 (v) to
169 * case the integer part is the original value, and the
/freebsd-9.3-release/share/examples/ipfw/
H A Dchange_rules.sh125 seconds, the original rules will be restored.
/freebsd-9.3-release/contrib/bmake/mk/
H A Dtarget-flags.mk27 # variables. The original version of this macro file did
/freebsd-9.3-release/sbin/gvinum/
H A Dgvinum.c184 char original[BUFSIZ], tmpfile[20], *token[GV_MAXARGS]; local
257 * Copy the original input line in case we need it for error
260 strlcpy(original, buf, sizeof(original));
274 warnx("line %d: '%s'", line, original);
298 warnx("line %d: '%s'", line, original);
335 warnx("line %d: '%s'", line, original);
369 warnx("line %d: '%s'", line, original);
382 warnx("line %d: '%s'", line, original);

Completed in 168 milliseconds

123