Searched refs:_size (Results 26 - 50 of 87) sorted by relevance

1234

/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dvsprintf.c57 f._bf._size = f._w = INT_MAX;
H A Dfreopen.c186 fp->_bf._size = 0;
190 fp->_ub._size = 0;
193 fp->_lb._size = 0;
H A Dfgetln.c63 if (fp->_lb._size >= newsize)
72 fp->_lb._size = newsize;
H A Dvasprintf.c57 f._bf._size = f._w = 127; /* Leave room for the NUL */
H A Dvdprintf.c63 f._bf._size = sizeof(buf);
H A Dvsscanf.c74 f._bf._size = f._r = strlen(str);
H A Dfflush.c126 fp->_w = t & (__SLBF|__SNBF) ? 0 : fp->_bf._size;
H A Drefill.c141 fp->_r = _sread(fp, (char *)fp->_p, fp->_bf._size);
H A Dvsnprintf.c71 f._bf._size = f._w = n;
H A Dvswprintf.c71 f._bf._size = f._w = 127; /* Leave room for the NUL */
H A Dvswscanf.c92 f._bf._size = f._r = mlen;
/macosx-10.9.5/Libinfo-449.1.3/lookup.subproj/
H A Dkvbuf.c42 * The _size variable stores the actual allocated size.
142 kv->_size = (5 * sizeof(uint32_t)) + kl + vl;
143 kv->datalen = kv->_size;
145 kv->databuf = calloc(1, kv->_size);
219 kv->_size = KVBUF_START_SIZE;
220 kv->databuf = malloc_zone_calloc(zone, 1, kv->_size);
249 kv->_size = length;
287 if (newlen <= kv->_size) return;
289 kv->_size = ((newlen + KVBUF_CHUNK - 1) / KVBUF_CHUNK) * KVBUF_CHUNK;
294 kv->databuf = malloc_zone_calloc(zone, 1, kv->_size);
[all...]
/macosx-10.9.5/libauto-185.5/
H A DLarge.cpp51 : _prev(NULL), _next(NULL), _zone(zone), _vm_size(vm_size), _size(size), _layout(layout), _refcount(refcount), _age(age),
109 void *guard_address = align_up(displace((void *)this, header_size + _size));
H A DBlockRef.h204 size_t _size; member in class:Auto::auto_block_info_sieve
222 _size = ref.size();
234 _size = 0;
243 inline size_t size() const { if (!(requested_info & AUTO_BLOCK_INFO_SIZE)) __builtin_trap(); return _size; }
H A DLarge.h60 usword_t _size; // size of the requested allocation member in class:Auto::Large
175 inline usword_t size() const { return _size; }
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/commpage/
H A Dcommpage.h74 .set L ## label ## _size, L ## label ## _end - L ## label ;\
79 .long L ## label ## _size ;\
/macosx-10.9.5/emacs-92/emacs/src/
H A Dunexenix.c57 #define READ(_fd, _buffer, _size, _error_message, _error_arg) \
59 if (read(_fd, _buffer, _size) != _size) \
62 #define WRITE(_fd, _buffer, _size, _error_message, _error_arg) \
63 if (write(_fd, _buffer, _size) != _size) \
H A Dunexmips.c91 #define READ(_fd, _buffer, _size, _error_message, _error_arg) \
93 if (read (_fd, _buffer, _size) != _size) \
96 #define WRITE(_fd, _buffer, _size, _error_message, _error_arg) \
97 if (write (_fd, _buffer, _size) != _size) \
H A Dunexalpha.c90 #define READ(_fd, _buffer, _size, _error_message, _error_arg) \
92 if (read (_fd, _buffer, _size) != _size) \
95 #define WRITE(_fd, _buffer, _size, _error_message, _error_arg) \
96 if (write (_fd, _buffer, _size) != _size) \
/macosx-10.9.5/swig-10/Lib/ocaml/
H A Dcarray.i24 $1 = ($*1_type *)malloc( $1_size );
73 $1 = ($*1_type *)malloc( $1_size );
106 $1 = ($*1_type *)malloc( $1_size );
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dhashing.h57 template <uint32_t _size, class _HashType>
61 static const size_t digestLength = _size; // how many bytes in my digest?
62 typedef Byte Digest[_size]; // my digest as a Byte array
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dhashing.h57 template <uint32_t _size, class _HashType>
61 static const size_t digestLength = _size; // how many bytes in my digest?
62 typedef Byte Digest[_size]; // my digest as a Byte array
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A Dutilities.js728 this._size = 0;
743 ++this._size;
753 --this._size;
763 var result = new Array(this._size);
784 return this._size;
790 this._size = 0;
800 this._size = 0;
816 ++this._size;
828 --this._size;
851 var result = new Array(this._size);
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/src/
H A Duniv.h33 int _size; member in class:c4_BaseArray
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Windows/
H A DProcess.inc70 size += hinfo._size;

Completed in 124 milliseconds

1234