Searched refs:size (Results 1 - 25 of 9849) sorted by relevance

1234567891011>>

/macosx-10.10/Libinfo-459/rpc.subproj/
H A Drpc_dtablesize.c69 static int size; local
71 if (size == 0) {
72 size = getdtablesize();
75 if (size > FD_SETSIZE)
76 size = FD_SETSIZE;
79 return (size);
/macosx-10.10/libxslt-13/libxslt/tests/docbook/doc/
H A Dreference.css3 div.legalnotice { font-size: 80%; }
/macosx-10.10/WebCore-7600.1.25/Modules/webdatabase/
H A DSQLResultSetRowList.cpp38 if (m_result.size() == 0)
41 ASSERT(m_result.size() % m_columns.size() == 0);
43 return m_result.size() / m_columns.size();
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_unsigned_bin_size.c18 /* get the size for an unsigned equivalent */
21 int size = mp_count_bits (a); local
22 return (size / 8 + ((size & 7) != 0 ? 1 : 0));
H A Dbn_mp_init_size.c18 /* init an mp_init for a given size */
19 int mp_init_size (mp_int * a, int size) argument
23 /* pad size so there are always extra digits */
24 size += (MP_PREC * 2) - (size % MP_PREC);
27 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * size);
34 a->alloc = size;
38 for (x = 0; x < size; x++) {
/macosx-10.10/tcl-105/tcl/tcl/libtommath/
H A Dbn_mp_unsigned_bin_size.c18 /* get the size for an unsigned equivalent */
21 int size = mp_count_bits (a); local
22 return (size / 8 + ((size & 7) != 0 ? 1 : 0));
H A Dbn_mp_init_size.c18 /* init an mp_init for a given size */
19 int mp_init_size (mp_int * a, int size) argument
23 /* pad size so there are always extra digits */
24 size += (MP_PREC * 2) - (size % MP_PREC);
27 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * size);
34 a->alloc = size;
38 for (x = 0; x < size; x++) {
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dpasswd_dlg.h44 int pwd_dialog(char *buf, int size);
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Dconstdata.cpp38 ConstData::Blob::Blob(const void *base, size_t size, bool takeOwnership) : mSize(size) argument
40 mData = takeOwnership ? base : memcpy(new char[size], base, size);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A Dconstdata.cpp38 ConstData::Blob::Blob(const void *base, size_t size, bool takeOwnership) : mSize(size) argument
40 mData = takeOwnership ? base : memcpy(new char[size], base, size);
/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSRuntimeSupport.c5 void _ZN11OSMetaClassdlEPvm(void *mem, unsigned long size);
6 void *_ZN11OSMetaClassnwEm(unsigned long size);
8 void _ZN11OSMetaClassdlEPvm(__attribute__((unused)) void *mem, __attribute__((__unused__)) unsigned long size) { } argument
9 void *_ZN11OSMetaClassnwEm(__attribute__((unused)) unsigned long size) { return (void *)0ULL; } argument
/macosx-10.10/tcl-105/tcl_ext/tdom/tdom/generic/
H A Ddomalloc.h38 void * domAlloc(int size);
/macosx-10.10/WTF-7600.1.24/wtf/
H A DStreamBuffer.h52 bool isEmpty() const { return !size(); }
54 void append(const T* data, size_t size) argument
56 if (!size)
59 m_size += size;
60 while (size) {
61 if (!m_buffer.size() || m_buffer.last()->size() == BlockSize)
63 size_t appendSize = std::min(BlockSize - m_buffer.last()->size(), size);
66 size
72 consume(size_t size) argument
88 size_t size() const { return m_size; } function in class:WTF::StreamBuffer
[all...]
/macosx-10.10/BerkeleyDB-21/db/os_brew/
H A Dfwrite.c21 fwrite(buf, size, count, fp)
23 size_t size, count;
28 return (size * count);
30 return ((size_t)IFILE_Write(fp, buf, size * count) / size);
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/IOHIDDescriptorParser/
H A DPoolAlloc.c28 __private_extern__ void *PoolAllocateResident (vm_size_t size, unsigned char clear) argument
30 void *mem = IOMalloc(size);
33 bzero(mem, size);
39 __private_extern__ OSStatus PoolDeallocate (void *ptr, vm_size_t size) argument
41 IOFree(ptr, size);
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Drealloc.c41 rk_realloc(void *ptr, size_t size) argument
44 return malloc(size);
45 return realloc(ptr, size);
/macosx-10.10/WebCore-7600.1.25/crypto/mac/
H A DCryptoKeyMac.cpp35 Vector<uint8_t> CryptoKey::randomData(size_t size) argument
37 Vector<uint8_t> result(size);
38 CCRandomCopyBytes(kCCRandomDefault, result.data(), result.size());
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gtk/
H A DGdkCairoUtilities.cpp39 IntSize size = cairoSurfaceSize(surface); local
40 return gdk_pixbuf_get_from_surface(surface, 0, 0, size.width(), size.height());
/macosx-10.10/apr-32/apr-util/apr-util/crypto/
H A Dcrypt_blowfish.h20 extern int _crypt_output_magic(const char *setting, char *output, int size);
22 char *output, int size);
25 const char *input, int size, char *output, int output_size);
/macosx-10.10/bmalloc-7600.1.17/bmalloc/
H A DBeginTag.h38 inline bool BeginTag::isInFreeList(size_t size) argument
40 return isFree() && !isEnd() && this->size() == size;
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-rand-arc4.c38 arc4_seed(const void *indata, int size) argument
40 arc4random_addrandom((unsigned char *)indata, size);
45 arc4_bytes(unsigned char *outdata, int size) argument
47 arc4random_buf((void *)outdata, (size_t)size);
59 arc4_add(const void *indata, int size, double entropi) argument
61 arc4random_addrandom((unsigned char *)indata, size);
66 arc4_pseudorand(unsigned char *outdata, int size) argument
68 return (arc4_bytes(outdata, size));
/macosx-10.10/kext_tools-384.1.4/
H A Dkextd_mig_server.h31 CFIndex size,
/macosx-10.10/ksh-23/ksh/src/lib/libast/stdio/
H A D_stdvbuf.c29 _stdsetvbuf(Sfio_t* f, char* buf, int type, size_t size) argument
31 return setvbuf(f, buf, type, size);
/macosx-10.10/libstdcxx-104.1/src/
H A Dnew_opnt.cc31 operator new (size_t size, const std::nothrow_t&) throw() argument
36 p = ::operator new(size);
H A Dnew_opv.cc31 operator new[] (size_t size) throw (std::bad_alloc) argument
33 return ::operator new(size);

Completed in 225 milliseconds

1234567891011>>