Home
last modified time | relevance | path

Searched refs:consumed (Results 1 – 25 of 233) sorted by relevance

12345678910

/netbsd-src/tests/bin/df/
H A Dgetmntinfo.c67 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()
/netbsd-src/external/bsd/tre/dist/lib/
H A Dregcomp.c53 size_t consumed; in tre_regncomp() local
61 consumed = tre_mbrtowc(wcptr, regex, n, &state); in tre_regncomp()
63 switch (consumed) in tre_regncomp()
67 consumed = 1; in tre_regncomp()
81 consumed = n; in tre_regncomp()
84 regex += consumed; in tre_regncomp()
85 n -= consumed; in tre_regncomp()
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DSSL_set_bio.pod49 previously set values then one reference is consumed for the rbio and one
50 reference is consumed for the wbio.
55 the same as the previously set value then one reference is consumed.
60 same as the previously set value, then no additional references are consumed.
66 previously set value then one reference is consumed for the B<wbio> and no
67 references are consumed for the B<rbio>.
73 were the same as each other then one reference is consumed for the B<rbio>
74 and no references are consumed for the B<wbio>.
81 to each other, then one reference is consumed for the B<rbio> and one
82 reference is consumed for the B<wbio>.
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DSSL_set_bio.pod49 previously set values then one reference is consumed for the rbio and one
50 reference is consumed for the wbio.
55 the same as the previously set value then one reference is consumed.
60 same as the previously set value, then no additional references are consumed.
66 previously set value then one reference is consumed for the B<wbio> and no
67 references are consumed for the B<rbio>.
73 were the same as each other then one reference is consumed for the B<rbio>
74 and no references are consumed for the B<wbio>.
82 other then one reference is consumed for the B<rbio> and one reference
83 is consumed
/netbsd-src/lib/libc/stdio/
H A Dopen_wmemstream.c130 ssize_t consumed, wlen; in wmemstream_write() local
147 consumed = 0; in wmemstream_write()
152 if (consumed == 0) { in wmemstream_write()
163 consumed += len; in wmemstream_write()
166 consumed += charlen; in wmemstream_write()
174 fprintf(stderr, "WMS: write(%p, %zu) = %zd\n", ms, len, consumed); in wmemstream_write()
176 return (consumed); in wmemstream_write()
/netbsd-src/sys/arch/amd64/stand/prekern/
H A Dprng.c208 size_t consumed; in prng_get_rand() local
213 consumed = RNGDATA_SIZE - rng.nused; in prng_get_rand()
214 memcpy(ptr, &rng.data[rng.nused], consumed); in prng_get_rand()
220 memcpy(ptr + consumed, &rng.data[rng.nused], in prng_get_rand()
221 sz - consumed); in prng_get_rand()
223 rng.nused += (sz - consumed); in prng_get_rand()
/netbsd-src/external/bsd/elftosb/dist/common/
H A DEncoreBootImage.cpp534 …ge::BootCommand::createFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed) in createFromData() argument
566 command->initFromData(blocks, count, consumed); in createFromData()
699 …Image::NopCommand::initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed) in initFromData() argument
705 *consumed = 1; in initFromData()
745 …Image::TagCommand::initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed) in initFromData() argument
757 *consumed = 1; in initFromData()
802 …mage::LoadCommand::initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed) in initFromData() argument
840 *consumed = 1 + dataBlockCount; in initFromData()
996 …mage::FillCommand::initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed) in initFromData() argument
1008 *consumed = 1; in initFromData()
[all …]
H A DEncoreBootImage.h329 …c BootCommand * createFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed);
350 virtual void initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed)=0;
425 virtual void initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed);
453 virtual void initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed);
495 virtual void initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed);
559 virtual void initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed);
607 virtual void initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed);
641 virtual void initFromData(const cipher_block_t * blocks, unsigned count, unsigned * consumed);
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/
H A Dasn1_dsa.c236 size_t consumed; in ossl_decode_der_dsa_sig() local
249 consumed = PACKET_data(&pkt) - *ppin; in ossl_decode_der_dsa_sig()
250 *ppin += consumed; in ossl_decode_der_dsa_sig()
251 return consumed; in ossl_decode_der_dsa_sig()
/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dxmss_wots.c93 int consumed = 0; in base_w() local
95 for (consumed = 0; consumed < out_len; consumed++) { in base_w()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DConsumed.cpp56 using namespace consumed;
250 case consumed::CS_None: in stateToString()
253 case consumed::CS_Unknown: in stateToString()
256 case consumed::CS_Unconsumed: in stateToString()
259 case consumed::CS_Consumed: in stateToString()
286 namespace consumed { namespace
457 namespace consumed { namespace
650 setStateForVarOrTmp(StateMap, PInfo, consumed::CS_Consumed); in handleCall()
654 setStateForVarOrTmp(StateMap, PInfo, consumed::CS_Unknown); in handleCall()
786 PropagationInfo(consumed::CS_Consumed))); in VisitCXXConstructExpr()
[all …]
/netbsd-src/tests/kernel/
H A Dh_segv.c238 goto consumed; in main()
244 goto consumed; in main()
250 consumed: in main()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Duuid.d1377 size_t consumed;
1392 consumed += skip();
1395 parserError(consumed, UUIDParsingException.Reason.tooLittle, "Insufficient Input");
1406 parserError(consumed, UUIDParsingException.Reason.invalidChar, "Unexpected '-'");
1410 consumed++;
1414 parserError(consumed, UUIDParsingException.Reason.invalidChar,
1421 consumed += 2;
1426 parserError(consumed, UUIDParsingException.Reason.tooLittle,
1440 parserError(consumed, UUIDParsingException.Reason.tooLittle,
1458 parserError(consumed, UUIDParsingException.Reason.invalidChar,
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Duuid.d1357 size_t consumed;
1372 consumed += skip();
1375 parserError(consumed, UUIDParsingException.Reason.tooLittle, "Insufficient Input");
1386 parserError(consumed, UUIDParsingException.Reason.invalidChar, "Unexpected '-'");
1390 consumed++;
1394 parserError(consumed, UUIDParsingException.Reason.invalidChar,
1401 consumed += 2;
1406 parserError(consumed, UUIDParsingException.Reason.tooLittle,
1420 parserError(consumed, UUIDParsingException.Reason.tooLittle,
1438 parserError(consumed, UUIDParsingException.Reason.invalidChar,
[all …]
/netbsd-src/external/mpl/dhcp/dist/common/
H A Dns_name.c726 int consumed = 1; in MRns_name_uncompress_list() local
737 while ((consumed > 0) && (src < (buf + buflen))) in MRns_name_uncompress_list()
750 consumed = MRns_name_uncompress(buf, buf + buflen, src, in MRns_name_uncompress_list()
752 if (consumed < 0) { in MRns_name_uncompress_list()
756 src += consumed; in MRns_name_uncompress_list()
/netbsd-src/usr.bin/nl/
H A Dnl.c279 int consumed; /* intbuffer measurement */ in filter() local
333 consumed = snprintf(intbuffer, intbuffersize, format, in filter()
336 intbuffer + max(0, consumed - width), sep); in filter()
/netbsd-src/external/gpl3/gcc/dist/gcc/lto/
H A Dlto-object.cc73 int consumed; in lto_obj_file_open() local
83 && sscanf (offset_p, "@%li%n", &loffset, &consumed) >= 1 in lto_obj_file_open()
84 && strlen (offset_p) == (unsigned int) consumed) in lto_obj_file_open()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/lto/
H A Dlto-object.c73 int consumed; in lto_obj_file_open() local
83 && sscanf (offset_p, "@%li%n", &loffset, &consumed) >= 1 in lto_obj_file_open()
84 && strlen (offset_p) == (unsigned int) consumed) in lto_obj_file_open()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-bcanalyzer.rst219 The total number of bytes consumed by the 32-bit and 64-bit integers that use
224 The total number of bytes that would have been consumed by the 32-bit and 64-bit
265 The number of bytes consumed by instructions in the function.
269 The average number of bytes consumed by the instructions in the function.
289 The total number of bytes in this function consumed by the 32-bit and 64-bit
294 The total number of bytes in this function that would have been consumed by
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Notes/
H A Dcputimes_notes.txt12 cputimes measures time consumed by the kernel, idle therads and processes,
21 see kernel consumed time, which is the idea behind cputimes.
64 This sample was taken during heavy network utilisation, the time consumed
/netbsd-src/external/cddl/dtracetoolkit/dist/Notes/
H A Dcputimes_notes.txt12 cputimes measures time consumed by the kernel, idle therads and processes,
21 see kernel consumed time, which is the idea behind cputimes.
64 This sample was taken during heavy network utilisation, the time consumed
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dlto-wrapper.cc1183 int consumed; in debug_objcopy() local
1186 && sscanf (p, "@%li%n", &loffset, &consumed) >= 1 in debug_objcopy()
1187 && strlen (p) == (unsigned int) consumed) in debug_objcopy()
1463 int consumed; in run_gcc() local
1476 && sscanf (p, "@%li%n", &loffset, &consumed) >= 1 in run_gcc()
1477 && strlen (p) == (unsigned int) consumed) in run_gcc()
1754 int fd, consumed; in run_gcc() local
1760 && sscanf (p, "@%li%n", &loffset, &consumed) >= 1 in run_gcc()
1761 && strlen (p) == (unsigned int) consumed) in run_gcc()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dlto-wrapper.c1133 int consumed; in debug_objcopy() local
1136 && sscanf (p, "@%li%n", &loffset, &consumed) >= 1 in debug_objcopy()
1137 && strlen (p) == (unsigned int) consumed) in debug_objcopy()
1377 int consumed; in run_gcc() local
1391 && sscanf (p, "@%li%n", &loffset, &consumed) >= 1 in run_gcc()
1392 && strlen (p) == (unsigned int) consumed) in run_gcc()
1608 int fd, consumed; in run_gcc() local
1614 && sscanf (p, "@%li%n", &loffset, &consumed) >= 1 in run_gcc()
1615 && strlen (p) == (unsigned int) consumed) in run_gcc()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/gcn/
H A Dgcn-run.cc513 unsigned int consumed; member
534 unsigned int from = __atomic_load_n (&kernargs->output_data.consumed, in gomp_print_output()
574 __atomic_store_n (&kernargs->output_data.consumed, i+1, in gomp_print_output()
715 kernargs->output_data.consumed = 0; in main()
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Dcswstat_example.txt23 consumed by all of these context switches in total is printed, peaking

12345678910