Home
last modified time | relevance | path

Searched refs:diff (Results 1 – 25 of 190) sorted by relevance

12345678

/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_diff/
H A Dzfs_diff_cliargs.ksh58 log_must zfs diff $opt "$TESTSNAP1"
59 log_must zfs diff $opt "$TESTSNAP1" "$DATASET"
60 log_must zfs diff $opt "$TESTSNAP1" "$TESTSNAP2"
66 log_mustnot zfs diff $opt
67 log_mustnot zfs diff $opt "$DATASET"
68 log_mustnot zfs diff $opt "$DATASET@noexists"
69 log_mustnot zfs diff $opt "$DATASET" "$TESTSNAP1"
70 log_mustnot zfs diff $opt "$TESTSNAP2" "$TESTSNAP1"
76 log_mustnot zfs diff $opt "$TESTSNAP1" "$DATASET"
77 log_mustnot zfs diff $opt "$TESTSNAP1" "$TESTSNAP2"
/f-stack/freebsd/contrib/zstd/programs/
H A Dtimefn.c107 UTIL_time_t diff; in UTIL_getSpanTime() local
109 diff.tv_sec = (end.tv_sec - 1) - begin.tv_sec; in UTIL_getSpanTime()
112 diff.tv_sec = end.tv_sec - begin.tv_sec; in UTIL_getSpanTime()
113 diff.tv_nsec = end.tv_nsec - begin.tv_nsec; in UTIL_getSpanTime()
115 return diff; in UTIL_getSpanTime()
120 UTIL_time_t const diff = UTIL_getSpanTime(begin, end); in UTIL_getSpanTimeMicro() local
122 micro += 1000000ULL * diff.tv_sec; in UTIL_getSpanTimeMicro()
123 micro += diff.tv_nsec / 1000ULL; in UTIL_getSpanTimeMicro()
129 UTIL_time_t const diff = UTIL_getSpanTime(begin, end); in UTIL_getSpanTimeNano() local
131 nano += 1000000000ULL * diff.tv_sec; in UTIL_getSpanTimeNano()
[all …]
/f-stack/freebsd/arm64/freescale/imx/clk/
H A Dimx_clk_composite.c165 int64_t diff, best_diff; in imx_clk_composite_find_best() local
172 diff = (int64_t)ftarget - (int64_t)cur; in imx_clk_composite_find_best()
174 if (diff >= 0 && diff < best_diff) { in imx_clk_composite_find_best()
175 best_diff = diff; in imx_clk_composite_find_best()
181 if (diff <= 0 && abs(diff) < best_diff) { in imx_clk_composite_find_best()
182 best_diff = diff; in imx_clk_composite_find_best()
188 if (abs(diff) < best_diff) { in imx_clk_composite_find_best()
189 best_diff = abs(diff); in imx_clk_composite_find_best()
214 int64_t best_diff, diff; in imx_clk_composite_set_freq() local
235 if (diff < best_diff) { in imx_clk_composite_set_freq()
[all …]
/f-stack/freebsd/contrib/openzfs/include/os/linux/zfs/sys/
H A Dtrace_zio.h57 TP_PROTO(zio_t *zio, hrtime_t now, hrtime_t diff),
58 TP_ARGS(zio, now, diff),
62 __field(hrtime_t, diff)
67 __entry->diff = diff;
70 __entry->diff, ZIO_TP_PRINTK_ARGS)
/f-stack/freebsd/contrib/openzfs/module/avl/
H A Davl.c264 int diff; in avl_find() local
273 ASSERT(-1 <= diff && diff <= 1); in avl_find()
274 if (diff == 0) { in avl_find()
585 int diff; in avl_insert_here() local
601 ASSERT(-1 <= diff && diff <= 1); in avl_insert_here()
602 ASSERT(diff != 0); in avl_insert_here()
613 ASSERT(-1 <= diff && diff <= 1); in avl_insert_here()
614 ASSERT(diff != 0); in avl_insert_here()
620 diff = tree->avl_compar(new_data, in avl_insert_here()
622 ASSERT(-1 <= diff && diff <= 1); in avl_insert_here()
[all …]
/f-stack/dpdk/drivers/net/bnx2x/
H A Dbnx2x_stats.h462 DIFF_64(diff.hi, new->s##_hi, old->s##_hi, \
463 diff.lo, new->s##_lo, old->s##_lo); \
464 ADD_64(estats->t##_hi, diff.hi, \
465 estats->t##_lo, diff.lo); \
477 ADD_64(pstats->mac_stx[1].t##_hi, new->diff##_hi, \
478 pstats->mac_stx[1].t##_lo, new->diff##_lo); \
490 diff = le##size##toh(tclient->s) - \
493 ADD_EXTEND_64(qstats->t##_hi, qstats->t##_lo, diff); \
501 ADD_EXTEND_64(estats->t##_hi, estats->t##_lo, diff); \
506 diff = le32toh(uclient->s) - le32toh(old_uclient->s); \
[all …]
/f-stack/freebsd/ddb/
H A Ddb_main.c113 unsigned long diff; in X_db_search_symbol() local
117 if (!linker_ddb_search_symbol((caddr_t)off, &lsym, &diff)) { in X_db_search_symbol()
118 *diffp = (db_expr_t)diff; in X_db_search_symbol()
126 diff = ~0UL; in X_db_search_symbol()
137 if ((stoffs - sym->st_value) > diff) in X_db_search_symbol()
139 if ((stoffs - sym->st_value) < diff) { in X_db_search_symbol()
140 diff = stoffs - sym->st_value; in X_db_search_symbol()
149 if (diff == 0) { in X_db_search_symbol()
160 *diffp = (match == NULL) ? off : diff; in X_db_search_symbol()
/f-stack/dpdk/
H A D.gitattributes1 *.c diff=cpp
2 *.h diff=cpp
3 *.py diff=python
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/
H A Dredacted_incrementals.ksh54 log_must diff -r /$POOL/stride3 /$POOL2/rstride3
57 log_must diff -r /$POOL/stride5 /$POOL2/rstride5
76 log_must diff -r /$POOL/rm /$POOL2/rrm
95 log_must diff -r /$POOL/write /$POOL2/rwrite
99 log_must diff -r /$POOL/write /$POOL2/rwrite1
101 log_must diff -r /$POOL/write /$POOL2/rwrite2
135 log_must diff $send_mnt/f1 /$POOL2/rfs/f1
136 log_must diff $send_mnt/d1/f1 /$POOL2/rfs/d1/f1
143 log_must diff -r /$POOL/hole1 /$POOL2/rhole1
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_rename/
H A Dzfs_rename_007_pos.ksh102 log_must diff $SRC_FILE $obj
104 log_must diff $SRC_FILE $obj
115 log_must diff $SRC_FILE $obj
138 log_must diff $SRC_FILE $DST_FILE
141 log_must diff $SRC_FILE $DST_FILE
152 log_must diff $SRC_FILE $DST_FILE
/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dip_rpcb_pxy.c289 int rv, diff; local
304 diff = 0;
367 return(diff);
784 int diff; local
835 return(diff);
1321 int diff; local
1358 if (diff != 0)
1361 return(diff);
1388 int diff, cnt; local
1391 diff = 0;
[all …]
/f-stack/freebsd/netinet/cc/
H A Dcc_htcp.c131 #define HTCP_CALC_ALPHA(diff) \ argument
134 ((160 * (diff)) / hz) + \
135 (((diff) / hz) * (((diff) << HTCP_ALPHA_INC_SHIFT) / (4 * hz))) \
392 int alpha, diff, now; in htcp_recalc_alpha() local
411 diff = now - htcp_data->t_last_cong - HTCP_DELTA_L; in htcp_recalc_alpha()
414 if (diff < htcp_max_diff) { in htcp_recalc_alpha()
419 if (diff > 0) { in htcp_recalc_alpha()
420 alpha = HTCP_CALC_ALPHA(diff); in htcp_recalc_alpha()
/f-stack/freebsd/contrib/device-tree/Bindings/iio/adc/
H A Dadc.txt5 - diff-channels : Differential channels muxed for this ADC. The first value
15 diff-channels = <0 1>;
20 diff-channels = <2 3>;
H A Dadi,ad7124.yaml89 diff-channels:
109 - diff-channels
132 diff-channels = <0 1>;
140 diff-channels = <2 3>;
148 diff-channels = <4 5>;
153 diff-channels = <6 7>;
/f-stack/dpdk/drivers/bus/dpaa/base/qbman/
H A Dqman.h254 u8 diff, old_ci; in qm_eqcr_start_stash() local
263 eqcr->available += diff; in qm_eqcr_start_stash()
264 if (!diff) in qm_eqcr_start_stash()
384 eqcr->available += diff; in qm_eqcr_cci_update()
385 return diff; in qm_eqcr_cci_update()
403 eqcr->available += diff; in qm_eqcr_cce_update()
404 return diff; in qm_eqcr_cce_update()
492 dqrr->fill += diff; in qm_dqrr_pci_update()
493 return diff; in qm_dqrr_pci_update()
517 dqrr->fill += diff; in qm_dqrr_pce_update()
[all …]
/f-stack/dpdk/app/test/
H A Dtest_red.c217 *diff = 0.0; in check_drop_rate()
220 if (*diff > tolerance) { in check_drop_rate()
237 *diff = 0.0; in check_avg()
452 double diff = 0.0; in func_test1() local
587 double diff = 0.0; in func_test2() local
695 double diff = 0.0; in func_test3() local
792 double diff = 0.0; in func_test4() local
985 double diff = 0.0; in func_test5() local
1108 double diff = 0.0; in func_test6() local
1480 double diff = 0.0; in perf2_test() local
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_get/
H A Dzfs_get_009_pos.ksh90 log_must diff $DEPTH_OUTPUT $EXPECT_OUTPUT
98 log_must diff $DEPTH_OUTPUT $EXPECT_OUTPUT
103 log_must diff $DEPTH_OUTPUT $EXPECT_OUTPUT
108 log_must diff $DEPTH_OUTPUT $EXPECT_OUTPUT
/f-stack/freebsd/mips/ingenic/
H A Djz4780_smb.c233 struct timespec start, diff; in jzsmb_transfer_read() local
251 getnanouptime(&diff); in jzsmb_transfer_read()
252 timespecsub(&diff, &start, &diff); in jzsmb_transfer_read()
260 if (tstohz(&diff) >= timeo) { in jzsmb_transfer_read()
280 struct timespec start, diff; in jzsmb_transfer_write() local
296 getnanouptime(&diff); in jzsmb_transfer_write()
297 timespecsub(&diff, &start, &diff); in jzsmb_transfer_write()
305 if (tstohz(&diff) >= timeo) { in jzsmb_transfer_write()
/f-stack/lib/
H A Dff_glue.c671 if (diff > 0 && max != 0) { in chglimit()
672 if (atomic_fetchadd_long(limit, (long)diff) + diff > max) { in chglimit()
673 atomic_subtract_long(limit, (long)diff); in chglimit()
677 atomic_add_long(limit, (long)diff); in chglimit()
689 chgproccnt(struct uidinfo *uip, int diff, rlim_t max) in chgproccnt() argument
700 int diff, rv; in chgsbsize() local
702 diff = to - *hiwat; in chgsbsize()
703 if (diff > 0 && max == 0) { in chgsbsize()
718 chgptscnt(struct uidinfo *uip, int diff, rlim_t max) in chgptscnt() argument
724 chgkqcnt(struct uidinfo *uip, int diff, rlim_t max) in chgkqcnt() argument
[all …]
/f-stack/freebsd/contrib/openzfs/contrib/intel_qat/
H A Dreadme.md16 /patch/0001-timespec.diff
19 /patch/0001-pci_aer.diff
22 /patch/0001-cryptohash.diff
/f-stack/freebsd/contrib/ncsw/Peripherals/QM/
H A Dqman_low.h389 eqcr->available += diff; in qmPortalEqcrCciUpdate()
390 return diff; in qmPortalEqcrCciUpdate()
413 return diff; in qmPortalEqcrCceUpdate()
568 dqrr->fill += diff; in qmPortalDqrrPciUpdate()
569 return diff; in qmPortalDqrrPciUpdate()
591 dqrr->fill += diff; in qmPortalDqrrPceUpdate()
592 return diff; in qmPortalDqrrPceUpdate()
916 mr->fill += diff; in qmPortalMrPciUpdate()
917 return diff; in qmPortalMrPciUpdate()
939 mr->fill += diff; in qmPortalMrPceUpdate()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend-L_toggle.ksh51 log_must diff /$TESTPOOL/fs/file /$TESTPOOL/recv/noL-noL/file
55 log_must diff /$TESTPOOL/fs/file /$TESTPOOL/recv/L-L/file
59 log_must diff /$TESTPOOL/fs/file /$TESTPOOL/recv/noL-L/file
63 log_must diff /$TESTPOOL/fs/.zfs/snapshot/snap/file /$TESTPOOL/recv/L-noL/file
/f-stack/app/nginx-1.16.1/src/event/
H A Dngx_event_timer.h54 ngx_msec_int_t diff; in ngx_event_add_timer() local
66 diff = (ngx_msec_int_t) (key - ev->timer.key); in ngx_event_add_timer()
68 if (ngx_abs(diff) < NGX_TIMER_LAZY_DELAY) { in ngx_event_add_timer()
/f-stack/tools/compat/include/sys/
H A Dresourcevar.h123 int chgkqcnt(struct uidinfo *uip, int diff, rlim_t max);
124 int chgproccnt(struct uidinfo *uip, int diff, rlim_t maxval);
127 int chgptscnt(struct uidinfo *uip, int diff, rlim_t maxval);
128 int chgumtxcnt(struct uidinfo *uip, int diff, rlim_t maxval);
/f-stack/app/redis-5.0.5/src/
H A Dredis-check-aof.c203 off_t diff = size-pos; in redis_check_aof_main() local
205 (long long) size, (long long) pos, (long long) diff); in redis_check_aof_main()
206 if (diff > 0) { in redis_check_aof_main()
209 …from %lld bytes, with %lld bytes, to %lld bytes\n",(long long)size,(long long)diff,(long long)pos); in redis_check_aof_main()

12345678