Searched refs:step (Results 1 - 25 of 180) sorted by relevance

12345678

/freebsd-current/sbin/ipf/libipf/
H A Dinterror.c529 int l = -1, r = IPF_NUM_ERRORS + 1, step; local
530 step = (r - l) / 2;
532 while (step != 0) {
533 ie = ipf_errors + l + step;
536 step = l + step;
538 r = step;
540 l = step;
541 step = (r - l) / 2;
/freebsd-current/contrib/kyua/utils/sqlite/
H A Dstatement_test.cpp53 ATF_REQUIRE(!stmt.step());
66 ATF_REQUIRE(stmt.step());
67 ATF_REQUIRE(!stmt.step());
77 ATF_REQUIRE(!stmt.step());
78 REQUIRE_API_ERROR("sqlite3_step", stmt.step());
113 ATF_REQUIRE(stmt.step());
115 ATF_REQUIRE(!stmt.step());
126 ATF_REQUIRE(stmt.step());
129 ATF_REQUIRE(!stmt.step());
140 ATF_REQUIRE(stmt.step());
[all...]
H A Dstatement.hpp94 bool step(void);
H A Dtransaction_test.cpp60 if (!stmt.step())
62 if (stmt.step())
/freebsd-current/usr.bin/ctags/
H A Dctags.c84 int step; /* step through args */ local
142 for (exit_val = step = 0; step < argc; ++step)
143 if (!(inf = fopen(argv[step], "r"))) {
144 warn("%s", argv[step]);
148 curfile = argv[step];
149 find_entries(argv[step]);
181 for (step
[all...]
/freebsd-current/lib/libnv/
H A Dmsgio.c365 unsigned int i, step, j; local
373 ret = i = step = 0;
376 step = PKG_MAX_SIZE;
378 step = nfds - i;
379 ret = fd_package_recv(sock, fds + i, step);
388 i += step;
397 unsigned int i, step; local
405 ret = i = step = 0;
408 step = PKG_MAX_SIZE;
410 step
[all...]
/freebsd-current/contrib/kyua/store/
H A Dread_transaction.cpp83 while (stmt.step()) {
107 while (stmt.step()) {
132 if (!stmt.step())
141 const bool more = stmt.step();
169 while (stmt.step()) {
236 stmt.step();
245 const bool more = stmt.step();
286 _valid = _stmt.step();
313 _pimpl->_valid = _pimpl->_stmt.step();
407 if (stmt.step())
[all...]
H A Dmetadata.cpp121 if (!stmt.step())
128 if (stmt.step())
H A Ddbtypes_test.cpp71 ATF_REQUIRE(query.step());
73 ATF_REQUIRE(!query.step());
97 ATF_REQUIRE(query.step());
100 ATF_REQUIRE(!query.step());
/freebsd-current/contrib/kyua/cli/
H A Dcmd_db_exec_test.cpp68 ATF_REQUIRE(query.step());
70 ATF_REQUIRE(!query.step());
147 query.step();
/freebsd-current/contrib/cortex-strings/scripts/
H A Dbench.py145 for step in [step1, step2]:
146 if step:
148 steps = int(round(math.log(args.limit) / math.log(step)))
149 bytes.extend([int(step**x) for x in range(0, steps+1)])
/freebsd-current/contrib/kyua/admin/
H A Dtravis-install-deps.sh78 for step in ${DO}; do
/freebsd-current/lib/libthread_db/
H A Dlibpthread_db.h92 int pt_reg_sstep(struct reg *reg, int step);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_libcdep.cpp191 uptr step = GetMmapGranularity(); local
192 while (size > step && addr < zero_base_max_shadow_start) {
193 addr += step;
194 size -= step;
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_blake2s_ref.c310 size_t i, step; local
331 for(step = 1; step < BLAKE2S_BLOCKBYTES; ++step) {
343 while (mlen >= step) {
344 if ( (err = blake2s_update(&S, p, step)) < 0 ) {
347 mlen -= step;
348 p += step;
/freebsd-current/lib/libthread_db/arch/i386/
H A Dlibpthread_md.c106 pt_reg_sstep(struct reg *reg, int step) argument
111 if (step)
/freebsd-current/lib/libvgl/
H A Dsimple.c188 int sign_x, sign_y, step, reverse, i; local
194 step = 1;
196 step = -1;
251 plot(object, ++x, y += step, reverse,
255 plot(object, --x1, y1 -= step, reverse,
259 plot(object, x, y += step, reverse, color);
262 plot(object, x1, y1 -= step, reverse,
282 plot(object, ++x, y += step, reverse, color);
287 plot(object, ++x, y += step, reverse, color);
291 plot(object, --x1, y1 -= step, revers
[all...]
/freebsd-current/tools/regression/kgssapi/
H A Dgsstest.c43 int step; /* test step number */ member in struct:gsstest_2_args
185 args.step = 1;
212 args.step = 2;
238 args.step = 3;
265 args.step = 4;
283 args.step = 5;
/freebsd-current/tests/sys/cddl/zfs/tests/acl/nontrivial/
H A Dzfs_acl_chmod_inherit_003_pos.ksh140 # step: indicate if the ACE be split during inherit.
142 typeset -i count=0 pass=0 passcnt=0 isinherit=0 maxnumber=4 step=0
165 step=0
169 step=1
253 step=0
301 if (( step > 0 )); then
302 (( count = count + step ))
H A Dzfs_acl_chmod_inherit_002_pos.ksh139 # step: indicate if the ACE be split during inherit.
141 typeset -i count=0 pass=0 passcnt=0 isinherit=0 maxnumber=4 step=0
164 step=0
168 step=1
242 step=0
288 if (( step > 0 )); then
289 (( count = count + step ))
H A Dzfs_acl_chmod_aclmode_001_pos.ksh240 # step: indicate if the ACE be split during aclmode.
242 typeset -i count=0 pass=0 passcnt=0 step=0
254 step=0
347 step=1
372 if (( step > 0 )); then
373 (( count = count + step ))
/freebsd-current/contrib/kyua/utils/process/
H A Dexecutor_pid_test.cpp34 2. Fork a lot, nearly wrapping the PID number space, so step 3 will re-use
35 a PID from step 1. Running the entire FreeBSD test suite is a more
36 realistic scenario for this step.
39 Without debugging, the tests in step 3 will reuse the context from step 1,
41 with stuff from step 1. When I found this bug, step 3 was
/freebsd-current/usr.sbin/diskinfo/
H A Ddiskinfo.c419 off_t b0, b1, sectorcount, step; local
430 step = 1ULL << (flsll(sectorcount / (4 * 200)) - 1);
431 if (step > 16384)
432 step = 16384;
440 b1 = sectorcount - step;
444 b0 += step;
446 b1 -= step;
456 b0 += step;
458 b1 += step;
467 b0 += step;
[all...]
/freebsd-current/usr.bin/last/
H A Dlast.c411 ARG *step; local
419 for (step = arglist; step; step = step->next)
420 switch(step->type) {
427 if (!strcasecmp(step->name, bp->ut_host))
431 if (!strcmp(step->name, bp->ut_line))
435 if (!strcmp(step->name, bp->ut_user))
/freebsd-current/sys/crypto/skein/
H A Dskein_debug.c19 static void Show64_step(size_t cnt,const u64b_t *X,size_t step) argument
22 for (i=j=0;i < cnt;i++,j+=step)
36 size_t step = (xptr & 1) ? 2 : 1; local
37 if (step != 1)
41 Show64_step(cnt,X,step);

Completed in 317 milliseconds

12345678