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

123456

/freebsd-10.1-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-10.1-release/crypto/openssl/crypto/objects/
H A Dobj_dat.c100 static LHASH_OF(ADDED_OBJ) *added = NULL;
193 if (added != NULL)
195 added = lh_ADDED_OBJ_new();
196 return (added != NULL);
240 if (added == NULL)
242 lh_ADDED_OBJ_down_load(added) = 0;
243 lh_ADDED_OBJ_doall(added, LHASH_DOALL_FN(cleanup1)); /* zero counters */
244 lh_ADDED_OBJ_doall(added, LHASH_DOALL_FN(cleanup2)); /* set counters */
245 lh_ADDED_OBJ_doall(added, LHASH_DOALL_FN(cleanup3)); /* free objects */
246 lh_ADDED_OBJ_free(added);
[all...]
/freebsd-10.1-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-10.1-release/contrib/apr-util/include/
H A Dapr_ldap_init.h52 #error The security return codes must be added to support this LDAP toolkit.
/freebsd-10.1-release/contrib/unbound/util/
H A Dwinsock_event.c327 continue; /* added by other callback */
481 ev->added = 0;
489 ev->added = 0;
495 verbose(VERB_ALGO, "event_add %p added=%d fd=%d tv=" ARG_LL "d %s%s%s",
496 ev, ev->added, ev->ev_fd,
501 if(ev->added)
570 ev->added = 1;
576 verbose(VERB_ALGO, "event_del %p added=%d fd=%d tv=" ARG_LL "d %s%s%s",
577 ev, ev->added, ev->ev_fd,
583 if(!ev->added)
[all...]
H A Dmini_event.c283 ev->added = 0;
290 ev->added = 0;
297 if(ev->added)
326 ev->added = 1;
344 ev->added = 0;
370 ev->added = 1;
383 ev->added = 0;
H A Dmini_event.h91 /* fdset for read write, for fds ready, and added */
99 /** ready plus newly added events. */
117 /** is event already added */
118 int added; member in struct:event
H A Dwinsock_event.h158 /** is event already added */
159 int added; member in struct:event
176 /** index of this event in the items array (if added) */
/freebsd-10.1-release/sys/dev/sfxge/
H A Dsfxge_tx.c127 level = txq->added - txq->completed;
206 old_added = txq->added;
210 txq->reaped, &txq->added);
217 KASSERT(txq->added - old_added == txq->n_pend_desc,
220 level = txq->added - txq->reaped;
232 level = txq->added - txq->reaped;
244 level = txq->added - txq->reaped;
274 id = txq->added & (SFXGE_NDESCS - 1);
377 pushed = txq->added;
406 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
/freebsd-10.1-release/contrib/subversion/subversion/include/
H A Dsvn_mergeinfo.h171 * Place the result in @a *deleted and @a *added (neither output argument
173 * @a *deleted and @a *added will not be null.
193 svn_mergeinfo_diff2(svn_mergeinfo_t *deleted, svn_mergeinfo_t *added,
206 svn_mergeinfo_diff(svn_mergeinfo_t *deleted, svn_mergeinfo_t *added,
289 * and @a to, and place the result in @a *deleted and @a *added
299 svn_rangelist_diff(svn_rangelist_t **deleted, svn_rangelist_t **added,
306 * @a rangelist. New elements added to @a rangelist are allocated
/freebsd-10.1-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
/freebsd-10.1-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-10.1-release/contrib/pam_modules/pam_passwdqc/
H A Dpam_passwdqc.spec61 - 0.2: added "use_authtok", added README.
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_client/
H A Drepos_diff.c29 * deleted. Files that are added by the delta do not require a
105 /* Gets set if the directory is added rather than replaced/unchanged. */
106 svn_boolean_t added; member in struct:dir_baton
158 /* Gets set if the file is added rather than replaced. */
159 svn_boolean_t added; member in struct:file_baton
217 * this directory is being added rather than replaced. PARENT_BATON is
227 svn_boolean_t added,
236 dir_baton->added = added;
275 * directory PARENT_PATH. ADDED is set if this file is being added
224 make_dir_baton(const char *path, struct dir_baton *parent_baton, struct edit_baton *edit_baton, svn_boolean_t added, svn_revnum_t base_revision, apr_pool_t *result_pool) argument
280 make_file_baton(const char *path, struct dir_baton *parent_baton, svn_boolean_t added, apr_pool_t *result_pool) argument
[all...]
/freebsd-10.1-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-10.1-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-10.1-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-10.1-release/crypto/openssl/crypto/engine/
H A Deng_table.c136 int ret = 0, added = 0; local
140 added = 1;
143 if (added)
144 /* The cleanup callback needs to be added */
/freebsd-10.1-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
460 int ind_level, cnt, last, added; local
524 added = appendextdata(dp);
534 writeextdata(dp, ino, added);
549 added = appendextdata(dp);
551 writeextdata(dp, ino, added);
666 int i, j, count, resid, blks, tbperdb, added; local
698 added = appendextdata(dp);
712 writeextdata(dp, ino, added);
771 writeextdata(union dinode *dp, ino_t ino, int added) argument
[all...]
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dmergeinfo.c222 non-intersecting portions are added as separate ranges allocated in
242 RESULT_POOL or modify the existing range in place. Any new ranges added
770 set *RANGE_INDEX to the index of the youngest element modified, added, or
837 younger than NEXT_RANGE is added as a separate range:
1491 svn_rangelist_diff(svn_rangelist_t **deleted, svn_rangelist_t **added, argument
1500 [to] added
1508 [to] added
1512 [to] added
1516 [to] added added
1537 svn_mergeinfo_t added; member in struct:mergeinfo_diff_baton
1590 walk_mergeinfo_hash_for_diff(svn_mergeinfo_t from, svn_mergeinfo_t to, svn_mergeinfo_t deleted, svn_mergeinfo_t added, svn_boolean_t consider_inheritance, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1608 svn_mergeinfo_diff2(svn_mergeinfo_t *deleted, svn_mergeinfo_t *added, svn_mergeinfo_t from, svn_mergeinfo_t to, svn_boolean_t consider_inheritance, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1672 svn_rangelist_t *deleted, *added; local
[all...]
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_diff/
H A Dutil.c433 apr_hash_t *old_mergeinfo_hash, *new_mergeinfo_hash, *added, *deleted; local
447 SVN_ERR(svn_mergeinfo_diff2(&deleted, &added, old_mergeinfo_hash,
468 for (hi = apr_hash_first(pool, added);
/freebsd-10.1-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-10.1-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...]

Completed in 343 milliseconds

123456