Home
last modified time | relevance | path

Searched refs:adjust (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
DAVRAsmBackend.cpp33 namespace adjust { namespace
254 adjust::fixup_7_pcrel(Size, Fixup, Value, Ctx); in adjustFixupValue()
257 adjust::fixup_13_pcrel(Size, Fixup, Value, Ctx); in adjustFixupValue()
260 adjust::fixup_call(Size, Fixup, Value, Ctx); in adjustFixupValue()
263 adjust::ldi::fixup(Size, Fixup, Value, Ctx); in adjustFixupValue()
266 adjust::ldi::lo8(Size, Fixup, Value, Ctx); in adjustFixupValue()
270 adjust::pm(Value); in adjustFixupValue()
271 adjust::ldi::lo8(Size, Fixup, Value, Ctx); in adjustFixupValue()
274 adjust::ldi::hi8(Size, Fixup, Value, Ctx); in adjustFixupValue()
278 adjust::pm(Value); in adjustFixupValue()
[all …]
/freebsd-12-stable/contrib/subversion/subversion/libsvn_diff/
Ddiff4.c111 adjust_diff(svn_diff_t *diff, svn_diff_t *adjust) in adjust_diff() argument
118 for (; adjust; adjust = adjust->next) in adjust_diff()
120 range_start = adjust->modified_start; in adjust_diff()
121 range_end = range_start + adjust->modified_length; in adjust_diff()
122 adjustment = adjust->original_length - adjust->modified_length; in adjust_diff()
/freebsd-12-stable/usr.bin/col/
Dcol.c139 int adjust, opt, warned, width; in main() local
184 adjust = cur_col = extra_lines = warned = 0; in main()
258 if (cur_line + adjust != this_line) { in main()
262 adjust = !fine && (cur_line & 1); in main()
264 if (cur_line + adjust < this_line) { in main()
265 while (cur_line + adjust < this_line && in main()
270 if (cur_line + adjust < this_line) { in main()
277 while (cur_line + adjust in main()
289 cur_line = this_line - adjust; in main()
294 while (cur_line + adjust > this_line) { in main()
/freebsd-12-stable/contrib/unbound/util/data/
Dpacked_rrset.c279 time_t adjust = 0; in packed_rr_to_string() local
290 adjust = SERVE_ORIGINAL_TTL ? d->ttl_add : now; in packed_rr_to_string()
291 if (d->rr_ttl[i] < adjust) adjust = d->rr_ttl[i]; /* Prevent negative TTL overflow */ in packed_rr_to_string()
293 (uint32_t)(d->rr_ttl[i]-adjust)); in packed_rr_to_string()
339 time_t adjust = 0; in packed_rrset_copy_region() local
358 adjust = SERVE_ORIGINAL_TTL ? data->ttl_add : now; in packed_rrset_copy_region()
360 if(d->rr_ttl[i] < adjust) in packed_rrset_copy_region()
362 else d->rr_ttl[i] -= adjust; in packed_rrset_copy_region()
364 if(d->ttl < adjust) in packed_rrset_copy_region()
366 else d->ttl -= adjust; in packed_rrset_copy_region()
Dmsgencode.c457 time_t adjust = 0; in packed_rrset_encode() local
471 adjust = 0; in packed_rrset_encode()
473 adjust = SERVE_ORIGINAL_TTL ? data->ttl_add : timenow; in packed_rrset_encode()
486 if(data->rr_ttl[j] < adjust) in packed_rrset_encode()
489 else sldns_buffer_write_u32(pkt, data->rr_ttl[j]-adjust); in packed_rrset_encode()
523 if(data->rr_ttl[i] < adjust) in packed_rrset_encode()
526 else sldns_buffer_write_u32(pkt, data->rr_ttl[i]-adjust); in packed_rrset_encode()
/freebsd-12-stable/usr.bin/newkey/
Dgeneric.c55 static void adjust(char[], char *);
105 adjust(secret, xkey); in genkeys()
107 adjust(public, xkey); in genkeys()
119 adjust(char keyout[HEXKEYBYTES+1], char *keyin) in adjust() function
/freebsd-12-stable/contrib/libxo/xohtml/external/
Djquery.qtip.js151 'tracking': posOptions.target === 'mouse' && posOptions.adjust.mouse,
475 tooltip.attr('tracking', posOptions.target === 'mouse' && posOptions.adjust.mouse);
700 adjust = posOptions.adjust,
701 method = adjust.method.split(' '),
728 event = mouse && mouse.pageX && (adjust.mouse || !event || !event.pageX) ? mouse :
731 …(!adjust.mouse || this.options.show.distance) && cache.origin && cache.origin.pageX ? cache.origin…
745 if(adjust.mouse && isScroll) {
824 position.left += adjust.x + (my.x === RIGHT ? -elemWidth : my.x === CENTER ? -elemWidth / 2 : 0);
825 position.top += adjust.y + (my.y === BOTTOM ? -elemHeight : my.y === CENTER ? -elemHeight / 2 : 0);
1003 if(!trackingBound && posOptions.target === 'mouse' && posOptions.adjust.mouse) {
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
DCoverageMappingWriter.cpp116 Counter adjust(Counter C) const { in adjust() function in __anon2c5cb8120111::CounterExpressionsMinimizer
184 writeCounter(MinExpressions, Minimizer.adjust(E.LHS), OS); in write()
185 writeCounter(MinExpressions, Minimizer.adjust(E.RHS), OS); in write()
207 Counter Count = Minimizer.adjust(I->Count); in write()
208 Counter FalseCount = Minimizer.adjust(I->FalseCount); in write()
/freebsd-12-stable/contrib/unbound/cachedb/
Dcachedb.c498 adjust_msg_ttl(struct dns_msg* msg, time_t adjust) in adjust_msg_ttl() argument
501 if(adjust >= 0 && msg->rep->ttl > adjust) in adjust_msg_ttl()
502 msg->rep->ttl -= adjust; in adjust_msg_ttl()
510 rep->rrsets[i]->entry.data, adjust); in adjust_msg_ttl()
522 time_t adjust; in parse_data() local
583 adjust = *qstate->env->now - (time_t)timestamp; in parse_data()
584 if(qstate->return_msg->rep->ttl < adjust) { in parse_data()
597 adjust = -1; in parse_data()
599 verbose(VERB_ALGO, "cachedb msg adjusted down by %d", (int)adjust); in parse_data()
600 adjust_msg_ttl(qstate->return_msg, adjust); in parse_data()
[all …]
/freebsd-12-stable/contrib/telnet/libtelnet/
Dpk.c56 static void adjust(char keyout[HEXKEYBYTES+1], char *keyin);
187 adjust(secret, xkey); in genkeys()
189 adjust(public, xkey); in genkeys()
201 adjust(char keyout[HEXKEYBYTES+1], char *keyin) in adjust() function
/freebsd-12-stable/contrib/binutils/bfd/
Daout-target.h59 bfd_vma adjust; in MY() local
61 adjust = execp->a_entry - obj_textsec (abfd)->vma; in MY()
63 adjust &= ~(TARGET_PAGE_SIZE - 1); in MY()
64 obj_textsec (abfd)->vma += adjust; in MY()
65 obj_datasec (abfd)->vma += adjust; in MY()
66 obj_bsssec (abfd)->vma += adjust; in MY()
/freebsd-12-stable/crypto/openssh/
Dsshbuf-misc.c278 size_t adjust; in sshbuf_read() local
290 if ((adjust = maxlen - (rr > 0 ? rr : 0)) != 0) { in sshbuf_read()
291 if ((r = sshbuf_consume_end(buf, adjust)) != 0) { in sshbuf_read()
293 memset(d + rr, '\0', adjust); in sshbuf_read()
/freebsd-12-stable/contrib/ntp/
Dresults.y2kfixes60 31 Dec 23:58:59 ntpdate[83551]: adjust time server 135.16.74.3 offset 0.039057 s
65 01 Jan 00:01:05 ntpdate[8352]: adjust time server 135.16.74.3 offset 0.039057 s
70 29 Feb 00:02:15 ntpdate[8353]: adjust time server 135.25.xxxx.xxxx offset -0.000023 sec
/freebsd-12-stable/contrib/gcc/
Dexplow.c823 adjust_stack (rtx adjust) in adjust_stack() argument
827 if (adjust == const0_rtx) in adjust_stack()
832 if (GET_CODE (adjust) == CONST_INT) in adjust_stack()
833 stack_pointer_delta -= INTVAL (adjust); in adjust_stack()
841 stack_pointer_rtx, adjust, stack_pointer_rtx, 0, in adjust_stack()
852 anti_adjust_stack (rtx adjust) in anti_adjust_stack() argument
856 if (adjust == const0_rtx) in anti_adjust_stack()
861 if (GET_CODE (adjust) == CONST_INT) in anti_adjust_stack()
862 stack_pointer_delta += INTVAL (adjust); in anti_adjust_stack()
870 stack_pointer_rtx, adjust, stack_pointer_rtx, 0, in anti_adjust_stack()
DFREEBSD-upgrade11 use ``cvs add''. And please remember to adjust the contents of
/freebsd-12-stable/contrib/nvi/vi/
Dvs_refresh.c278 goto adjust; in vs_paint()
289 goto adjust; in vs_paint()
304 goto adjust; in vs_paint()
331 goto adjust; in vs_paint()
349 goto adjust; in vs_paint()
391 adjust: if (!O_ISSET(sp, O_LEFTRIGHT) && in vs_paint()
/freebsd-12-stable/contrib/apr/strings/
Dapr_snprintf.c279 #define FIX_PRECISION(adjust, precision, s, s_len) \ argument
280 if (adjust) { \
698 } adjust; in apr_vformatter() local
739 adjust = RIGHT; in apr_vformatter()
755 adjust = LEFT; in apr_vformatter()
780 adjust = LEFT; in apr_vformatter()
1315 if (adjust_width && adjust == RIGHT && min_width > s_len) { in apr_vformatter()
1335 if (adjust_width && adjust == LEFT && min_width > s_len) in apr_vformatter()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/Targets/
DSPIR.h138 void adjust(DiagnosticsEngine &Diags, LangOptions &Opts) override { in adjust() function
139 TargetInfo::adjust(Diags, Opts); in adjust()
/freebsd-12-stable/contrib/gcclibs/libdecnumber/
DdecNumber.c2314 Int adjust; /* work */ in decAddOp() local
2325 adjust = lexp - res->exponent; /* adjustment needed [if -ve] */ in decAddOp()
2328 if (adjust < 0) in decAddOp()
2341 if (adjust < 0) in decAddOp()
2343 if ((res->digits - adjust) > set->digits) in decAddOp()
2345 adjust = res->digits - set->digits; /* to fit exactly */ in decAddOp()
2349 decShiftToMost (res->lsu, res->digits, -adjust); in decAddOp()
2350 res->exponent += adjust; /* set the exponent. */ in decAddOp()
2362 Int adjust; /* work */ in decAddOp() local
2373 adjust = rexp - res->exponent; /* adjustment needed [if -ve] */ in decAddOp()
[all …]
/freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
Derase_fn_imps.hpp80 typename Allocator::group_throw_prob_adjustor adjust(m_size); in erase_if()
142 typename Allocator::group_throw_prob_adjustor adjust(m_size); in erase_imp()
/freebsd-12-stable/contrib/libevent/
Devutil_time.c238 struct timeval adjust; in adjust_monotonic_time() local
239 evutil_timersub(&base->last_time, tv, &adjust); in adjust_monotonic_time()
240 evutil_timeradd(&adjust, &base->adjust_monotonic_clock, in adjust_monotonic_time()
/freebsd-12-stable/contrib/ntp/sntp/libevent/
Devutil_time.c238 struct timeval adjust; in adjust_monotonic_time() local
239 evutil_timersub(&base->last_time, tv, &adjust); in adjust_monotonic_time()
240 evutil_timeradd(&adjust, &base->adjust_monotonic_clock, in adjust_monotonic_time()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
Dfp_add_impl.inc73 // Normalize any denormals, and adjust the exponent accordingly.
110 // and adjust the exponent.
120 // adjust the exponent.
/freebsd-12-stable/release/picobsd/tinyware/view/
DREADME26 -g nnn.nnn screen gamma (you can adjust how bright is the
59 the pop-up menu to adjust image parameters, as well as go forward or
/freebsd-12-stable/contrib/bzip2/
Dwords04 adjust the flags in this Makefile to improve matters.

12345678910>>...12