Searched refs:added (Results 1 - 25 of 113) sorted by relevance

12345

/freebsd-9.3-release/crypto/openssl/demos/tunala/
H A Dbuffer.c68 unsigned int added = MAX_DATA_SIZE - buf->used;
69 if (added > size)
70 added = size;
71 if (added == 0)
73 memcpy(buf->data + buf->used, ptr, added);
74 buf->used += added;
75 buf->total_in += added;
76 return added;
/freebsd-9.3-release/contrib/ntp/lib/isc/win32/
H A Dentropy.c54 unsigned int added; local
61 added = 0;
71 added += ndesired * 8;
76 return (added);
85 unsigned int added; local
150 added = 0;
175 added += got;
189 if (!(ent->nextsource == firstsource && added == 0)) {
208 added += got;
211 if (added >
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/objects/
H A Dobj_dat.c98 static LHASH *added = NULL; variable
190 if (added != NULL)
192 added = lh_new(add_hash, add_cmp);
193 return (added != NULL);
221 if (added == NULL)
223 added->down_load = 0;
224 lh_doall(added, LHASH_DOALL_FN(cleanup1)); /* zero counters */
225 lh_doall(added, LHASH_DOALL_FN(cleanup2)); /* set counters */
226 lh_doall(added, LHASH_DOALL_FN(cleanup3)); /* free objects */
227 lh_free(added);
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/unix/
H A Dentropy.c78 unsigned int added; local
85 added = 0;
98 added += n * 8;
109 return (added);
118 unsigned int added; local
126 added = 0;
230 added += n * 8;
242 return (added);
251 unsigned int added; local
315 added
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/unix/
H A Dentropy.c78 unsigned int added; local
85 added = 0;
98 added += n * 8;
109 return (added);
118 unsigned int added; local
126 added = 0;
230 added += n * 8;
242 return (added);
251 unsigned int added; local
315 added
[all...]
/freebsd-9.3-release/sys/dev/sfxge/
H A Dsfxge_tx.c112 level = txq->added - txq->completed;
191 old_added = txq->added;
195 txq->reaped, &txq->added);
202 KASSERT(txq->added - old_added == txq->n_pend_desc,
205 level = txq->added - txq->reaped;
217 level = txq->added - txq->reaped;
229 level = txq->added - txq->reaped;
259 id = txq->added & (SFXGE_NDESCS - 1);
362 pushed = txq->added;
391 if (txq->added
[all...]
H A Dsfxge_rx.h164 unsigned int added; member in struct:sfxge_rxq
H A Dsfxge_tx.h154 unsigned int added; member in struct:sfxge_txq
H A Dsfxge_rx.c216 rxfill = rxq->added - rxq->completed;
234 id = (rxq->added + batch) & (SFXGE_NDESCS - 1);
247 rxq->completed, rxq->added);
248 rxq->added += batch;
258 rxq->completed, rxq->added);
259 rxq->added += batch;
266 efx_rx_qpush(rxq->common, rxq->added);
807 level = rxq->added - rxq->completed;
873 rxq->pending = rxq->added;
879 rxq->added
[all...]
/freebsd-9.3-release/contrib/gcc/cp/
H A Dg++spec.c67 /* The number of arguments being added to what's in argv, other than
70 int added = 0; local
106 /* The number of libraries added in. */
222 added += 2;
241 if (! added && library <= 0)
254 num_args = argc + added + need_math + shared_libgcc + (library > 0) + 1;
/freebsd-9.3-release/contrib/pam_modules/pam_passwdqc/
H A Dpam_passwdqc.spec61 - 0.2: added "use_authtok", added README.
/freebsd-9.3-release/crypto/openssh/contrib/
H A Dssh-copy-id284 Would have added the following key(s):
292 Number of key(s) added: $ADDED
295 and check to make sure that only the key(s) you wanted were added.
/freebsd-9.3-release/sys/dev/sfxge/common/
H A Defx_tx.c168 unsigned int added = *addedp; local
174 if (added - completed + n > EFX_TXQ_LIMIT(etp->et_mask + 1))
186 EFX_TX_DESC(etp, start, size, ebp->eb_eop, added);
191 *addedp = added;
203 __in unsigned int added)
216 wptr = added & etp->et_mask;
201 efx_tx_qpush( __in efx_txq_t *etp, __in unsigned int added) argument
H A Defx_rx.c555 __in unsigned int added)
565 EFSYS_ASSERT3U(added - completed + n, <=,
568 id = added & (erp->er_mask);
591 __in unsigned int added)
604 wptr = added & erp->er_mask;
549 efx_rx_qpost( __in efx_rxq_t *erp, __in_ecount(n) efsys_dma_addr_t *addrp, __in size_t size, __in unsigned int n, __in unsigned int completed, __in unsigned int added) argument
589 efx_rx_qpush( __in efx_rxq_t *erp, __in unsigned int added) argument
/freebsd-9.3-release/contrib/one-true-awk/
H A DFIXES32 added __attribute__((__noreturn__)) to a couple of lines in
54 added checks to new -v code that permits -vnospace; thanks to
67 added #ifdef for isblank.
159 added -version and --version options.
183 smaller size, and i think that's right. added some assertions to b.c
258 added some parens to isblank, in another attempt to make things
303 added some tests for null pointers to debugging printf's, which
328 added a makefile.win to make it easier to build on windows.
332 added support for posix character class names like [:digit:],
358 arnold robbins for pointing this out. new regressions added
[all...]
/freebsd-9.3-release/sbin/kldconfig/
H A Dkldconfig.c155 static unsigned added = 0; local
198 for (i = 0, pskip = TAILQ_FIRST(pathq); i < added; i++)
204 added++;
/freebsd-9.3-release/crypto/openssl/crypto/engine/
H A Deng_table.c128 int ret = 0, added = 0; local
132 added = 1;
135 if (added)
136 /* The cleanup callback needs to be added */
/freebsd-9.3-release/sbin/dump/
H A Dtraverse.c84 static void writeextdata(union dinode *dp, ino_t ino, int added);
243 * files in it. If it does, and has not already been added to the dump
459 int ind_level, cnt, last, added; local
523 added = appendextdata(dp);
533 writeextdata(dp, ino, added);
548 added = appendextdata(dp);
550 writeextdata(dp, ino, added);
665 int i, j, count, resid, blks, tbperdb, added; local
692 added = appendextdata(dp);
706 writeextdata(dp, ino, added);
765 writeextdata(union dinode *dp, ino_t ino, int added) argument
[all...]
/freebsd-9.3-release/contrib/bmake/mk/
H A Dsys.clean-env.mk25 # are added to MAKE_ENV_SAVE_VAR_LIST after being filtered by...
33 # and added to MAKE_ENV_SAVE_VAR_LIST below.
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dentropy.c120 isc_uint32_t *extra; /*%< extra samples added in */
440 unsigned int added; local
445 added = 0;
458 added += estimate_entropy(sq, sq->samples[ns]);
460 entropypool_adddata(ent, sq->samples, sq->nsamples * 4, added);
474 return (added);
483 unsigned int added; local
500 added = 0;
506 added += got;
515 return (added);
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dentropy.c120 isc_uint32_t *extra; /*%< extra samples added in */
440 unsigned int added; local
445 added = 0;
458 added += estimate_entropy(sq, sq->samples[ns]);
460 entropypool_adddata(ent, sq->samples, sq->nsamples * 4, added);
474 return (added);
483 unsigned int added; local
500 added = 0;
506 added += got;
515 return (added);
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc126 // First check symbols added via AddSymbol().
/freebsd-9.3-release/tools/tools/portsinfo/
H A Dportsinfo.sh46 New ports added last two weeks
/freebsd-9.3-release/contrib/wpa/src/common/
H A Dwpa_common.c715 int added = 0; local
765 added += 2 + PMKID_LEN;
778 added += PMKID_LEN;
785 return added;
/freebsd-9.3-release/contrib/dialog/
H A Ddialog.c347 int added; local
377 if ((added = dlg_count_argv(list)) != 0) {
378 if (added > 2) {
379 size_t need = (size_t) (*argcp + added + 1);
396 (*argvp)[n + added - 2] = (*argvp)[n];
397 dialog_opts[n + added - 2] = dialog_opts[n];
399 for (n = 0; n < added; ++n) {
403 *argcp += added - 2;

Completed in 182 milliseconds

12345