Home
last modified time | relevance | path

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

1234

/openbsd-src/lib/libcurses/base/
H A Dvsscanf.c189 int consumed = 0; in vsscanf()
337 _nc_visbuf2(1, str + consumed), in vsscanf()
339 if (sscanf(str + consumed, my_fmt, pointer, &eaten) > 0) in vsscanf()
340 consumed += eaten; in vsscanf()
/openbsd-src/usr.bin/ssh/
H A Dssh-pkcs11-helper.c259 u_int consumed; in process()
301 consumed = buf_len - sshbuf_len(iqueue); in cleanup_exit()
302 if (msg_len < consumed) { in cleanup_exit()
303 error("msg_len %d < consumed %d", msg_len, consumed); in cleanup_exit()
306 if (msg_len > consumed) {
307 if ((r = sshbuf_consume(iqueue, msg_len - consumed)) != 0)
247 u_int consumed; process() local
H A Dxmss_wots.c89 int consumed = 0; in base_w() local
91 for (consumed = 0; consumed < out_len; consumed++) { in base_w()
H A Dsftp-server.c1774 u_int consumed; in process() local
1834 consumed = buf_len - sshbuf_len(iqueue); in process()
1835 if (msg_len < consumed) { in process()
1836 error("msg_len %u < consumed %u", msg_len, consumed); in process()
1839 if (msg_len > consumed && in process()
1840 (r = sshbuf_consume(iqueue, msg_len - consumed)) != 0) in process()
H A DOVERVIEW25 Data can be consumed from either end. The code is used heavily
/openbsd-src/gnu/llvm/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 …]
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dmacroexp.c512 int consumed = p - src->text + tok->len; in get_token() local
513 src->text += consumed; in get_token()
514 src->len -= consumed; in get_token()
521 int consumed; in get_token() local
524 consumed = p - src->text + tok->len; in get_token()
525 src->text += consumed; in get_token()
526 src->len -= consumed; in get_token()
H A Dax.h218 int consumed, produced; member
H A Dax-general.c452 height -= op->consumed; in ax_reqs()
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-bcanalyzer.rst207 The total number of bytes consumed by the 32-bit and 64-bit integers that use
212 The total number of bytes that would have been consumed by the 32-bit and 64-bit
253 The number of bytes consumed by instructions in the function.
257 The average number of bytes consumed by the instructions in the function.
277 The total number of bytes in this function consumed by the 32-bit and 64-bit
282 The total number of bytes in this function that would have been consumed by
H A Dllvm-pdbutil.rst163 =padding-pct - Sort classes by percentage of space consumed by padding
165 =padding-pct-imm - Sort classes by percentage of space consumed by immediate padding
H A Dllvm-ar.rst165 consumed without either :option:`a`, :option:`b` or :option:`i`.
172 be consumed without either :option:`a`, :option:`b` or :option:`i`. This
/openbsd-src/usr.sbin/ospf6d/
H A Drde_lsdb.c983 u_int16_t consumed; in lsa_get_prefix() local
999 consumed = sizeof(*lp); in lsa_get_prefix()
1003 if (len < consumed + sizeof(u_int32_t)) in lsa_get_prefix()
1007 consumed += sizeof(u_int32_t); in lsa_get_prefix()
1010 return (consumed); in lsa_get_prefix()
/openbsd-src/usr.sbin/unbound/daemon/
H A Dcachedump.c638 int consumed = 0; in load_msg() local
656 &security, &an, &ns, &ar, &ede, &consumed) != 8) { in load_msg()
661 if(consumed > 0 && (size_t)consumed < strlen(s)) in load_msg()
662 ede_str = s + consumed; in load_msg()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DConsumed.h39 namespace consumed {
/openbsd-src/gnu/llvm/llvm/cmake/modules/
H A DTableGen.cmake57 # a possibility of generated tables being consumed by MSVC, generate arrays of
59 # that the source might be consumed by MSVC.
/openbsd-src/gnu/llvm/llvm/docs/HistoricalNotes/
H A D2002-05-12-InstListChange.txt50 the amount of memory consumed by one pointer per instruction. Given the
H A D2001-05-18-ExceptionHandling.txt70 // execution continues after the try block: the exception is consumed
165 // Exception was consumed
/openbsd-src/sys/dev/ic/
H A Dmtd8xx.c872 int i, total_len = 0, consumed = 0; in mtd_rxeof() local
927 consumed++; in mtd_rxeof()
935 return (consumed); in mtd_rxeof()
/openbsd-src/gnu/llvm/llvm/include/llvm/Target/
H A DTargetSchedule.td281 // ProcResources indicates the set of resources consumed by the write.
283 // resource is consumed. Each ResourceCycles item is paired with the
285 // can be `[]`: in that case, all resources are consumed for a single
288 // be available but is not consumed, which is only relevant for
/openbsd-src/gnu/lib/libiberty/src/
H A Dregex.c1260 int i, consumed; in convert_mbs_to_wcs() local
1268 for( ; mb_remain > 0 ; ++wc_count, ++pdest, mb_remain -= consumed, in convert_mbs_to_wcs()
1269 psrc += consumed) in convert_mbs_to_wcs()
1272 consumed = __mbrtowc (pdest, psrc, mb_remain, &mbs); in convert_mbs_to_wcs()
1274 consumed = mbrtowc (pdest, psrc, mb_remain, &mbs); in convert_mbs_to_wcs()
1277 if (consumed <= 0) in convert_mbs_to_wcs()
1282 consumed = 1; in convert_mbs_to_wcs()
1291 if (consumed == 1 && (int) *psrc == 0x5c && (int) *pdest == 0xa5) in convert_mbs_to_wcs()
1294 offset_buffer[wc_count + 1] = mb_count += consumed; in convert_mbs_to_wcs()
/openbsd-src/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
/openbsd-src/sbin/init/
H A DNOTES92 (this at least decreases the amount of paper consumed :-)
/openbsd-src/gnu/llvm/llvm/docs/PDB/
H A Dindex.rst14 debug information that can be consumed by debuggers and other tools. Since
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-sh.c1239 unsigned int consumed; in parse_reg() local
1254 consumed = parse_reg_without_prefix (src, mode, reg); in parse_reg()
1256 if (consumed == 0) in parse_reg()
1259 return consumed + prefix; in parse_reg()

1234