Home
last modified time | relevance | path

Searched +full:fuzz +full:- +full:seconds (Results 1 – 25 of 44) sorted by relevance

12

/freebsd/contrib/netbsd-tests/lib/libc/gen/
H A Dt_sleep.c3 /*-
34 #include <atf-c.h>
46 #define BILLION 1000000000LL /* nano-seconds per second */
47 #define MILLION 1000000LL /* nano-seconds per milli-second */
49 #define ALARM 6 /* SIGALRM after this many seconds */
50 #define MAXSLEEP 22 /* Maximum delay in seconds */
51 #define KEVNT_TIMEOUT 10300 /* measured in milli-seconds */
52 #define FUZZ (40 * MILLION) /* scheduling fuzz accepted - 40 ms */ macro
57 * Most tests use FUZZ as their initial delay value, but 'sleep'
58 * starts at 1sec (since it cannot handle sub-second intervals).
[all …]
/freebsd/contrib/libcbor/.github/workflows/
H A Dfuzz-pr.yml2 # on PRs; fuzz.yml schedules a daily long-running fuzzing job.
7 runs-on: ubuntu-latest
9 - name: Build Fuzzers
10 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
12 oss-fuzz-project-name: 'libcbor'
13 dry-run: false
14 - name: Smoke Test Fuzzers
15 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
17 oss-fuzz-project-name: 'libcbor'
18 fuzz-seconds: 10
[all …]
H A Dfuzz.yml4 - cron: '0 4 * * *'
7 runs-on: ubuntu-latest
9 - name: Build Fuzzers
10 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
12 oss-fuzz-project-name: 'libcbor'
13 dry-run: false
14 - name: Run Fuzzers
15 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
17 oss-fuzz-project-name: 'libcbor'
18 fuzz-seconds: 14400 # 4 hours
[all …]
/freebsd/contrib/libarchive/.github/workflows/
H A Dcifuzz.yml
/freebsd/crypto/libecc/.github/workflows/
H A Dlibecc_cifuzz.yml5 runs-on: ubuntu-latest
7 - name: Build Fuzzers
9 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
11 oss-fuzz-project-name: 'libecc'
12 dry-run: false
14 - name: Run Fuzzers
15 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
17 oss-fuzz-project-name: 'libecc'
18 fuzz-seconds: 300
19 dry-run: false
[all …]
/freebsd/crypto/krb5/.github/workflows/
H A Dcifuzz.yml9 runs-on: ubuntu-latest
11 security-events: write
13 - name: Build Fuzzers
15 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
17 oss-fuzz-project-name: 'krb5'
19 - name: Run Fuzzers
20 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
22 oss-fuzz-project-name: 'krb5'
24 fuzz-seconds: 300
25 output-sarif: true
[all …]
/freebsd/crypto/openssh/.github/workflows/
H A Dcifuzz.yml10 if: github.repository != 'openssh/openssh-portable-selfhosted'
11 runs-on: ubuntu-latest
13 - name: Build Fuzzers
15 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
17 oss-fuzz-project-name: 'openssh'
18 dry-run: false
20 - name: Run Fuzzers
21 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
23 oss-fuzz-project-name: 'openssh'
24 fuzz-seconds: 600
[all …]
/freebsd/sys/contrib/device-tree/Bindings/input/touchscreen/
H A Dtsc2005.txt4 - compatible : "ti,tsc2004" or "ti,tsc2005"
5 - reg : Device address
6 - interrupts : IRQ specifier
7 - spi-max-frequency : Maximum SPI clocking speed of the device
11 - vio-supply : Regulator specifier
12 - reset-gpios : GPIO specifier for the controller reset line
13 - ti,x-plate-ohms : integer, resistance of the touchscreen's X plates
15 - ti,esd-recovery-timeout-ms : integer, if the touchscreen does not respond after
16 the configured time (in milli seconds), the driver
18 - properties defined in touchscreen.txt
[all …]
H A Dti,tsc2005.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Marek Vasut <marex@denx.de>
11 - Michael Welling <mwelling@ieee.org>
19 - ti,tsc2004
20 - ti,tsc2005
31 reset-gpios:
35 spi-max-frequency:
39 ti,x-plate-ohms:
[all …]
/freebsd/contrib/ntp/libntp/
H A Dsystime.c2 * systime -- routines to fiddle a UNIX clock.
30 int allow_panic = FALSE; /* allow panic correction (-g) */
50 * predicted, the low-order unused portion of the time below the minimum
51 * time to read the clock is filled with an unbiased random fuzz.
54 * seconds, for stepping clocks, defined as those which return times
56 * use a high-resolution counter such that each clock reading is always
80 double measured_tick; /* non-overridable sys_tick (s) */
118 /* [Bug 3450] ensure nsec fuzz >= sys_fuzz to reduce chance of in set_sys_fuzz()
119 * short-fallin in set_sys_fuzz()
[all...]
H A Dclocktime.c2 * clocktime - compute the NTP date from a day of year, hour, minute
12 * We check that the time be within CLOSETIME seconds of the receive
35 * Take a time spec given as day-of-year, hour, minute and second as
37 * '*ts_ui'. The value will be in the range (rec_ui-0.5yrs) to
38 * (rec_ui+0.5yrs). A hint for the current start-of-year will be
42 * '*yearstart' will receive the associated start-of-year.
45 * (+/-4hrs) around the receive time by returning a non-zero value.
48 * time specification, but evaluates the effective seconds in
49 * 32-bit arithmetic.
53 int yday , /* day-of-year */ in clocktime()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerFlags.def1 //===- FuzzerFlags.def - Run-time flags -------
[all...]
H A DFuzzerLoop.cpp1 //===- FuzzerLoop.cpp - Fuzzer's main loop --------
288 size_t Seconds = AlarmCallback() local
[all...]
H A DFuzzerFork.cpp1 //===- FuzzerFork.cpp - run fuzzing in separate subprocesses --------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 //===----------------------------------------------------------------------===//
115 return std::chrono::duration_cast<std::chrono::seconds>( in secondsSinceProcessStartUp()
116 std::chrono::system_clock::now() - ProcessStartTime) in secondsSinceProcessStartUp()
144 size_t StartIndex = ((JobId - 1) % NumCorpuses) * AverageCorpusSize; in CreateNewJob()
149 : Rand->SkewTowardsLast(Files.size()); in CreateNewJob()
156 auto &SF = Files[Rand->SkewTowardsLast(Files.size())]; in CreateNewJob()
162 auto DftTimeInSeconds = duration_cast<seconds>(Time2 - Time1).count(); in CreateNewJob()
[all …]
/freebsd/sys/dev/cyapa/
H A Dcyapa.c38 * CYAPA - Cypress APA trackpad with I2C Interface driver
49 * +--------------------+------------+
53 * | Button +------------+
56 * +--------------------+............|
58 * +---------------------------------+
63 * IMPS/2 emulation - Emulates the IntelliMouse protocol.
65 * Jitter supression - Implements 2-pixel hysteresis with memory.
67 * Jump detecion - Detect jumps caused by touchpad.
69 * Two finger scrolling - Use two fingers for Z axis scrolling.
71 * Button down/2nd finger - While one finger clicks and holds down the
[all …]
/freebsd/contrib/ntp/html/
H A Daccopt.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
4 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
6 <title>Access Control Commands and Options</title> <!-- Changed by: Harlan
7 &, 13-Nov-2014 -->
10 <!--
12 color: #FF0000; font-weight: bold; } -->
21 <p>Last update: <!-- #BeginDate format:En2m -->7-Jan-2018 23:56<!-- #EndDate
22 --> UTC</p>
39 the <tt>kod</tt> flag is present, a kiss-o'-death packet is
47 <dd>Specify the minimum interpacket spacing (guard time) in seconds
[all …]
/freebsd/contrib/wpa/src/ap/
H A Dsta_info.c3 * Copyright (c) 2002-2017, Jouni Malinen <j@w1.fi>
60 for (sta = hapd->sta_list; sta; sta = sta->next) { in ap_for_each_sta()
73 s = hapd->sta_hash[STA_HASH(sta)]; in ap_get_sta()
74 while (s != NULL && os_memcmp(s->addr, sta, 6) != 0) in ap_get_sta()
75 s = s->hnext; in ap_get_sta()
85 for (sta = hapd->sta_list; sta; sta = sta->next) { in ap_get_sta_p2p()
88 if (sta->p2p_ie == NULL) in ap_get_sta_p2p()
91 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie); in ap_get_sta_p2p()
108 if (hapd->sta_list == sta) { in ap_sta_list_del()
109 hapd->sta_list = sta->next; in ap_sta_list_del()
[all …]
/freebsd/contrib/netbsd-tests/fs/vfs/
H A Dt_vnops.c3 /*-
34 #include <atf-c.h>
74 if (rump_sys_stat(pb, &sb1) == -1) in lookup_simple()
78 if (rump_sys_stat(pb, &sb2) == -1) in lookup_simple()
94 if (rump_sys_mkdir(pb, 0777) == -1) in lookup_complex()
96 if (rump_sys_stat(pb, &sb1) == -1) in lookup_complex()
100 if (rump_sys_stat(pb, &sb2) == -1) in lookup_complex()
105 * any directories searched - such a directory is the in lookup_complex()
165 if (rump_sys_mkdir(pb, 0777) == -1) in dir_simple()
167 if (rump_sys_stat(pb, &sb) == -1) in dir_simple()
[all …]
/freebsd/contrib/ntp/ntpd/
H A Dntp.conf.mdoc.in6 .\" It has been AutoGen-ed May 25, 2024 at 12:03:50 AM by AutoGen 5.18.16
8 .\" and the template file agmdoc-cmd.tpl
14 .Op Fl \-option\-name
15 .Op Fl \-option\-name Ar value
46 host addresses written in numeric, dotted\-quad form,
47 integers, floating point numbers (when specifying times in seconds)
62 .Bl -bullet -offse
[all...]
H A Dntp.conf.5mdoc6 .\" It has been AutoGen-ed May 25, 2024 at 12:03:50 AM by AutoGen 5.18.16
8 .\" and the template file agmdoc-cmd.tpl
14 .Op Fl \-option\-name
15 .Op Fl \-option\-name Ar value
46 host addresses written in numeric, dotted\-quad form,
47 integers, floating point numbers (when specifying times in seconds)
62 .Bl -bullet -offse
[all...]
H A Dntp.conf.def1 /* -*- Mode: Text -*- */
7 // We want the synopsis to be "/etc/ntp.conf" but we need the prog-name
8 // to be ntp.conf - the latter is also how autogen produces the output
10 prog-name = "ntp.conf";
11 file-path = "/etc/ntp.conf";
12 prog-title = "Network Time Protocol daemon (ntpd) configuration format";
15 explain = <<- _END_EXPLAIN
18 doc-section = {
19 ds-type = 'DESCRIPTION';
20 ds-format = 'mdoc';
[all …]
H A Dntp.conf.5man2 . it 1 an-trap
6 .ds B-Font [CB]
7 .ds I-Font [CI]
8 .ds R-Font [CR]
10 .ds B-Font B
11 .ds I-Font I
12 .ds R-Font R
15 .\" EDIT THIS FILE WITH CAUTION (in-mem file)
17 .\" It has been AutoGen-ed May 25, 2024 at 12:04:03 AM by AutoGen 5.18.16
19 .\" and the template file agman-cm
[all...]
H A Dntp.conf.man.in2 . it 1 an-trap
6 .ds B-Font [CB]
7 .ds I-Font [CI]
8 .ds R-Font [CR]
10 .ds B-Font B
11 .ds I-Font I
12 .ds R-Font R
15 .\" EDIT THIS FILE WITH CAUTION (in-mem file)
17 .\" It has been AutoGen-ed May 25, 2024 at 12:04:03 AM by AutoGen 5.18.16
19 .\" and the template file agman-cm
[all...]
H A Dinvoke-ntp.conf.texi7 # EDIT THIS FILE WITH CAUTION (invoke-ntp.conf.texi)
9 # It has been AutoGen-ed May 25, 2024 at 12:03:56 AM by AutoGen 5.18.16
11 # and the template file agtexi-file.tpl
27 @code{-c}
42 host addresses written in numeric, dotted-quad form,
43 integers, floating point numbers (when specifying times in seconds)
108 If the Basic Socket Interface Extensions for IPv6 (RFC-2553)
128 @code{-4}
132 @code{-6}
149 either a DNS name or an IP address in dotted-qua
[all...]
/freebsd/contrib/diff/doc/
H A Ddiff.71 .Dd 2015-03-02
26 normally produces no output; for binary (non-text) files,
36 .Li M-x compare-windows .
80 Vol. 1 No. 2, 1986, pp. 251--266; and in \(lqA File Comparison Program\(rq, Webb Miller
82 .Em Software---Practice and Experience
83 Vol. 15 No. 11, 1985, pp. 1025--1040. The algorithm was independently discovered
86 Vol. 64, 1985, pp. 100--118. Unless the
87 .Op --minimal
97 Elsevier/MIT Press, 1990, pp. 255--300.
192 .Bd -literal -offset indent
[all …]

12