Searched refs:new_start (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.0-release/sys/dev/pci/
H A Dpci_subr.c207 u_long new_start, new_end; local
231 new_start = ulmax(start, rle->start);
233 if (new_start > new_end ||
234 new_start + count - 1 > new_end ||
235 new_start + count < new_start)
238 new_start, new_end, count, flags);
/freebsd-10.0-release/contrib/libyaml/src/
H A Dapi.c77 yaml_char_t *new_start = yaml_realloc(*start, (*end - *start)*2); local
79 if (!new_start) return 0;
81 memset(new_start + (*end - *start), 0, *end - *start);
83 *pointer = new_start + (*pointer - *start);
84 *end = new_start + (*end - *start)*2;
85 *start = new_start;
120 void *new_start = yaml_realloc(*start, ((char *)*end - (char *)*start)*2); local
122 if (!new_start) return 0;
124 *top = (char *)new_start + ((char *)*top - (char *)*start);
125 *end = (char *)new_start
141 void *new_start = yaml_realloc(*start, local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_diff/
H A Ddiff.h211 apr_off_t new_start,
H A Dutil.c367 apr_off_t new_start,
387 " +%" APR_OFF_T_FMT, new_start));
362 svn_diff__unified_write_hunk_header(svn_stream_t *output_stream, const char *header_encoding, const char *hunk_delimiter, apr_off_t old_start, apr_off_t old_length, apr_off_t new_start, apr_off_t new_length, const char *hunk_extra_context, apr_pool_t *scratch_pool) argument
H A Ddiff_memory.c455 apr_off_t new_start; local
472 new_start = baton->hunk_start[1];
479 new_start++;
485 new_start, baton->hunk_length[1],
H A Ddiff_file.c1598 apr_off_t new_start;
1615 new_start = baton->hunk_start[1];
1622 new_start++;
1628 new_start, baton->hunk_length[1],
1597 apr_off_t new_start; local
/freebsd-10.0-release/contrib/texinfo/makeinfo/
H A Dfloat.c208 FLOAT_ELT *new_start = temp; local
411 temp = new_start;
/freebsd-10.0-release/sys/dev/drm2/radeon/
H A Dradeon_ttm.c226 uint64_t old_start, new_start; local
233 new_start = new_mem->start << PAGE_SHIFT;
248 new_start += rdev->mc.vram_start;
251 new_start += rdev->mc.gtt_start;
266 r = radeon_copy(rdev, old_start, new_start,
/freebsd-10.0-release/sys/kern/
H A Dkern_lockf.c1163 lf_set_start(struct lockf *state, struct lockf_entry *lock, off_t new_start, argument
1167 KASSERT(new_start >= lock->lf_start, ("can't increase lock"));
1168 lock->lf_start = new_start;
/freebsd-10.0-release/contrib/libgnuregex/
H A Dregexec.c528 regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs);
530 if (BE (new_start == NULL, 0))
535 re_free (new_start);
538 regs->start = new_start;
527 regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs); local

Completed in 261 milliseconds