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

/openbsd-current/usr.bin/ssh/
H A Dssh-pkcs11-helper.c247 u_int consumed; local
289 consumed = buf_len - sshbuf_len(iqueue);
290 if (msg_len < consumed) {
291 error("msg_len %d < consumed %d", msg_len, consumed);
294 if (msg_len > consumed) {
295 if ((r = sshbuf_consume(iqueue, msg_len - consumed)) != 0)
H A Dxmss_wots.c89 int consumed = 0; local
91 for (consumed = 0; consumed < out_len; consumed++) {
H A Dsftp-server.c1774 u_int consumed; local
1834 consumed = buf_len - sshbuf_len(iqueue);
1835 if (msg_len < consumed) {
1836 error("msg_len %u < consumed %u", msg_len, consumed);
1839 if (msg_len > consumed &&
1840 (r = sshbuf_consume(iqueue, msg_len - consumed)) != 0)
/openbsd-current/lib/libcurses/base/
H A Dvsscanf.c189 int consumed = 0;
337 _nc_visbuf2(1, str + consumed),
339 if (sscanf(str + consumed, my_fmt, pointer, &eaten) > 0)
340 consumed += eaten;
/openbsd-current/gnu/llvm/clang/lib/Analysis/
H A DConsumed.cpp9 // A intra-procedural analysis for checking consumed properties. This is based,
56 using namespace consumed;
250 case consumed::CS_None:
253 case consumed::CS_Unknown:
256 case consumed::CS_Unconsumed:
259 case consumed::CS_Consumed:
260 return "consumed";
286 namespace consumed { namespace in namespace:clang
442 } // namespace consumed
457 namespace consumed { namespace in namespace:clang
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dmacroexp.c514 int consumed = p - src->text + tok->len;
515 src->text += consumed;
516 src->len -= consumed;
523 int consumed;
526 consumed = p - src->text + tok->len;
527 src->text += consumed;
528 src->len -= consumed;
512 int consumed = p - src->text + tok->len; local
521 int consumed; local
H A Dax.h220 /* Number of stack elements consumed, and number produced. */
221 int consumed, produced;
218 int consumed, produced; member in struct:aop_map
H A Dax-general.c454 height -= op->consumed;
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/
H A DSession.pm105 and about the consumed CPU time.
/openbsd-current/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DConsumed.h9 // A intra-procedural analysis for checking consumed properties. This is based,
39 namespace consumed { namespace in namespace:clang
115 /// Warn about use-while-consumed errors.
126 /// Warn about use-while-consumed errors.
166 /// Get the consumed state of a given variable.
169 /// Get the consumed state of a given temporary value.
190 /// Set the consumed state of a given variable.
193 /// Set the consumed state of a given temporary value.
258 /// Check a function's CFG for consumed violations.
267 } // namespace consumed
[all...]
/openbsd-current/usr.sbin/ospf6d/
H A Drde_lsdb.c983 u_int16_t consumed; local
999 consumed = sizeof(*lp);
1003 if (len < consumed + sizeof(u_int32_t))
1007 consumed += sizeof(u_int32_t);
1010 return (consumed);
/openbsd-current/usr.sbin/unbound/daemon/
H A Dcachedump.c638 int consumed = 0; local
656 &security, &an, &ns, &ar, &ede, &consumed) != 8) {
661 if(consumed > 0 && (size_t)consumed < strlen(s))
662 ede_str = s + consumed;
/openbsd-current/sys/dev/ic/
H A Dmtd8xx.c872 int i, total_len = 0, consumed = 0; local
927 consumed++;
935 return (consumed);
H A Ddc.c2082 int i, offset, total_len = 0, consumed = 0; local
2162 consumed++;
2170 return (consumed);
/openbsd-current/gnu/lib/libiberty/src/
H A Dregex.c1267 int i, consumed;
1275 for( ; mb_remain > 0 ; ++wc_count, ++pdest, mb_remain -= consumed,
1276 psrc += consumed)
1279 consumed = __mbrtowc (pdest, psrc, mb_remain, &mbs);
1281 consumed = mbrtowc (pdest, psrc, mb_remain, &mbs);
1284 if (consumed <= 0)
1289 consumed = 1;
1298 if (consumed == 1 && (int) *psrc == 0x5c && (int) *pdest == 0xa5)
1301 offset_buffer[wc_count + 1] = mb_count += consumed;
1260 int i, consumed; local
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-sh.c876 /* Try to parse a reg name. Return the number of chars consumed. */
1241 unsigned int consumed;
1256 consumed = parse_reg_without_prefix (src, mode, reg);
1258 if (consumed == 0)
1261 return consumed + prefix;
1239 unsigned int consumed; local
/openbsd-current/gnu/llvm/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp2057 namespace consumed {
2142 } // namespace consumed
2431 // Check for violations of consumed properties.
2433 consumed::ConsumedWarningsHandler WarningHandler(S);
2434 consumed::ConsumedAnalyzer Analyzer(WarningHandler);
/openbsd-current/sys/dev/pci/
H A Dif_ocereg.h215 uint32_t consumed:1; member in struct:oce_mq_cqe::__anon313::__anon314
231 uint32_t consumed:1;
/openbsd-current/gnu/usr.bin/perl/cpan/JSON-PP/lib/JSON/
H A DPP.pm812 my $consumed = defined $ch ? $at - 1 : $at; # consumed JSON text length
816 return ( $result, $consumed ) if $want_offset; # all right if decode_prefix
2402 silently stop parsing there and return the number of characters consumed
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp522 bool consumed = string.consume_front(ANSI_ESC_START); local
523 assert(consumed);
524 UNUSED_IF_ASSERT_DISABLED(consumed);
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/
H A DSpec.pm238 context and must not be produced in or consumed from any metadata structure
/openbsd-current/gnu/llvm/clang/include/clang/AST/
H A DType.h3726 /// Is this parameter considered "consumed" by Objective-C ARC?
3729 ExtParameterInfo withIsConsumed(bool consumed) const {
3731 if (consumed)
/openbsd-current/gnu/gcc/gcc/doc/include/
H A Dtexinfo.tex5818 % an opening brace, and that opening brace is not consumed.
/openbsd-current/gnu/usr.bin/binutils-2.17/texinfo/
H A Dtexinfo.tex5582 % an opening brace, and that opening brace is not consumed.
/openbsd-current/gnu/usr.bin/texinfo/doc/
H A Dtexinfo.tex5694 % an opening brace, and that opening brace is not consumed.

Completed in 780 milliseconds