HomeSort by: relevance | last modified time | path
    Searched defs:bufspace (Results 1 - 5 of 5) sorted by relevancy

  /src/lib/libedit/
chartype.c 146 size_t bufspace; local in function:ct_decode_argv
154 for (i = 0, bufspace = 0; i < argc; ++i)
155 bufspace += argv[i] ? strlen(argv[i]) + 1 : 0;
156 if (conv->wsize < ++bufspace)
157 if (ct_conv_wbuff_resize(conv, bufspace + CT_BUFSIZ) == -1)
170 bytes = (ssize_t)mbstowcs(p, argv[i], bufspace);
177 bufspace -= (size_t)bytes;
  /src/sys/dev/pcmcia/
if_cnw.c 687 int buffer, bufsize, bufoffset, bufptr, bufspace, len, mbytes, n; local in function:cnw_transmit
703 bufspace = bufsize;
710 if (bufspace == 0) {
713 bufspace = bufsize;
720 n = mbytes <= bufspace ? mbytes : bufspace;
724 bufspace -= n;
  /src/sys/dev/
midi.c 1452 size_t bufspace; local in function:midiwrite
1481 bufspace = MIDI_BUF_PRODUCER_REFRESH(mb,buf) - buf_cur;
1482 if (idxspace >= 1 && bufspace >= 3 && !pollout)
1485 idxspace, bufspace));
1522 * the transfer to the min of idxspace and (bufspace-1)>>1.
1524 xfrcount = (bufspace - 1) >> 1;
video.c 2001 struct v4l2_buffer bufspace; local in function:videoioctl
2129 buf50tobuf(data, buf = &bufspace);
2140 buf50tobuf(data, buf = &bufspace);
2148 buf50tobuf(data, buf = &bufspace);
  /src/sbin/ping/
ping.c 202 static int bufspace = IP_MAXPACKET; variable in typeref:typename:int
686 (char*)&bufspace, sizeof(bufspace))) {
687 if ((bufspace -= 4096) <= 0)
695 (char*)&bufspace, sizeof(bufspace));

Completed in 16 milliseconds