Home
last modified time | relevance | path

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

123456789

/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRAsmBackend.cpp33 namespace adjust { namespace
279 adjust::pm(Value); in adjustFixupValue()
287 adjust::pm(Value); in adjustFixupValue()
293 adjust::pm(Value); in adjustFixupValue()
304 adjust::pm(Value); in adjustFixupValue()
306 adjust::ldi::neg(Value); in adjustFixupValue()
312 adjust::pm(Value); in adjustFixupValue()
314 adjust::ldi::neg(Value); in adjustFixupValue()
320 adjust::pm(Value); in adjustFixupValue()
322 adjust::ldi::neg(Value); in adjustFixupValue()
[all …]
/freebsd/usr.bin/col/
H A Dcol.c124 int adjust, opt, warned, width; in main() local
169 adjust = cur_col = extra_lines = warned = 0; in main()
243 if (cur_line + adjust != this_line) { in main()
247 adjust = !fine && (cur_line & 1); in main()
249 if (cur_line + adjust < this_line) { in main()
250 while (cur_line + adjust < this_line && in main()
255 if (cur_line + adjust < this_line) { in main()
262 while (cur_line + adjust in main()
274 cur_line = this_line - adjust; in main()
279 while (cur_line + adjust > this_line) { in main()
/freebsd/usr.bin/newkey/
H A Dgeneric.c47 static void adjust(char[HEXKEYBYTES + 1], char *);
97 adjust(secret, xkey); in genkeys()
99 adjust(public, xkey); in genkeys()
111 adjust(char keyout[HEXKEYBYTES+1], char *keyin) in adjust() function
/freebsd/contrib/unbound/util/data/
H A Dpacked_rrset.c280 time_t adjust = 0; in packed_rr_to_string() local
291 adjust = SERVE_ORIGINAL_TTL ? d->ttl_add : now; in packed_rr_to_string()
292 if (d->rr_ttl[i] < adjust) adjust = d->rr_ttl[i]; /* Prevent negative TTL overflow */ in packed_rr_to_string()
294 (uint32_t)(d->rr_ttl[i]-adjust)); in packed_rr_to_string()
342 time_t adjust = 0; in packed_rrset_copy_region() local
361 adjust = SERVE_ORIGINAL_TTL ? data->ttl_add : now; in packed_rrset_copy_region()
363 if(d->rr_ttl[i] < adjust) in packed_rrset_copy_region()
365 else d->rr_ttl[i] -= adjust; in packed_rrset_copy_region()
367 if(d->ttl < adjust) in packed_rrset_copy_region()
369 else d->ttl -= adjust; in packed_rrset_copy_region()
/freebsd/contrib/libxo/xohtml/external/
H A Djquery.qtip.js700 adjust = posOptions.adjust,
745 if(adjust.mouse && isScroll) {
1489 if(posOptions.adjust.mouse) {
1874 adjust: { class in QTIP.defaults.position
2387 adjust = pos.adjusted,
2433 [ adjust.left, -offset.left ] : [ -adjust.left, offset.left ];
2436 pos.left -= adjust.left;
2449 [ adjust.top, -offset.top ] : [ -adjust.top, offset.top ];
2452 pos.top -= adjust.top;
2474 cache.cornerLeft = adjust.left; cache.cornerTop = adjust.top;
[all …]
/freebsd/sys/dev/axgbe/
H A Dxgbe-ptp.c137 u64 adjust; in xgbe_adjfreq() local
146 adjust = pdata->tstamp_addend; in xgbe_adjfreq()
147 adjust *= delta; in xgbe_adjfreq()
148 diff = div_u64(adjust, 1000000000UL); in xgbe_adjfreq()
/freebsd/contrib/unbound/cachedb/
H A 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/contrib/telnet/libtelnet/
H A Dpk.c52 static void adjust(char keyout[HEXKEYBYTES+1], char *keyin);
178 adjust(secret, xkey); in genkeys()
180 adjust(public, xkey); in genkeys()
192 adjust(char keyout[HEXKEYBYTES+1], char *keyin) in adjust() function
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingWriter.cpp115 Counter adjust(Counter C) const { in adjust() function in __anonef0388c20111::CounterExpressionsMinimizer
191 writeCounter(MinExpressions, Minimizer.adjust(E.LHS), OS); in write()
192 writeCounter(MinExpressions, Minimizer.adjust(E.RHS), OS); in write()
214 Counter Count = Minimizer.adjust(I->Count); in write()
215 Counter FalseCount = Minimizer.adjust(I->FalseCount); in write()
/freebsd/sys/contrib/device-tree/Bindings/serial/
H A Dnvidia,tegra20-hsuart.txt27 - nvidia,adjust-baud-rates: List of entries providing percentage of baud rate
46 Tx baud rate observed. To do this we use nvidia,adjust-baud-rates
56 nvidia,adjust-baud-rates = <0 9600 100>,
72 nvidia,adjust-baud-rates = <1000000 4000000 136>; /* 1.36% shift */
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_nist.c499 bn_addsub_f adjust; in BN_nist_mod_224() local
613 adjust = bn_sub_words; in BN_nist_mod_224()
632 adjust = carry ? bn_sub_words : bn_add_words; in BN_nist_mod_224()
637 res = ((*adjust) (c_d, r_d, _nist_p_224[0], BN_NIST_224_TOP) && carry) in BN_nist_mod_224()
671 bn_addsub_f adjust; in BN_nist_mod_256() local
857 adjust = bn_sub_words; in BN_nist_mod_256()
866 adjust = carry ? bn_sub_words : bn_add_words; in BN_nist_mod_256()
870 res = ((*adjust) (c_d, r_d, _nist_p_256[0], BN_NIST_256_TOP) && carry) in BN_nist_mod_256()
908 bn_addsub_f adjust; in BN_nist_mod_384() local
1129 adjust = bn_sub_words; in BN_nist_mod_384()
[all …]
/freebsd/contrib/ntp/
H A 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/crypto/openssh/
H A 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/sys/contrib/device-tree/Bindings/mfd/
H A Dallwinner,sun4i-a10-ts.yaml33 allwinner,tp-sensitive-adjust:
72 allwinner,tp-sensitive-adjust = <0>;
/freebsd/contrib/nvi/vi/
H A 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/sys/contrib/device-tree/Bindings/iio/light/
H A Dsharp,gp2ap002.yaml47 device-unique and adjust the optical setting for proximity detection
54 device-unique and adjust the optical setting for proximity detection
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dimx8mm-innocomm-wb15-evk.dts84 samsung,picophy-dc-vol-level-adjust = <7>;
92 samsung,picophy-dc-vol-level-adjust = <7>;
/freebsd/contrib/libfido2/man/
H A DNOTES6 Use mandoc 1.14.4. Otherwise, adjust dyc.css to mandoc's HTML
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_add_impl.inc73 // Normalize any denormals, and adjust the exponent accordingly.
110 // and adjust the exponent.
120 // adjust the exponent.
/freebsd/contrib/ntp/sntp/libevent/
H A 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/sys/contrib/device-tree/Bindings/regulator/
H A Drohm,bd71847-regulator.yaml138 Feedback-pin has pull-up connection to adjust voltage range. This is
143 Feedback-pin has pull-up connection to adjust voltage range. This is
148 Feedback-pin has pull-up connection to adjust voltage range. This is
H A Drohm,bd71837-regulator.yaml143 Feedback-pin has pull-up connection to adjust voltage range. This is
148 Feedback-pin has pull-up connection to adjust voltage range. This is
153 Feedback-pin has pull-up connection to adjust voltage range. This is
/freebsd/contrib/libevent/
H A 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/contrib/bzip2/
H A Dwords04 adjust the flags in this Makefile to improve matters.
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DWebAssembly.cpp288 void WebAssemblyTargetInfo::adjust(DiagnosticsEngine &Diags, in adjust() function in WebAssemblyTargetInfo
290 TargetInfo::adjust(Diags, Opts); in adjust()

123456789