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

  /src/lib/libedit/
chartype.c 146 size_t bufspace; local
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/
midi.c 1452 size_t bufspace; local
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
2129 buf50tobuf(data, buf = &bufspace);
2140 buf50tobuf(data, buf = &bufspace);
2148 buf50tobuf(data, buf = &bufspace);
  /src/sys/dev/pcmcia/
if_cnw.c 687 int buffer, bufsize, bufoffset, bufptr, bufspace, len, mbytes, n; local
703 bufspace = bufsize;
710 if (bufspace == 0) {
713 bufspace = bufsize;
720 n = mbytes <= bufspace ? mbytes : bufspace;
724 bufspace -= n;
  /src/external/bsd/less/dist/
opttbl.c 41 public int bufspace; /* Max buffer space per file (K) */ variable
205 NUMBER|INIT_HANDLER, 64, &bufspace, opt_b,
  /src/sbin/ping/
ping.c 203 static int bufspace = IP_MAXPACKET; variable
687 (char*)&bufspace, sizeof(bufspace))) {
688 if ((bufspace -= 4096) <= 0)
696 (char*)&bufspace, sizeof(bufspace));
  /src/external/bsd/top/dist/machine/
m_freebsd.c 239 { "vfs.bufspace" },
1064 static int bufspace = 0; local
1068 /* get bufspace */
1069 bufspace = 0;
1070 (void) get_sysctl(VFS_BUFSPACE, &bufspace, sizeof(bufspace));
1100 memory_stats[4] = bufspace / 1024;
  /src/external/gpl3/gdb/dist/gdbserver/
tracepoint.cc 6741 unsigned char *bufspace; local
6760 bufspace = add_traceframe_block (tframe, umd->tpoint,
6762 if (bufspace == NULL)
6769 *bufspace = 'S';
6772 memcpy (bufspace + 1, &blocklen, sizeof (blocklen));
6775 USTF(serialize_to_text) ((char *) bufspace + 1 + sizeof (blocklen),
6780 bufspace + 1 + sizeof (blocklen));
  /src/external/gpl3/gdb.old/dist/gdbserver/
tracepoint.cc 6741 unsigned char *bufspace; local
6760 bufspace = add_traceframe_block (tframe, umd->tpoint,
6762 if (bufspace == NULL)
6769 *bufspace = 'S';
6772 memcpy (bufspace + 1, &blocklen, sizeof (blocklen));
6775 USTF(serialize_to_text) ((char *) bufspace + 1 + sizeof (blocklen),
6780 bufspace + 1 + sizeof (blocklen));

Completed in 46 milliseconds