Searched refs:batch (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-current/tests/sys/netinet/libalias/
H A Dperf.c75 } *batch; local
133 if (NULL == (batch = calloc(batch_size, sizeof(*batch)))) {
134 perror("calloc(batch)");
150 batch[i].src.s_addr = prv1.s_addr | htonl(rand_range(0, 0xffff));
151 batch[i].dst.s_addr = ext.s_addr | htonl(rand_range(0, 0xffff));
152 batch[i].sport = rand_range(1000, 60000);
153 batch[i].dport = rand_range(1000, 60000);
155 p->ip_src = batch[i].src;
156 p->ip_dst = batch[
[all...]
H A D2_natout.c256 } *batch; variable in typeref:struct:__anon7005
266 batch = calloc(batch_size, sizeof(*batch));
267 ATF_REQUIRE(batch != NULL);
279 batch[i].src.s_addr = s.s_addr | htonl(rand_range(0, 0xffff));
280 batch[i].dst.s_addr = d.s_addr | htonl(rand_range(0, 0xffff));
281 batch[i].sport = rand_range(1000, 60000);
282 batch[i].dport = rand_range(1000, 60000);
287 batch[i].src, batch[
303 free(batch); variable
[all...]
/freebsd-current/sys/compat/linuxkpi/common/src/
H A Dlinux_shrinker.c76 unsigned long batch; local
84 batch = s->batch ? s->batch : SHRINKER_BATCH;
86 sc.nr_to_scan = batch;
90 scanned += batch;
/freebsd-current/contrib/netbsd-tests/usr.bin/gdb/
H A Dt_regress.sh49 gdb --batch -x test.gdb dig >gdb.out
70 gdb --batch -x test.gdb ./test >gdb.out 2>&1
/freebsd-current/usr.bin/at/
H A DMakefile11 ${BINDIR}/at ${BINDIR}/batch
12 MLINKS= at.1 batch.1 \
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dshrinker.h42 long batch; member in struct:shrinker
/freebsd-current/crypto/openssh/regress/
H A Dputty-transfer.sh20 env HOME=$PWD ${PLINK} -load compression_$c -batch \
32 -batch -i ${OBJ}/putty.rsa2 \
H A Dsftp.sh6 SFTPCMDFILE=${OBJ}/batch
H A Dssh-com-sftp.sh6 SFTPCMDFILE=${OBJ}/batch
H A Dputty-kex.sh29 env HOME=$PWD ${PLINK} -v -load localhost_proxy -batch -i ${OBJ}/putty.rsa2 true \
H A Dputty-ciphers.sh47 env HOME=$PWD ${PLINK} -load cipher_$c -batch -i ${OBJ}/putty.rsa2 \
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h32 void *batch[kSize]; member in struct:__sanitizer::QuarantineBatch
36 batch[0] = ptr;
37 this->size = size + sizeof(QuarantineBatch); // Account for the batch size.
40 // The total size of quarantined nodes recorded in this batch.
47 batch[count++] = ptr;
60 batch[count + i] = from->batch[i];
161 // require some tuning). It saves us merge attempt when the batch list
182 CHECK(kPrefetch <= ARRAY_SIZE(b->batch));
184 PREFETCH(b->batch[
[all...]
H A Dsanitizer_allocator_local_cache.h168 void *res = c->batch[--c->count];
169 PREFETCH(c->batch[c->count - 1]);
183 c->batch[c->count++] = p;
211 void *batch[2 * TransferBatch::kMaxNumCached]; member in struct:SizeClassAllocator32LocalCache::PerClass
227 // id. 0 means the class size is large enough to store a batch within one
248 b->CopyToArray(c->batch);
259 class_id, allocator, (TransferBatch *)c->batch[first_idx_to_drain]);
260 // Failure to allocate a batch while releasing memory is non recoverable.
261 // TODO(alekseys): Figure out how to do it without allocating a new batch.
264 "transfer batch
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_dense_alloc.h113 // The stack itself uses Block::next links, while the batch within each
114 // stack node uses Block::batch links.
122 IndexT batch; member in struct:__tsan::DenseSlabAlloc::Block
131 // Pop 1 batch of nodes from the freelist.
146 idx = MapBlock(idx)->batch;
151 // Build a batch of at most Cache::kSize / 2 nodes linked by Block::batch.
156 ptr->batch = head_idx;
180 T *batch = (T *)MmapOrDie(kL2Size * sizeof(T), name_); local
181 map_[fillpos] = batch;
[all...]
/freebsd-current/usr.bin/patch/
H A Dcommon.h87 extern bool batch;
/freebsd-current/sys/geom/eli/
H A Dg_eli_privacy.c264 bool batch; local
312 batch = atomic_load_int(&g_eli_batch) != 0;
348 if (batch) {
357 if (batch)
H A Dg_eli_integrity.c457 bool batch; local
512 batch = atomic_load_int(&g_eli_batch) != 0;
576 if (batch) {
585 if (batch)
/freebsd-current/libexec/rc/rc.d/
H A Dsendmail131 openssl req -batch -passout pass:"$certpass" -new -x509 \
136 openssl req -batch -nodes -new -x509 -keyout newkey.pem \
145 -key "$certpass" -batch -infiles tmp.pem >/dev/null 2>&1 &&
/freebsd-current/tools/tools/netmap/
H A Dlb.c99 uint16_t batch; member in struct:__anon6383
399 printf(" -b batch batch size (default: %d)\n", DEF_BATCH);
624 glob_arg.batch = DEF_BATCH;
658 glob_arg.batch = atoi(optarg);
659 D("batch is %d", glob_arg.batch);
1004 int batch = 0; local
1041 batch++;
1042 if (unlikely(batch >
[all...]
/freebsd-current/sys/dev/sfxge/
H A Dsfxge_rx.c225 unsigned int batch; local
253 batch = 0;
261 id = (rxq->added + batch) & rxq->ptr_mask;
278 addr[batch++] = seg.ds_addr;
280 if (batch == SFXGE_REFILL_BATCH) {
281 efx_rx_qpost(rxq->common, addr, mblksize, batch,
283 rxq->added += batch;
284 batch = 0;
291 if (batch != 0) {
292 efx_rx_qpost(rxq->common, addr, mblksize, batch,
[all...]
/freebsd-current/sys/dev/sfxge/common/
H A Defx_ev.c389 unsigned int batch; local
415 /* Read up until the end of the batch period */
416 batch = EFX_EV_BATCH - (count & (EFX_EV_BATCH - 1));
418 for (total = 0; total < batch; ++total) {
433 * Prefetch the next batch when we get within PREFETCH_PERIOD
434 * of a completed batch. If the batch is smaller, then prefetch
437 if (total == batch && total < EFSYS_OPT_EV_PREFETCH_PERIOD)
441 /* Process the batch of events */
447 /* Prefetch if we've now reached the batch perio
[all...]
/freebsd-current/sys/dev/netmap/
H A Dnetmap_kloop.c169 int batch; local
185 batch = shadow_ring.head - kring->nr_hwcur;
186 if (batch < 0)
187 batch += num_slots;
190 if (batch > PTN_TX_BATCH_LIM(num_slots)) {
192 * that we don't exceed our batch limit. */
197 nm_prdis(1, "batch: %d head: %d head_lim: %d", batch, shadow_ring.head,
200 batch = PTN_TX_BATCH_LIM(num_slots);
/freebsd-current/crypto/openssl/apps/
H A Dca.c100 long days, int batch, const char *ext_sect, CONF *conf,
111 const char *enddate, long days, int batch, const char *ext_sect,
128 int batch, int verbose, X509_REQ *req, const char *ext_sect,
176 {"batch", OPT_BATCH, '-', "Don't ask questions"},
293 int batch = 0, default_op = 1, doupdatedb = 0, ext_copy = EXT_COPY_NONE; local
422 batch = 1;
801 batch = 1;
990 startdate, enddate, days, batch, extensions,
1011 enddate, days, batch, extensions, conf, verbose,
1032 enddate, days, batch, extension
1377 certify(X509 **xret, const char *infile, int informat, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(OPENSSL_STRING) *vfyopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, int batch, const char *ext_sect, CONF *lconf, int verbose, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, int selfsign, unsigned long dateopt) argument
1435 certify_cert(X509 **xret, const char *infile, int certformat, const char *passin, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(OPENSSL_STRING) *vfyopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, int batch, const char *ext_sect, CONF *lconf, int verbose, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, unsigned long dateopt) argument
1492 do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, const char *dgst, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial, const char *subj, unsigned long chtype, int multirdn, int email_dn, const char *startdate, const char *enddate, long days, int batch, int verbose, X509_REQ *req, const char *ext_sect, CONF *lconf, unsigned long certopt, unsigned long nameopt, int default_op, int ext_copy, int selfsign, unsigned long dateopt) argument
[all...]
/freebsd-current/sys/contrib/openzfs/scripts/
H A Dzloop.sh106 core_id=$($GDB --batch -c "$1" | grep "Core was generated by" | \
148 coredebug=$($GDB --batch --quiet \
/freebsd-current/usr.sbin/crashinfo/
H A Dcrashinfo.sh47 # Run a single gdb command against a kernel file in batch mode.
56 ${GDB} -batch -ex "$@" $k

Completed in 405 milliseconds

12