Searched refs:adjust (Results 1 - 25 of 64) sorted by relevance

123

/freebsd-10.0-release/contrib/ntp/sntp/
H A Dtiming.c61 struct timeval old, new, adjust, previous; local
69 adjust.tv_sec = n;
70 adjust.tv_usec = (long)(MILLION_D*(difference-n));
74 new.tv_sec = old.tv_sec+adjust.tv_sec;
75 new.tv_usec = (n = (long)old.tv_usec+(long)adjust.tv_usec);
88 "Times: old=(%ld,%.6ld) new=(%ld,%.6ld) adjust=(%ld,%.6ld)\n",
91 (long)adjust.tv_sec,(long)adjust.tv_usec);
100 if (adjtime(&adjust,&previous))
101 fatal(1,"unable to adjust curren
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_diff/
H A Ddiff4.c84 region in M, and adjust line numbers and mappings appropriately.
94 "after" version of the text, and adjust line numbers and mappings
111 adjust_diff(svn_diff_t *diff, svn_diff_t *adjust) argument
118 for (; adjust; adjust = adjust->next)
120 range_start = adjust->modified_start;
121 range_end = range_start + adjust->modified_length;
122 adjustment = adjust->original_length - adjust
[all...]
/freebsd-10.0-release/usr.bin/newkey/
H A Dgeneric.c55 static void adjust(char[], char *);
105 adjust(secret, xkey);
107 adjust(public, xkey);
119 adjust(char keyout[HEXKEYBYTES+1], char *keyin) function
/freebsd-10.0-release/usr.bin/col/
H A Dcol.c131 int adjust, opt, warned, width; local
169 adjust = cur_col = extra_lines = warned = 0;
214 case TAB: /* adjust column */
232 if (cur_line != this_line - adjust) {
236 adjust = 0;
241 adjust = 1;
279 this_line = cur_line + adjust;
/freebsd-10.0-release/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
H A Derase_fn_imps.hpp80 typename Allocator::group_throw_prob_adjustor adjust(m_size);
142 typename Allocator::group_throw_prob_adjustor adjust(m_size);
/freebsd-10.0-release/contrib/telnet/libtelnet/
H A Dpk.c56 static void adjust(char keyout[HEXKEYBYTES+1], char *keyin);
187 adjust(secret, xkey);
189 adjust(public, xkey);
201 adjust(char keyout[HEXKEYBYTES+1], char *keyin) function
/freebsd-10.0-release/contrib/binutils/bfd/
H A Daout-target.h54 as the start of the text, then adjust the VMA so that it is.
59 bfd_vma adjust; local
61 adjust = execp->a_entry - obj_textsec (abfd)->vma;
63 adjust &= ~(TARGET_PAGE_SIZE - 1);
64 obj_textsec (abfd)->vma += adjust;
65 obj_datasec (abfd)->vma += adjust;
66 obj_bsssec (abfd)->vma += adjust;
H A Dpe-mips.c440 to 0 at the start of this function. We need to adjust here,
596 size_t adjust; local
616 adjust = 0;
646 the rtype_to_howto function to adjust the addend as needed. */
H A Delf32-spu.c3090 unsigned adjust; local
3092 adjust = -phdr[i].p_filesz & 15;
3093 if (adjust != 0
3095 && phdr[i].p_offset + phdr[i].p_filesz > last->p_offset - adjust)
3098 adjust = -phdr[i].p_memsz & 15;
3099 if (adjust != 0
3102 && phdr[i].p_vaddr + phdr[i].p_memsz > last->p_vaddr - adjust
3114 unsigned adjust; local
3116 adjust = -phdr[i].p_filesz & 15;
3117 phdr[i].p_filesz += adjust;
[all...]
/freebsd-10.0-release/contrib/libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Dresize_fn_imps.hpp88 typename Allocator::group_throw_prob_adjustor adjust(m_num_e);
/freebsd-10.0-release/contrib/gcc/
H A Dexplow.c829 adjust_stack (rtx adjust)
833 if (adjust == const0_rtx)
838 if (GET_CODE (adjust) == CONST_INT)
839 stack_pointer_delta -= INTVAL (adjust);
847 stack_pointer_rtx, adjust, stack_pointer_rtx, 0,
858 anti_adjust_stack (rtx adjust)
862 if (adjust == const0_rtx)
867 if (GET_CODE (adjust) == CONST_INT)
868 stack_pointer_delta += INTVAL (adjust);
876 stack_pointer_rtx, adjust, stack_pointer_rt
823 adjust_stack(rtx adjust) argument
852 anti_adjust_stack(rtx adjust) argument
[all...]
/freebsd-10.0-release/contrib/nvi/vi/
H A Dvs_refresh.c244 * screen but the column offset is not, we'll end up in the adjust
281 goto adjust;
291 goto adjust;
306 goto adjust;
333 goto adjust;
351 goto adjust;
393 adjust: if (!O_ISSET(sp, O_LEFTRIGHT) &&
586 * We adjust the offset up or down until we have a window that covers
587 * the current column, making sure that we adjust differently for the
632 * We may have jumped here to adjust
[all...]
/freebsd-10.0-release/sbin/fsck_ffs/
H A Dpass4.c91 adjust(&idesc, (short)n);
H A Dfsck.h289 int adjrefcnt[MIBSIZE]; /* MIB command to adjust inode reference cnt */
290 int adjblkcnt[MIBSIZE]; /* MIB command to adjust inode block count */
291 int adjndir[MIBSIZE]; /* MIB command to adjust number of directories */
292 int adjnbfree[MIBSIZE]; /* MIB command to adjust number of free blocks */
293 int adjnifree[MIBSIZE]; /* MIB command to adjust number of free inodes */
294 int adjnffree[MIBSIZE]; /* MIB command to adjust number of free frags */
295 int adjnumclusters[MIBSIZE]; /* MIB command to adjust number of free clusters */
316 int bkgrdsumadj; /* whether the kernel have ability to adjust superblock summary */
398 void adjust(struct inodesc *, int lcnt);
/freebsd-10.0-release/contrib/apr/strings/
H A Dapr_snprintf.c280 #define FIX_PRECISION(adjust, precision, s, s_len) \
281 if (adjust) { \
699 } adjust; local
739 adjust = RIGHT;
755 adjust = LEFT;
780 adjust = LEFT;
1316 if (adjust_width && adjust == RIGHT && min_width > s_len) {
1336 if (adjust_width && adjust == LEFT && min_width > s_len)
/freebsd-10.0-release/contrib/gcclibs/libdecnumber/
H A DdecNumber.c533 exponent = exponent - (last - dotchar); /* .. adjust exponent */
1253 /* lhs is A, the number to adjust */
1282 /* lhs is A, the number to adjust */
2076 { /* may need to adjust */
2314 Int adjust; /* work */ local
2325 adjust = lexp - res->exponent; /* adjustment needed [if -ve] */
2328 if (adjust < 0)
2341 if (adjust < 0)
2343 if ((res->digits - adjust) > set->digits)
2345 adjust
2362 Int adjust; /* work */ local
3707 Int adjust = reqexp - lhs->exponent; /* digit adjustment needed */ local
5270 Int etiny, adjust; /* .. */ local
[all...]
/freebsd-10.0-release/contrib/groff/src/roff/troff/
H A Denv.h110 void adjust();
365 friend void adjust();
/freebsd-10.0-release/sys/dev/ie/
H A Dif_ie_isa.c431 u_short eaddrtemp, pg, adjust, decode, edecode; local
487 adjust = IEE16_MCTRL_FMCS16 | (pg & 0x3) << 2;
494 outb(PORT(sc) + IEE16_MCTRL, adjust); local
/freebsd-10.0-release/contrib/file/
H A Dreadelf.c768 int adjust = 1; local
773 adjust = adjust
775 if (adjust)
/freebsd-10.0-release/sys/net80211/
H A Dieee80211_output.c1890 * Note that we use the per-vap CSA count to adjust the global
3207 int adjust = tie->tim_bitmap+timlen local
3210 bo->bo_tim_trailer+adjust,
3212 bo->bo_tim_trailer += adjust;
3213 bo->bo_erp += adjust;
3214 bo->bo_htinfo += adjust;
3216 bo->bo_ath += adjust;
3219 bo->bo_tdma += adjust;
3222 bo->bo_meshconf += adjust;
3224 bo->bo_appie += adjust;
3321 int adjust = aielen - bo->bo_appie_len; local
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Support/Windows/
H A DPath.inc90 // Look for a UNC path, and if found adjust our notion of the root slash.
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dblame.c163 blame_adjust(struct blame *blame, apr_off_t adjust) argument
167 blame->start += adjust;
298 /* We have a previous file. Get the diff and adjust blame info. */
/freebsd-10.0-release/sys/dev/ath/ath_hal/ar5212/
H A Dar5111.c644 int16_t adjust; member in struct:__anon7555
662 return adjust5111[i].adjust;
/freebsd-10.0-release/lib/libc/mips/gen/
H A Dldexp.S126 subu t1, t1, t9 # adjust exponent
/freebsd-10.0-release/libexec/bootpd/
H A Dreadfile.c235 adjust(char **);
665 adjust(&src);
669 adjust(&src);
1537 adjust(s)
1524 adjust(s) function

Completed in 346 milliseconds

123