Searched refs:sz (Results 151 - 175 of 490) sorted by relevance

1234567891011>>

/macosx-10.9.5/apr-30/apr/apr/test/
H A Dsockperf.c179 apr_size_t sz = ts->size * TEST_SIZE; local
181 buffer = apr_palloc(pool, sz);
186 memset(buffer, ts->c, sz);
192 rv = sendRecvBuffer(&iterTime, buffer, sz, pool);
/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dtool_metalink.h122 size_t metalink_write_cb(void *buffer, size_t sz, size_t nmemb,
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libedit/
H A Dhist.h50 size_t sz; /* Size of history buffer */ member in struct:el_history_t
/macosx-10.9.5/ntp-88/libopts/
H A Dtext_mmap.c252 size_t sz = pMI->txt_size;
255 while (sz > 0) {
256 ssize_t rdct = read( pMI->txt_fd, pz, sz );
266 sz -= rdct;
/macosx-10.9.5/ntp-88/sntp/libopts/
H A Dtext_mmap.c252 size_t sz = pMI->txt_size;
255 while (sz > 0) {
256 ssize_t rdct = read( pMI->txt_fd, pz, sz );
266 sz -= rdct;
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/libdes/src/
H A Dmd5.h56 /* * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska H�gskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Kungliga Tekniska * H�gskolan and its contributors. * * 4. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* $Id: md5.h,v 1.4 2005/01/10 19:09:06 snsimon Exp $ */ #include <stdlib.h> #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif #ifdef HAVE_SYS_BITYPES_H #include <sys/bitypes.h> #endif #ifdef KRB5 #include <krb5-types.h> #elif defined(KRB4) #include <ktypes.h> #endif struct md5 { unsigned int offset; unsigned int sz; u_int32_t counter[4]; unsigned char save[64]; }; void md5_init (struct md5 *m); void md5_upd (…)
1 /* member in struct:md5
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dradio2.rb76 [10, 12, 18, 24].each {|sz|
78 text "Point Size #{sz}"
81 value sz
H A Dradio3.rb82 [10, 12, 14, 18, 24].each {|sz|
84 text "Point Size #{sz}"
87 value sz
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dradio2.rb79 [10, 12, 18, 24].each {|sz|
81 text "��������������������� #{sz}"
84 value sz
H A Dradio3.rb84 [10, 12, 14, 18, 24].each {|sz|
86 text "��������������������� #{sz}"
89 value sz
/macosx-10.9.5/ruby-104/ruby/lib/webrick/
H A Dhttpresponse.rb438 sz = @buffer_size < size ? @buffer_size : size
439 buf = input.read(sz)
449 sz = @buffer_size < size ? @buffer_size : size
450 buf = input.read(sz)
/macosx-10.9.5/llvmCore-3425.0.33/lib/Archive/
H A DArchiveWriter.cpp75 // TruncateNames is true, names are flattened to 15 chars or less. The sz field
82 int sz, bool TruncateNames) const {
136 if (sz < 0)
137 sz -= mbrPath.length();
139 sz += mbrPath.length();
144 if (sz < 0) {
146 sprintf(&buffer[1],"%-9u",(unsigned)-sz);
148 sprintf(buffer, "%-10u", (unsigned)sz);
81 fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr, int sz, bool TruncateNames) const argument
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclAlloc.c400 register long sz; /* size of desired block */
409 sz = 1 << (bucket + 3);
410 ASSERT(sz > 0);
413 nblks = amt / sz;
414 ASSERT(nblks*sz == amt);
433 op->ov_next = (union overhead *)((caddr_t)op + sz);
434 op = (union overhead *)((caddr_t)op + sz);
396 register long sz; /* size of desired block */ local
/macosx-10.9.5/swig-10/Source/CParse/
H A Dtempl.c319 int sz, i; local
351 sz = Len(patchlist);
352 for (i = 0; i < sz; i++) {
356 sz = Len(typelist);
357 for (i = 0; i < sz; i++) {
372 sz = Len(cpatchlist);
373 for (i = 0; i < sz; i++) {
392 int i, sz; local
393 sz = Len(typelist);
394 for (i = 0; i < sz;
[all...]
/macosx-10.9.5/patch_cmds-17/patch/
H A Dinp.c139 ptrdiff_t sz; local
286 sz = s - i_ptr[iline];
287 p = malloc(sz + 1);
296 memcpy(p, i_ptr[iline], sz);
297 p[sz] = '\n';
/macosx-10.9.5/vim-53/runtime/lang/
H A Dmenu_hu_hu.iso_8859-2.vim23 " Mindennem� visszajelz�st sz�vesen fogadok.
38 menutrans &Credits &Szerz�k,\ k�sz�netek
85 menutrans &Context\ lines &Kurzor\ ablak\ sz�l�t�l
90 menutrans Block\ and\ Insert Bl&okk\ kijel�l�sekor\ �s\ sz�veg\ bevitelekor
112 menutrans Te&xt\ Width\.\.\. &Sz�veg\ sz�less�ge\.\.\.
119 menutrans Build\ &Tags\ File &Tag\ f�jl\ k�sz�t�se
185 menutrans Max\ &Width<Tab>^W\| Max\ &sz�less�g<Tab>^W\|
186 menutrans Min\ Widt&h<Tab>^W1\| Mi&n\ sz�less�g<Tab>^W1\|
250 menutrans &Convert\ to\ HTML &HTML\ oldal\ k�sz�t�se
254 let menutrans_help_dialog = "�rd be a k�v�nt sz
[all...]
H A Dmenu_hu_hu.utf-8.vim22 menutrans &Credits &Szerz��k,\ k��sz��netek
69 menutrans &Context\ lines &Kurzor\ ablak\ sz��l��t��l
74 menutrans Block\ and\ Insert Bl&okk\ kijel��l��sekor\ ��s\ sz��veg\ bevitelekor
96 menutrans Te&xt\ Width\.\.\. &Sz��veg\ sz��less��ge\.\.\.
103 menutrans Build\ &Tags\ File &Tag\ f��jl\ k��sz��t��se
169 menutrans Max\ &Width<Tab>^W\| Max\ &sz��less��g<Tab>^W\|
170 menutrans Min\ Widt&h<Tab>^W1\| Mi&n\ sz��less��g<Tab>^W1\|
234 menutrans &Convert\ to\ HTML &HTML\ oldal\ k��sz��t��se
238 let menutrans_help_dialog = "��rd be a k��v��nt sz��t vagy parancsot:\n\n A sz��vegbevitel
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Devp.c1410 size_t sz = min(keylen, mds); local
1412 memcpy(key, buf, sz);
1413 key += sz;
1415 keylen -= sz;
1416 i += sz;
1419 size_t sz = min(ivlen, (mds - i)); local
1421 memcpy(iv, &buf[i], sz);
1422 iv += sz;
1424 ivlen -= sz;
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/tools/runidn/
H A Dresolver.c242 size_t sz; local
248 sz = sizeof(char *) * (naliases + 1);
250 if (buflen < sz)
253 buf += sz;
254 buflen -= sz;
261 size_t sz; local
268 sz = sizeof(char *) * (naddrs + 1);
270 if (buflen < sz)
273 buf += sz;
274 buflen -= sz;
[all...]
/macosx-10.9.5/lsof-52/lsof/
H A Dproc.c100 int sz; local
102 sz = (int)(lr + 1); /* allocate '\0' space */
103 if (*bp && (sz <= *al))
106 *bp = (char *)realloc((MALLOC_P *)*bp, (MALLOC_S)sz);
108 *bp = (char *)malloc((MALLOC_S)sz);
111 Pn, sz);
114 *al = sz;
280 static int sz = 0; local
291 sz = LPROCINCR;
292 } else if ((Nlproc + 1) > sz) {
[all...]
/macosx-10.9.5/awk-18/src/
H A Dlex.c105 int sz = *psz; local
119 if (bp-buf >= sz)
120 if (!adjbuf(&buf, &sz, bp-buf+2, 100, &bp, "gettok"))
136 if (bp-buf >= sz)
137 if (!adjbuf(&buf, &sz, bp-buf+2, 100, &bp, "gettok"))
160 *psz = sz;
/macosx-10.9.5/cctools-845/ld/
H A Ddebugline.c372 uint64_t sz = read_uleb128 (lnd); local
375 if (lnd->end - op < sz || sz == 0)
377 lnd->cpos += sz;
385 if (sz == 9)
387 else if (sz == 5)
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Delf32-sh-symbian.c208 bfd_size_type sz = sec->rawsize ? sec->rawsize : sec->size; local
210 for (s = (char *) contents, e = s + sz; s < e;)
401 bfd_size_type sz; local
406 sz = sec->rawsize ? sec->rawsize : sec->size;
407 contents = bfd_malloc (sz);
413 if (bfd_get_section_contents (abfd, sec, contents, 0, sz))
/macosx-10.9.5/lsof-52/lsof/dialects/darwin/libproc/
H A Ddfile.c196 Lf->sz = (SZOFFTYPE)vip->vip_vi.vi_stat.vst_size;
413 size_t sz; local
428 Lf->sz = (SZOFFTYPE)pi->pipeinfo.pipe_stat.vst_blksize;
444 ep = endnm(&sz);
445 (void) snpf(ep, sz, ", cnt=%" SZOFFPSPEC "u",
590 Lf->sz = (SZOFFTYPE)ps->pshminfo.pshm_stat.vst_size;
/macosx-10.9.5/Heimdal-323.92.1/lib/libedit/src/
H A Dchared.c557 size_t sz, newsz; local
560 sz = el->el_line.limit - el->el_line.buffer + EL_LEAVE;
561 newsz = sz * 2;
566 if (addlen > sz) {
567 while(newsz - sz < addlen)
579 (void) memset(&newbuffer[sz], 0, (newsz - sz) * sizeof(*newbuffer));
587 el->el_line.limit = &newbuffer[sz - EL_LEAVE];
597 (void) memset(&newbuffer[sz], 0, (newsz - sz) * sizeo
[all...]

Completed in 238 milliseconds

1234567891011>>