Searched refs:xsize (Results 1 - 20 of 20) sorted by relevance

/macosx-10.10/libarchive-30/libarchive/tar/test/
H A Dtest_patterns.c126 int xsize; local
136 xsize = sizeof(file_b1);
146 xsize = sizeof(file_b2);
150 xsize = sizeof(file_a);
153 filex[xsize-3] = '0' + r / 10;
154 filex[xsize-2] = '0' + r % 10;
173 xsize = sizeof(file_c);
174 filex[xsize-3] = '0' + r / 10;
175 filex[xsize-2] = '0' + r % 10;
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dsgisv.c154 svRGBSeparate(TIFF* tif, uint32* ss, int xsize, int ysize) argument
172 for (x = 0; x <= xsize; x++) {
178 rp += xsize+1, gp += xsize+1, bp += xsize+1;
179 ss += xsize+1;
195 svRGBContig(TIFF* tif, uint32* ss, int xsize, int ysize) argument
209 for (x = 0; x <= xsize; x++) {
216 ss += xsize+1;
234 svGrey(TIFF* tif, uint32* ss, int xsize, in argument
258 int xsize, ysize; local
[all...]
H A Dsgi2tiff.c103 TIFFSetField(out, TIFFTAG_IMAGEWIDTH, (uint32) in->xsize);
200 r = (short *)_TIFFmalloc(3 * in->xsize * sizeof (short));
201 g = r + in->xsize;
202 b = g + in->xsize;
209 for (x = 0; x < in->xsize; x++) {
221 r = (short *)_TIFFmalloc(4 * in->xsize * sizeof (short));
222 g = r + in->xsize;
223 b = g + in->xsize;
224 a = b + in->xsize;
232 for (x = 0; x < in->xsize;
[all...]
H A Dfax2tiff.c62 uint32 xsize = 1728; variable
139 xsize = (uint32) atoi(optarg);
212 rowbuf = _TIFFmalloc(TIFFhowmany8(xsize));
213 refbuf = _TIFFmalloc(TIFFhowmany8(xsize));
241 TIFFSetField(faxTIFF, TIFFTAG_IMAGEWIDTH, xsize);
269 TIFFSetField(out, TIFFTAG_IMAGEWIDTH, xsize);
346 uint32 linesize = TIFFhowmany8(xsize);
/macosx-10.10/libarchive-30/libarchive/libarchive/test/
H A Dtest_extattr_freebsd.c46 size_t xsize;
164 archive_entry_xattr_next(ae, &xname, &xval, &xsize));
166 assertEqualInt(xsize, 5);
167 assertEqualMem(xval, "12345", xsize);
H A Dtest_entry.c53 size_t xsize; /* For xattr tests. */ local
334 assertEqualInt(0, archive_entry_xattr_next(e, &xname, &xval, &xsize));
337 assertEqualInt((int)xsize, 12);
340 archive_entry_xattr_next(e, &xname, &xval, &xsize));
343 assertEqualInt((int)xsize, 0);
347 archive_entry_xattr_next(e, &xname, &xval, &xsize));
350 assertEqualInt((int)xsize, 0);
355 assertEqualInt(0, archive_entry_xattr_next(e, &xname, &xval, &xsize));
356 assertEqualInt(0, archive_entry_xattr_next(e, &xname, &xval, &xsize));
358 archive_entry_xattr_next(e, &xname, &xval, &xsize));
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/vm/
H A Dvnode_pager.c448 int xsize; local
503 xsize = isize - PAGE_SIZE;
505 while (xsize) {
509 xsize -= PAGE_SIZE;
511 xsize = num_of_pages * PAGE_SIZE;
515 xsize, (int)f_offset, 0, 0, 0);
518 xsize, flags, ctx)) ) {
525 xsize, 0, 0, 0, 0);
527 f_offset += xsize;
528 offset += xsize;
557 int xsize; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/sgi/
H A Dsgi.c175 UShort xsize; member in struct:__anon13217
313 return (unsigned short *)malloc(IBUFSIZE(image->xsize));
326 unsigned int xsize, unsigned int ysize, unsigned int zsize)
331 return imgopen (0, file, image, mode, type, dim, xsize, ysize, zsize);
336 unsigned int xsize, unsigned int ysize, unsigned int zsize)
349 image->xsize = xsize;
428 i_errhdlr("iopen: error on tmpbuf alloc %d\n",image->xsize);
501 if (putrow(image, base, image->y,image->z)!=image->xsize) {
583 image->cnt = image->xsize
324 imgOpenWrite(MYCHANNEL file, IMAGE *image, const char *mode, unsigned int type, unsigned int dim, unsigned int xsize, unsigned int ysize, unsigned int zsize) argument
334 imgopen(int f, MYCHANNEL file, IMAGE *image, const char *mode, unsigned int type, unsigned int dim, unsigned int xsize, unsigned int ysize, unsigned int zsize) argument
1183 writeHeader(tkimg_MFile *handle, IMAGE *th, UInt type, UInt dim, UInt xsize, UInt ysize, UInt zsize) argument
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/sslEAP/
H A DsslEAP.cpp83 unsigned xsize = atoi(optarg); local
84 if(xsize == 0) {
89 xferSize = xsize;
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/sslThroughput/
H A DsslThroughput.cpp97 unsigned xsize = atoi(optarg); local
98 if(xsize == 0) {
103 xferSize = xsize;
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/tga/
H A Dtga.c101 Short xsize; member in struct:__anon13221
220 sprintf(str, "\tSize in pixel : %d x %d\n", th->xsize, th->ysize); OUT;
244 !readShort (handle, &th->xsize) ||
261 if (th->xsize < 1 || th->ysize < 1) {
300 !writeShort (handle, th->xsize) ||
364 stop = tf->th.xsize;
436 bytesPerLine = nchan * tf->th.xsize;
473 stop = tf->red + tf->th.xsize;
726 *widthPtr = th.xsize;
981 tf.th.xsize
[all...]
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_numeric.rb219 xsize = expected.size
226 from.step(*args) { |x| a << x; break if a.size == xsize }
230 enum.each { |x| a << x; break if a.size == xsize }
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_read_support_format_iso9660.c1379 size_t ceil, xsize; local
1385 xsize = (ceil + 1) * 4;
1386 if (zisofs->block_pointers_alloc < xsize) {
1391 alloc = ((xsize >> 10) + 1) << 10;
1400 zisofs->block_pointers_size = xsize;
1403 xsize = 1UL << zisofs->pz_log2_bs;
1404 if (zisofs->uncompressed_buffer_size < xsize) {
1407 zisofs->uncompressed_buffer = malloc(xsize);
1414 zisofs->uncompressed_buffer_size = xsize;
1420 xsize
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_cluster.c190 static int cluster_align_phys_io(vnode_t vp, struct uio *uio, addr64_t usr_paddr, u_int32_t xsize, int flags, int (*)(buf_t, void *), void *callback_arg);
2491 u_int32_t xsize; local
2600 xsize = MAX_IO_CONTIG_SIZE;
2602 xsize = io_size;
2626 xsize, CL_DEV_MEMORY | CL_ASYNC | bflag, (buf_t)NULL, (struct clios *)&iostate, callback, callback_arg);
2633 uio_update(uio, (user_size_t)xsize);
2635 upl_offset += xsize;
2636 src_paddr += xsize;
2637 io_size -= xsize;
3483 u_int32_t xsize; local
4020 u_int32_t xsize; local
4555 u_int32_t xsize; local
5598 cluster_align_phys_io(vnode_t vp, struct uio *uio, addr64_t usr_paddr, u_int32_t xsize, int flags, int (*callback)(buf_t, void *), void *callback_arg) argument
5703 int xsize; local
5777 int xsize; local
[all...]
H A Dkpi_vfs.c2000 size_t xsize, rsize; local
2010 if (vn_getxattr(vp, KAUTH_FILESEC_XATTR, NULL, &xsize, XATTR_NOSECURITY, ctx) != 0) {
2024 if (!KAUTH_FILESEC_VALID(xsize)) {
2025 KAUTH_DEBUG(" ERROR - Bogus kauth_fiilesec_t: %ld bytes", xsize);
2031 fsec_size = KAUTH_FILESEC_COUNT(xsize);
2036 uio_addiov(fsec_uio, CAST_USER_ADDR_T(fsec), xsize)) {
2043 rsize = xsize;
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_readwrite.c4326 int xsize; local
4347 xsize = isize - PAGE_SIZE;
4349 while (xsize) {
4353 xsize -= PAGE_SIZE;
4355 xsize = num_of_pages * PAGE_SIZE;
4379 ap->a_size = xsize;
4403 ubc_upl_abort_range(upl, (upl_offset_t) offset, xsize, UPL_ABORT_FREE_ON_EMPTY | UPL_ABORT_RESTART);
4453 error = cluster_pagein(vp, upl, offset, f_offset, xsize, (off_t)fp->ff_size, ap->a_flags);
4465 bytesread = xsize;
4490 f_offset += xsize;
4655 int xsize; local
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/vm/
H A Dbsd_vm.c370 int xsize; local
472 if ((xsize = PAGE_SIZE - start_offset) > io_requested)
473 xsize = io_requested;
475 if ( (retval = uiomove64((addr64_t)(((addr64_t)(dst_page->phys_page) << PAGE_SHIFT) + start_offset), xsize, uio)) )
478 io_requested -= xsize;
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Djournal.c328 unsigned int xsize; /*%< Size of transaction data */ member in struct:dns_journal::__anon6750
1576 j->it.xsize = 0; /* We have no transaction data yet... */
1599 if (j->it.xpos == j->it.xsize) {
1619 j->it.xsize = xhdr.size;
/macosx-10.10/xnu-2782.1.97/bsd/nfs/
H A Dnfs_vnops.c7295 size_t nmwsize, biosize, iosize, pgsize, txsize, rxsize, xsize, remsize; local
7328 for (iosize = 0; iosize < size; iosize += xsize) {
7331 xsize = biosize - (off % biosize);
7332 if (off + xsize > f_offset + size)
7333 xsize = f_offset + size - off;
7365 end = off + xsize;
7455 xsize = np->n_size - f_offset;
7457 xsize = size;
7459 pgsize = round_page_64(xsize);
7483 txsize = rxsize = xsize;
[all...]
/macosx-10.10/BootCache-109/
H A Dkext.c5265 long xsize; local
5323 xsize = sizeof(struct BC_playlist_header) +
5326 if (xsize > BC_preloaded_playlist_size) {
5328 BC_preloaded_playlist_size, xsize);

Completed in 323 milliseconds