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

123

/freebsd-10.0-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-10.0-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-10.0-release/contrib/subversion/subversion/include/
H A Dsvn_diff.h103 /** The common ancestor of original and modified. */
185 * an "original" and "modified" datasource. Do all allocation in @a pool.
209 * three datasources: "original", "modified", and "latest". Do all
234 * two datasources: "original" and "latest", adjusted to become a full
235 * difference between "original", "modified" and "latest" using "ancestor".
299 * between the "original" and "modified" datasources. Specifically,
301 * tokens in the original data, and at @a modified_start for
307 * @a original_length in the original data, and is also identical to
320 * between the "original" and "modified" datasources. Specifically,
322 * tokens in the original dat
[all...]
/freebsd-10.0-release/contrib/serf/buckets/
H A Dsimple_buckets.c23 const char *original; member in struct:__anon4153
48 ctx->original = ctx->current = data;
64 ctx->original = ctx->current = serf_bucket_mem_alloc(allocator, len);
65 memcpy((char*)ctx->original, data, len);
82 ctx->original = ctx->current = data;
144 (*ctx->freefunc)(ctx->baton, ctx->original);
/freebsd-10.0-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-10.0-release/sys/sys/
H A Dsglist.h99 int sglist_slice(struct sglist *original, struct sglist **slice,
101 int sglist_split(struct sglist *original, struct sglist **head,
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_diff/
H A Ddeprecated.c181 const char *original,
185 return svn_diff_file_diff_2(diff, original, modified,
191 const char *original,
196 return svn_diff_file_diff3_2(diff, original, modified, latest,
202 const char *original,
208 return svn_diff_file_diff4_2(diff, original, modified, latest, ancestor,
178 svn_diff_file_diff(svn_diff_t **diff, const char *original, const char *modified, apr_pool_t *pool) argument
188 svn_diff_file_diff3(svn_diff_t **diff, const char *original, const char *modified, const char *latest, apr_pool_t *pool) argument
199 svn_diff_file_diff4(svn_diff_t **diff, const char *original, const char *modified, const char *latest, const char *ancestor, apr_pool_t *pool) argument
H A Ddiff_memory.c283 const svn_string_t *original,
290 fill_source_tokens(&(baton.sources[0]), original, pool);
301 const svn_string_t *original,
309 fill_source_tokens(&(baton.sources[0]), original, pool);
322 const svn_string_t *original,
331 fill_source_tokens(&(baton.sources[0]), original, pool);
356 source_tokens_t sources[2]; /* 0 == original; 1 == modified */
364 apr_off_t hunk_length[2]; /* 0 == original; 1 == modified */
365 apr_off_t hunk_start[2]; /* 0 == original; 1 == modified */
465 SVN_ERR(output_unified_token_range(baton, 0 /*original*/,
282 svn_diff_mem_string_diff(svn_diff_t **diff, const svn_string_t *original, const svn_string_t *modified, const svn_diff_file_options_t *options, apr_pool_t *pool) argument
300 svn_diff_mem_string_diff3(svn_diff_t **diff, const svn_string_t *original, const svn_string_t *modified, const svn_string_t *latest, const svn_diff_file_options_t *options, apr_pool_t *pool) argument
321 svn_diff_mem_string_diff4(svn_diff_t **diff, const svn_string_t *original, const svn_string_t *modified, const svn_string_t *latest, const svn_string_t *ancestor, const svn_diff_file_options_t *options, apr_pool_t *pool) argument
611 svn_diff_mem_string_output_unified2(svn_stream_t *output_stream, svn_diff_t *diff, svn_boolean_t with_diff_header, const char *hunk_delimiter, const char *original_header, const char *modified_header, const char *header_encoding, const svn_string_t *original, const svn_string_t *modified, apr_pool_t *pool) argument
670 svn_diff_mem_string_output_unified(svn_stream_t *output_stream, svn_diff_t *diff, const char *original_header, const char *modified_header, const char *header_encoding, const svn_string_t *original, const svn_string_t *modified, apr_pool_t *pool) argument
1052 svn_diff_mem_string_output_merge2(svn_stream_t *output_stream, svn_diff_t *diff, const svn_string_t *original, const svn_string_t *modified, const svn_string_t *latest, const char *conflict_original, const char *conflict_modified, const char *conflict_latest, const char *conflict_separator, svn_diff_conflict_display_style_t style, apr_pool_t *pool) argument
1128 svn_diff_mem_string_output_merge(svn_stream_t *output_stream, svn_diff_t *diff, const svn_string_t *original, const svn_string_t *modified, const svn_string_t *latest, const char *conflict_original, const char *conflict_modified, const char *conflict_latest, const char *conflict_separator, svn_boolean_t display_original_in_conflict, svn_boolean_t display_resolved_conflicts, apr_pool_t *pool) argument
[all...]
/freebsd-10.0-release/sys/kern/
H A Dsubr_sglist.c481 * entries for the first 'length' bytes of the 'original' list are
482 * stored in the '*head' list and are removed from 'original'.
493 * If 'original' is shared (refcount > 1), then EDOOFUS will be
497 sglist_split(struct sglist *original, struct sglist **head, size_t length, argument
504 if (original->sg_refs > 1)
511 for (i = 0; i < original->sg_nseg; i++) {
512 space += original->sg_segs[i].ss_len;
519 * 'original'.
543 /* Copy 'count' entries to 'sg' from 'original'. */
544 bcopy(original
628 sglist_slice(struct sglist *original, struct sglist **slice, size_t offset, size_t length, int mflags) argument
[all...]
/freebsd-10.0-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-10.0-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-10.0-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-10.0-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-10.0-release/contrib/subversion/subversion/libsvn_wc/
H A Dprops.c383 const svn_string_t *original,
410 SVN_ERR_ASSERT_NO_RETURN(original != NULL);
424 if (original == NULL && mine != NULL)
434 SVN_ERR_ASSERT_NO_RETURN(original != NULL);
436 if (svn_string_compare(original, incoming_base))
461 SVN_ERR_ASSERT_NO_RETURN(!svn_string_compare(original, incoming_base));
477 if (original && mine && svn_string_compare(original, mine))
479 /* We have an unchanged property, so the original values must
481 SVN_ERR_ASSERT_NO_RETURN(!svn_string_compare(original, incoming_bas
380 generate_conflict_message(const char *propname, const svn_string_t *original, const svn_string_t *mine, const svn_string_t *incoming, const svn_string_t *incoming_base, apr_pool_t *result_pool) argument
550 const svn_string_t *original; local
[all...]
H A Dconflicts.h89 const svn_wc_conflict_version_t *original,
106 const svn_wc_conflict_version_t *original,
313 /* Reads back the original data stored by svn_wc__conflict_skel_add_text_conflict()
333 /* Reads back the original data stored by svn_wc__conflict_skel_add_prop_conflict()
354 /* Reads back the original data stored by svn_wc__conflict_skel_add_tree_conflict()
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DCPPLanguageRuntime.cpp107 AppendReplacements (const char* original, argument
113 ConstString original_const(original);
121 std::string target(original);
/freebsd-10.0-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-10.0-release/share/examples/ipfw/
H A Dchange_rules.sh125 seconds, the original rules will be restored.
/freebsd-10.0-release/contrib/bmake/mk/
H A Dtarget-flags.mk27 # variables. The original version of this macro file did
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DClangASTSource.h248 ClangASTSourceProxy (ClangASTSource &original) : argument
249 m_original(original)
/freebsd-10.0-release/sbin/gvinum/
H A Dgvinum.c183 char original[BUFSIZ], tmpfile[20], *token[GV_MAXARGS]; local
256 * Copy the original input line in case we need it for error
259 strlcpy(original, buf, sizeof(original));
273 warnx("line %d: '%s'", line, original);
297 warnx("line %d: '%s'", line, original);
334 warnx("line %d: '%s'", line, original);
368 warnx("line %d: '%s'", line, original);
381 warnx("line %d: '%s'", line, original);
/freebsd-10.0-release/tools/tools/portsinfo/
H A Dportsinfo.sh24 contains any patches necessary to make the original application source
/freebsd-10.0-release/sys/dev/sfxge/common/
H A Defx_nic.c551 efx_oword_t original; local
561 EFSYS_BAR_READO(enp->en_esbp, rsp->address, &original,
569 reg = original;
601 EFSYS_BAR_WRITEO(enp->en_esbp, rsp->address, &original,
616 EFSYS_BAR_WRITEO(enp->en_esbp, rsp->address, &original, B_TRUE);
/freebsd-10.0-release/sys/geom/sched/
H A Dg_sched.c36 * an existing provider pp and its original geom gp
46 * original chain. The normal "geom sched create <provide>"
338 * Lookup the identity of the issuer of the original request.
1203 * original geom, and destroying the proxy provider. Also take care
1220 /* Relink the provider to its original geom. */
1377 * assembly that does the marking and then executes the original
1464 u_char *original; local
1471 original = (u_char *)g_io_request;
1473 found = !bcmp(original, fake_ioreq + CODE_SIZE, STORE_SIZE);
1477 /* Jump back to the original
1497 u_char *original; local
[all...]

Completed in 144 milliseconds

123