Home
last modified time | relevance | path

Searched refs:tcur (Results 1 – 4 of 4) sorted by relevance

/kernel/linux/linux-5.10/tools/testing/selftests/bpf/
Dtest_flow_dissector.c513 unsigned long tstop, treport, tcur; in do_main() local
523 tcur = util_gettime(); in do_main()
524 treport = tcur + 1000; in do_main()
525 tstop = tcur + (cfg_num_secs * 1000); in do_main()
535 tcur = util_gettime(); in do_main()
536 if (tcur >= tstop) in do_main()
538 if (tcur >= treport) { in do_main()
542 treport = tcur + 1000; in do_main()
554 tcur = util_gettime(); in do_main()
555 if (tcur >= tstop) in do_main()
[all …]
/kernel/linux/linux-5.10/fs/xfs/libxfs/
Dxfs_btree.c2255 struct xfs_btree_cur *tcur; /* temporary btree cursor */ in xfs_btree_lshift() local
2393 error = xfs_btree_dup_cursor(cur, &tcur); in xfs_btree_lshift()
2396 i = xfs_btree_firstrec(tcur, level); in xfs_btree_lshift()
2397 if (XFS_IS_CORRUPT(tcur->bc_mp, i != 1)) { in xfs_btree_lshift()
2402 error = xfs_btree_decrement(tcur, level, &i); in xfs_btree_lshift()
2407 error = xfs_btree_update_keys(tcur, level); in xfs_btree_lshift()
2411 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR); in xfs_btree_lshift()
2433 xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR); in xfs_btree_lshift()
2451 struct xfs_btree_cur *tcur; /* temporary btree cursor */ in xfs_btree_rshift() local
2563 error = xfs_btree_dup_cursor(cur, &tcur); in xfs_btree_rshift()
[all …]
Dxfs_ialloc.c1137 struct xfs_btree_cur *cur, *tcur; in xfs_dialloc_ag_inobt() local
1199 error = xfs_btree_dup_cursor(cur, &tcur); in xfs_dialloc_ag_inobt()
1210 error = xfs_ialloc_get_rec(tcur, pag->pagl_leftrec, in xfs_dialloc_ag_inobt()
1221 error = xfs_ialloc_next_rec(tcur, &trec, &doneleft, 1); in xfs_dialloc_ag_inobt()
1249 cur = tcur; in xfs_dialloc_ag_inobt()
1260 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR); in xfs_dialloc_ag_inobt()
1270 error = xfs_ialloc_next_rec(tcur, &trec, in xfs_dialloc_ag_inobt()
1285 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR); in xfs_dialloc_ag_inobt()
1301 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR); in xfs_dialloc_ag_inobt()
1387 xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR); in xfs_dialloc_ag_inobt()
/kernel/linux/linux-5.10/tools/kvm/kvm_stat/
Dkvm_stat1229 tcur = 0
1244 tcur += values.delta
1259 tavg = int(round(tcur / sleeptime)) if tcur > 0 else ''