| /freebsd-9-stable/usr.bin/grep/regex/ |
| D | tre-compile.c | 46 int consumed; in tre_convert_pattern() local 54 consumed = tre_mbrtowc(wcptr, regex, n, &state); in tre_convert_pattern() 56 switch (consumed) in tre_convert_pattern() 60 consumed = 1; in tre_convert_pattern() 74 consumed = n; in tre_convert_pattern() 77 regex += consumed; in tre_convert_pattern() 78 n -= consumed; in tre_convert_pattern()
|
| /freebsd-9-stable/lib/libc/stdio/ |
| D | open_wmemstream.c | 123 ssize_t consumed, wlen; in wmemstream_write() local 140 consumed = 0; in wmemstream_write() 145 if (consumed == 0) { in wmemstream_write() 156 consumed += len; in wmemstream_write() 159 consumed += charlen; in wmemstream_write() 167 fprintf(stderr, "WMS: write(%p, %d) = %zd\n", ms, len, consumed); in wmemstream_write() 169 return (consumed); in wmemstream_write()
|
| /freebsd-9-stable/crypto/openssh/ |
| D | ssh-pkcs11-helper.c | 211 u_int consumed; in process() local 251 consumed = buf_len - buffer_len(&iqueue); in process() 252 if (msg_len < consumed) { in process() 253 error("msg_len %d < consumed %d", msg_len, consumed); in process() 256 if (msg_len > consumed) in process() 257 buffer_consume(&iqueue, msg_len - consumed); in process()
|
| D | sftp-server.c | 1350 u_int msg_len, buf_len, consumed, type, i; in process() local 1404 consumed = buf_len - buffer_len(&iqueue); in process() 1405 if (msg_len < consumed) { in process() 1406 error("msg_len %u < consumed %u", msg_len, consumed); in process() 1409 if (msg_len > consumed) in process() 1410 buffer_consume(&iqueue, msg_len - consumed); in process()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Analysis/ |
| D | Consumed.cpp | 52 using namespace consumed; 240 case consumed::CS_None: in stateToString() 243 case consumed::CS_Unknown: in stateToString() 246 case consumed::CS_Unconsumed: in stateToString() 249 case consumed::CS_Consumed: in stateToString() 274 namespace consumed { namespace 664 setStateForVarOrTmp(StateMap, PInfo, consumed::CS_Consumed); in VisitCallExpr() 673 setStateForVarOrTmp(StateMap, PInfo, consumed::CS_Unknown); in VisitCallExpr() 720 PropagationInfo(consumed::CS_Consumed))); in VisitCXXConstructExpr() 735 StateMap->setState(Var, consumed::CS_Consumed); in VisitCXXConstructExpr() [all …]
|
| /freebsd-9-stable/contrib/ncurses/ncurses/base/ |
| D | vsscanf.c | 186 int consumed = 0; in vsscanf() 334 _nc_visbuf2(1, str + consumed), in vsscanf() 336 if (sscanf(str + consumed, my_fmt, pointer, &eaten) > 0) in vsscanf() 337 consumed += eaten; in vsscanf()
|
| /freebsd-9-stable/usr.sbin/mfiutil/ |
| 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-9-stable/usr.bin/make/ |
| D | var.c | 1886 size_t consumed; in ParseRestModifier() local 1899 consumed = vp->ptr - vp->input + 1; in ParseRestModifier() 1912 value = emalloc(consumed + 1); in ParseRestModifier() 1913 strncpy(value, vp->input, consumed); in ParseRestModifier() 1914 value[consumed] = '\0'; in ParseRestModifier() 1927 value = emalloc(consumed + 1); in ParseRestModifier() 1928 strncpy(value, vp->input, consumed); in ParseRestModifier() 1929 value[consumed] = '\0'; in ParseRestModifier() 1993 size_t consumed = vp->ptr - vp->input + 1; in ParseRestEnd() local 2007 value = emalloc(consumed + 1); in ParseRestEnd() [all …]
|
| /freebsd-9-stable/contrib/gdb/gdb/ |
| D | macroexp.c | 512 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()
|
| D | ax.h | 218 int consumed, produced; member
|
| D | ax-general.c | 452 height -= op->consumed; in ax_reqs()
|
| /freebsd-9-stable/usr.bin/nl/ |
| D | nl.c | 281 int consumed; /* intbuffer measurement */ in filter() local 335 consumed = sprintf(intbuffer, format, width, line); in filter() 337 intbuffer + max(0, consumed - width)); in filter()
|
| /freebsd-9-stable/sys/netinet/ |
| D | ip_fastfwd.c | 500 goto consumed; in ip_fastforward() 520 goto consumed; in ip_fastforward() 551 goto consumed; in ip_fastforward() 597 consumed: in ip_fastforward()
|
| /freebsd-9-stable/cddl/contrib/dtracetoolkit/Notes/ |
| D | cputimes_notes.txt | 12 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
|
| D | ALLoncpu_notes.txt | 16 since they measure how much CPU time has been consumed by that thread.
|
| /freebsd-9-stable/contrib/libpcap/ |
| D | pcap-usb-linux.c | 660 int dummy, ret, consumed, cnt; in usb_stats_linux() local 702 for (consumed=0; consumed < ret; ) { in usb_stats_linux() 715 consumed += cnt; in usb_stats_linux() 723 consumed += cnt; in usb_stats_linux()
|
| /freebsd-9-stable/cddl/contrib/dtracetoolkit/Examples/ |
| D | cswstat_example.txt | 23 consumed by all of these context switches in total is printed, peaking
|
| D | cpudists_example.txt | 2 of CPU time consumed by the Kernel, Idle thread, or Processes.
|
| D | shortlived_example.txt | 52 shortlived.d showed that 50% of the CPU was consumed by short lived
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Basic/ |
| D | Attr.td | 962 // C/C++ consumed attributes. 968 ["unknown", "consumed", "unconsumed"], 976 ["unknown", "consumed", "unconsumed"], 984 ["unknown", "consumed", "unconsumed"], 992 ["unknown", "consumed", "unconsumed"], 1000 ["unknown", "consumed", "unconsumed"], 1008 ["consumed", "unconsumed"],
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ |
| D | Consumed.h | 26 namespace consumed {
|
| /freebsd-9-stable/contrib/llvm/include/llvm/Target/ |
| D | TargetSchedule.td | 221 // ProcResources indicates the set of resources consumed by the write. 223 // resource is consumed. Each ResourceCycles item is paired with the 226 // incomplete. By default, resources are consumed for a single cycle, 229 // be available but is not consumed, which is only relevant for
|
| /freebsd-9-stable/contrib/bsnmp/snmpd/ |
| D | snmpd.h | 165 size_t consumed; /* how many bytes used */ member
|
| D | main.c | 1024 if (pi->consumed >= pi->length) { in snmp_input_consume() 1029 memmove(pi->buf, pi->buf + pi->consumed, pi->length - pi->consumed); in snmp_input_consume() 1030 pi->length -= pi->consumed; in snmp_input_consume() 1078 pi->consumed = 0; in recv_stream() 1254 &pi->consumed); in snmpd_input()
|
| /freebsd-9-stable/contrib/tcpdump/ |
| D | print-forces.c | 343 int consumed = len - more_pd; in pdata_print() local 344 pptr += consumed; in pdata_print()
|