| /freebsd/contrib/netbsd-tests/bin/df/ |
| H A D | getmntinfo.c | 67 const int *consumed, int consumedcnt) in other_variants() argument 78 used = total * consumed[j] / 100; in other_variants() 110 static const int consumed[] = { 0, 20, 60, 95, 100 }; in setup_filer() local 114 consumed, sizeof(consumed) / sizeof(consumed[0])); in setup_filer() 143 static const int consumed[] = { 0, 20, 60, 95, 100 }; in setup_ld0g() local 147 consumed, sizeof(consumed) / sizeof(consumed[0])); in setup_ld0g()
|
| /freebsd/lib/libc/stdio/ |
| H A D | open_wmemstream.c | 133 ssize_t consumed, wlen; in wmemstream_write() local 150 consumed = 0; in wmemstream_write() 155 if (consumed == 0) { in wmemstream_write() 166 consumed += len; in wmemstream_write() 169 consumed += charlen; in wmemstream_write() 177 fprintf(stderr, "WMS: write(%p, %d) = %zd\n", ms, len, consumed); in wmemstream_write() 179 return (consumed); in wmemstream_write()
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | SSL_set_bio.pod | 58 previously set values then one reference is consumed for the rbio and one 59 reference is consumed for the wbio. 64 the same as the previously set value then one reference is consumed. 69 same as the previously set value, then no additional references are consumed. 75 previously set value then one reference is consumed for the B<wbio> and no 76 references are consumed for the B<rbio>. 82 were the same as each other then one reference is consumed for the B<rbio> 83 and no references are consumed for the B<wbio>. 90 to each other, then one reference is consumed for the B<rbio> and one 91 reference is consumed for the B<wbio>.
|
| /freebsd/crypto/openssl/crypto/ |
| H A D | asn1_dsa.c | 237 size_t consumed; in ossl_decode_der_dsa_sig() local 250 consumed = PACKET_data(&pkt) - *ppin; in ossl_decode_der_dsa_sig() 251 *ppin += consumed; in ossl_decode_der_dsa_sig() 252 return consumed; in ossl_decode_der_dsa_sig()
|
| /freebsd/crypto/openssh/ |
| H A D | ssh-pkcs11-helper.c | 155 u_int consumed; in process() local 193 consumed = buf_len - sshbuf_len(iqueue); in process() 194 if (msg_len < consumed) { in process() 195 error("msg_len %d < consumed %d", msg_len, consumed); in process() 198 if (msg_len > consumed) { in process() 199 if ((r = sshbuf_consume(iqueue, msg_len - consumed)) != 0) in process()
|
| /freebsd/stand/efi/loader/ |
| H A D | decompress.c | 175 size_t consumed = len - strm->avail_in; in zlib_step() local 176 return (zlib_step(dctx, buf + consumed, strm->avail_in, offset + consumed)); in zlib_step() 239 size_t consumed = len - strm->avail_in; in bzip2_step() local 240 return (bzip2_step(dctx, buf + consumed, strm->avail_in, offset + consumed)); in bzip2_step() 322 size_t consumed = b.in_pos; in xz_step() local 323 return (xz_step(dctx, buf + consumed, len - consumed, offset + consumed)); in xz_step()
|
| /freebsd/contrib/ncurses/ncurses/base/ |
| H A D | vsscanf.c | 184 int consumed = 0; in vsscanf() 332 _nc_visbuf2(1, str + consumed), in vsscanf() 334 if (sscanf(str + consumed, my_fmt, pointer, &eaten) > 0) in vsscanf() 335 consumed += eaten; in vsscanf()
|
| /freebsd/usr.sbin/mfiutil/ |
| H A D | mfi_volume.c | 290 int error, fd, consumed; in volume_cache() local 374 consumed = process_cache_command(ac, av, &new); in volume_cache() 375 if (consumed < 0) { in volume_cache() 379 av += consumed; in volume_cache() 380 ac -= consumed; in volume_cache()
|
| /freebsd/crypto/openssl/ssl/quic/ |
| H A D | quic_fc.c | 49 uint64_t ossl_quic_txfc_get_credit_local(QUIC_TXFC *txfc, uint64_t consumed) in ossl_quic_txfc_get_credit_local() argument 51 assert((txfc->swm + consumed) <= txfc->cwm); in ossl_quic_txfc_get_credit_local() 52 return txfc->cwm - (consumed + txfc->swm); in ossl_quic_txfc_get_credit_local() 55 uint64_t ossl_quic_txfc_get_credit(QUIC_TXFC *txfc, uint64_t consumed) in ossl_quic_txfc_get_credit() argument 63 conn_r = ossl_quic_txfc_get_credit_local(txfc->parent, consumed); in ossl_quic_txfc_get_credit()
|
| H A D | quic_sstream.c | 285 size_t *consumed) in ossl_quic_sstream_append() argument 292 *consumed = 0; in ossl_quic_sstream_append() 323 *consumed = 0; in ossl_quic_sstream_append() 328 *consumed = consumed_; in ossl_quic_sstream_append()
|
| /freebsd/crypto/openssl/test/ |
| H A D | quic_stream_test.c | 223 size_t consumed = 0, total_written = 0, rd, cur_rd, expected = 0, start_at; in test_sstream_bulk() local 250 &consumed)) in test_sstream_bulk() 251 || !TEST_size_t_eq(consumed, init_size / 2) in test_sstream_bulk() 268 if (!TEST_true(ossl_quic_sstream_append(sstream, src_buf, l, &consumed))) in test_sstream_bulk() 271 memcpy(ref_src_cur, src_buf, consumed); in test_sstream_bulk() 272 ref_src_cur += consumed; in test_sstream_bulk() 273 total_written += consumed; in test_sstream_bulk() 274 } while (consumed > 0); in test_sstream_bulk()
|
| /freebsd/tools/tools/dmardump/ |
| H A D | dmardump.c | 224 int remaining, consumed; in acpi_handle_dmar() local 231 consumed = acpi_handle_dmar_remapping_structure(cp, remaining); in acpi_handle_dmar() 232 if (consumed <= 0) in acpi_handle_dmar() 235 remaining -= consumed; in acpi_handle_dmar()
|
| /freebsd/crypto/openssl/demos/http3/ |
| H A D | ossl-nghttp3.c | 219 size_t consumed, in h3_conn_deferred_consume() argument 226 ret = conn->deferred_consume_cb(h3conn, stream_id, consumed, in h3_conn_deferred_consume() 229 conn->consumed_app_data += consumed; in h3_conn_deferred_consume() 465 size_t num_bytes, consumed; in h3_conn_pump_stream() local 559 consumed = ec + conn->consumed_app_data; in h3_conn_pump_stream() 560 assert(consumed <= s->buf_total - s->buf_cur); in h3_conn_pump_stream() 561 s->buf_cur += consumed; in h3_conn_pump_stream()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | Consumed.cpp | 53 using namespace consumed; 243 case consumed::CS_None: in stateToString() 246 case consumed::CS_Unknown: in stateToString() 249 case consumed::CS_Unconsumed: in stateToString() 252 case consumed::CS_Consumed: in stateToString() 279 namespace consumed { namespace 450 namespace consumed { namespace 643 setStateForVarOrTmp(StateMap, PInfo, consumed::CS_Consumed); in handleCall() 647 setStateForVarOrTmp(StateMap, PInfo, consumed::CS_Unknown); in handleCall() 779 PropagationInfo(consumed::CS_Consumed))); in VisitCXXConstructExpr() [all …]
|
| /freebsd/contrib/libxo/tests/core/saved/ |
| H A D | test_11.H.out | 5 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| H A D | test_11.HIPx.out | 5 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| H A D | test_11.HP.out | 5 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| H A D | test_11.J.out | 5 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| H A D | test_11.JP.out | 5 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| H A D | test_11.JPu.out | 5 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| H A D | test_11.T.out | 5 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| H A D | test_11.X.out | 5 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| H A D | test_11.XP.out | 5 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| H A D | test_11.E.out | 8 {{<22>1 2015-06-23T13:47:09.123-0500 worker-host test-program 222 animal-consumed [animal-consumed@…
|
| /freebsd/sys/contrib/zstd/lib/compress/ |
| H A D | zstdmt_compress.c | 663 …size_t consumed; /* SHARED - set0 by mtctx, then modified by worker AND read by … member 779 job->consumed = chunkSize * chunkNb; in ZSTDMT_compressionJob() 817 …job->consumed = job->src.size; /* when job->consumed == job->src.size , compression job is presum… in ZSTDMT_compressionJob() 886 unsigned long long consumed; member 1035 while (mtctx->jobs[jobID].consumed < mtctx->jobs[jobID].src.size) { in ZSTDMT_waitForAllJobsCompleted() 1117 fps.ingested = mtctx->consumed + mtctx->inBuff.filled; in ZSTDMT_getFrameProgression() 1118 fps.consumed = mtctx->consumed; in ZSTDMT_getFrameProgression() 1135 fps.consumed += jobPtr->consumed; in ZSTDMT_getFrameProgression() 1138 fps.nbActiveWorkers += (jobPtr->consumed < jobPtr->src.size); in ZSTDMT_getFrameProgression() 1162 assert(jobPtr->consumed <= jobPtr->src.size); in ZSTDMT_toFlushNow() [all …]
|