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

123

/freebsd-9.3-release/contrib/gperf/src/
H A Dpositions.cc37 unsigned int count = _size;
38 const int *p = _positions + _size - 1;
55 unsigned int count = _size;
63 int *p = _positions + _size - 1;
77 _size++;
85 unsigned int count = _size;
88 int *p = _positions + _size - 1;
92 _size--;
108 _size--;
133 unsigned int count = _size;
[all...]
H A Dbool-array.icc33 : _size (size),
40 _size,
41 static_cast<unsigned int> (_size * sizeof (_storage_array[0])));
71 memset (_storage_array, 0, _size * sizeof (_storage_array[0]));
H A Dpositions.icc34 _size (0)
41 _size (1)
49 _size (2)
60 _size (src._size)
62 memcpy (_positions, src._positions, _size * sizeof (_positions[0]));
71 _size = src._size;
72 memcpy (_positions, src._positions, _size * sizeof (_positions[0]));
93 return _size;
[all...]
H A Dbool-array.cc37 _size, _iteration_number);
H A Dhash-table.cc78 _size = 1 << shift;
81 _table = new KeywordExt*[_size];
82 memset (_table, 0, _size * sizeof (*_table));
99 for (int i = _size - 1; i >= 0; i--)
109 _size, _size * static_cast<unsigned int>(sizeof (*_table)),
112 for (int i = _size - 1; i >= 0; i--)
147 unsigned int probe = hash_val & (_size - 1);
152 /* Note that because _size is a power of 2 and increment is odd,
153 we have gcd(increment,_size)
[all...]
H A Dbool-array.h57 unsigned int const _size; member in class:Bool_Array
H A Dhash-table.h54 unsigned int _size; member in class:Hash_Table
55 /* log2(_size). */
/freebsd-9.3-release/tools/tools/ath/common/
H A Dah_osdep.h47 #define OS_MEMZERO(_a, _size) bzero((_a), (_size))
48 #define OS_MEMCPY(_dst, _src, _size) bcopy((_src), (_dst), (_size))
/freebsd-9.3-release/lib/libc/stdio/
H A Dwbuf.c58 * make sure _w is 0 (if fully- or un-buffered) or -_bf._size
75 * happen on unbuffered streams, where _bf._size==1; fflush()
80 if (n >= fp->_bf._size) {
87 if (++n == fp->_bf._size || (fp->_flags & __SLBF && c == '\n'))
H A Dwsetup.c89 fp->_lbfsize = -fp->_bf._size;
91 fp->_w = fp->_flags & __SNBF ? 0 : fp->_bf._size;
H A Dungetc.c68 fp->_ub._size = BUFSIZ;
75 i = fp->_ub._size;
83 fp->_ub._size = i << 1;
136 if (fp->_r >= fp->_ub._size && __submore(fp))
163 fp->_ub._size = sizeof(fp->_ubuf);
H A Dmakebuf.c68 fp->_bf._size = 1;
75 fp->_bf._size = 1;
81 fp->_bf._size = size;
H A Dsetvbuf.c117 fp->_bf._size = 1;
141 fp->_bf._size = size;
150 fp->_lbfsize = -fp->_bf._size;
H A Dfpurge.c65 fp->_w = fp->_flags & (__SLBF|__SNBF|__SRD) ? 0 : fp->_bf._size;
H A Dsnprintf.c67 f._bf._size = f._w = n;
92 f._bf._size = f._w = n;
H A Dfvwrite.c99 * one _bf._size byte chunk directly (without copying).
118 fp->_bf._size = blen + len + 128;
120 reallocf(fp->_bf._base, fp->_bf._size + 1);
142 } else if (len >= (w = fp->_bf._size)) {
175 w = fp->_w + fp->_bf._size;
182 } else if (s >= (w = fp->_bf._size)) {
H A Dfgetwln.c56 if (len * sizeof(wchar_t) >= fp->_lb._size &&
H A Dvasprintf.c58 f._bf._size = f._w = 127; /* Leave room for the NUL */
H A Dvdprintf.c64 f._bf._size = sizeof(buf);
H A Dvsprintf.c59 f._bf._size = f._w = INT_MAX;
H A Dvsscanf.c69 f._bf._size = f._r = strlen(str);
/freebsd-9.3-release/sys/dev/sound/midi/
H A Dmidi.h49 int midi_out(struct snd_midi *_m, MIDI_TYPE *_buf, int _size);
50 int midi_in(struct snd_midi *_m, MIDI_TYPE *_buf, int _size);
/freebsd-9.3-release/contrib/sendmail/include/sm/
H A Drpool.h142 size_t _size,
151 size_t _size,
161 size_t _size));
165 size_t _size));
/freebsd-9.3-release/sys/dev/nxge/include/
H A Dxge-defs.h86 #define XGE_OS_MEMORY_CHECK_MALLOC(_vaddr, _size, _file, _line) { \
102 g_malloc_arr[index_mem_chk].size = _size; \
105 for (index_mem_chk=0; index_mem_chk<_size; index_mem_chk++) { \
/freebsd-9.3-release/usr.sbin/mtree/test/
H A Dtest03.sh23 touch _FOO/_size
34 date > _FOO/_size

Completed in 90 milliseconds

123