Searched refs:count (Results 1 - 25 of 4374) sorted by relevance

1234567891011>>

/freebsd-current/contrib/dialog/samples/
H A Dshortlist7 count=$1
9 count=10
12 while test $count != 0
14 echo "** $count -- `date`"
17 count=`expr $count - 1 2>/dev/null`
18 test -z "$count" && count=0
/freebsd-current/sys/contrib/dev/acpica/compiler/
H A Daslcompiler.l187 count (int type);
217 [ ] { count (0); }
218 [\n] { count (0); } /* Handle files with both LF and CR/LF */
219 [\r] { count (0); } /* termination on both Unix and Windows */
220 [ \t] { count (0); }
228 ";" { count (0); return(';'); }
232 "~" { count (3); return (PARSEOP_EXP_NOT); }
233 "!" { count (3); return (PARSEOP_EXP_LOGICAL_NOT); }
234 "*" { count (3); return (PARSEOP_EXP_MULTIPLY); }
235 "/" { count (
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Derr.D_KEY_TYPE.badkey2.d40 @a[0] = count();
41 @b[@a] = count();
H A Derr.D_IDENT_UNDEF.badkey3.d41 @t[i] = count();
H A Derr.D_TRUNC_PROTO.badmany.d31 @[0] = count();
H A Derr.D_TRUNC_SCALAR.bad.d31 @[0] = count();
H A Derr.D_AGG_MDIM.bad.d42 @counts[0][2] = count();
H A Derr.D_KEY_TYPE.badkey4.d42 @a[curpsinfo] = count();
H A Derr.D_KEY_TYPE.badkey1.d40 @a[1, (void)0] = count();
H A Derr.D_PROTO_LEN.counttoomany.d32 * count() should not accept any arguments
40 @a["badtest"] = count(1);
H A Dtst.signature.d35 @stk[ustack()] = count();
36 @symmy[sym(0)] = count();
37 @usymmy[usym(0)] = count();
38 @funky[func(0)] = count();
39 @ufunky[ufunc(0)] = count();
40 @moddy[mod(0)] = count();
41 @umoddy[umod(0)] = count();
46 @stk[ustack()] = count();
47 @symmy[sym(0)] = count();
48 @usymmy[usym(0)] = count();
[all...]
H A Dtst.count.d31 * Postive count() test
41 @a = count();
42 @a = count();
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/clauses/
H A Derr.D_IDENT_UNDEF.aggtup.d39 @a[x] = count();
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/drops/
H A Ddrp.DTRACEDROP_AGGREGATION.d35 @["Harding"] = count();
36 @["Hoover"] = count();
37 @["Nixon"] = count();
38 @["Bush"] = count();
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_AGG_COMM.AggAftCommit.d39 @a["foo"] = count();
/freebsd-current/contrib/libfido2/src/
H A Dbuf.c11 fido_buf_read(const unsigned char **buf, size_t *len, void *dst, size_t count) argument
13 if (count > *len)
16 memcpy(dst, *buf, count);
17 *buf += count;
18 *len -= count;
24 fido_buf_write(unsigned char **buf, size_t *len, const void *src, size_t count) argument
26 if (count > *len)
29 memcpy(*buf, src, count);
30 *buf += count;
31 *len -= count;
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/
H A Derr.D_PRINTF_ARG_TYPE.jstack.d31 @[jstack()] = count();
H A Derr.D_PRINTF_ARG_TYPE.ustack.d31 @[ustack()] = count();
H A Derr.D_PRINTF_ARG_TYPE.stack.d31 @[stack()] = count();
H A Dtst.stack.d31 @[stack()] = count();
32 @[ustack()] = count();
33 @[jstack()] = count();
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/
H A Derr.D_TRACE_AGG.bad.d22 @ = count();
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/
H A Derr.D_PRINT_AGG.bad.d22 @ = count();
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/
H A Derr.D_PRINTF_ARG_TYPE.aggarg.d40 @a = count();
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/
H A Derr.D_ADDROF_VAR.agg.d40 @a = count();
/freebsd-current/sbin/hastd/
H A Drefcnt.h38 refcnt_init(refcnt_t *count, unsigned int v) argument
41 *count = v;
45 refcnt_acquire(refcnt_t *count) argument
48 atomic_add_acq_int(count, 1);
52 refcnt_release(refcnt_t *count) argument
57 old = atomic_fetchadd_int(count, -1);

Completed in 134 milliseconds

1234567891011>>