Searched refs:source (Results 1 - 25 of 248) sorted by path

12345678910

/illumos-gate/usr/src/boot/lib/libz/
H A Dcompress.c12 Compresses the source buffer into the destination buffer. The level
14 length of the source buffer. Upon entry, destLen is the total size of the
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
25 const Bytef *source;
32 stream.next_in = (z_const Bytef *)source;
35 /* Check for source > 64K on 16-bit machine: */
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
65 const Bytef *source;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
H A Ddeflate.c1010 * Copy the source state to the destination state.
1011 * To simplify the source, this is not supported for 16-bit MSDOS (which
1014 int ZEXPORT deflateCopy (dest, source)
1016 z_streamp source;
1026 if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) {
1030 ss = source->state;
1032 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
H A Dinflate.c53 * source file infback.c to provide a call-back interface to inflate for
1438 int ZEXPORT inflateCopy(dest, source)
1440 z_streamp source;
1448 if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL ||
1449 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
1451 state = (struct inflate_state FAR *)source->state;
1455 ZALLOC(source, 1, sizeof(struct inflate_state));
1460 ZALLOC(source,
[all...]
H A Duncompr.c12 Decompresses the source buffer into the destination buffer. sourceLen is
13 the byte length of the source buffer. Upon entry, destLen is the total
24 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
27 const Bytef *source;
33 stream.next_in = (z_const Bytef *)source;
35 /* Check for source > 64K on 16-bit machine: */
H A Dzlib.h18 2. Altered source versions must be plainly marked as such, and must not be
20 3. This notice may not be removed or altered from any source distribution.
632 z_streamp source));
634 Sets the destination stream as a complete copy of the source stream.
644 enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
645 (such as zalloc being Z_NULL). msg is left unchanged in both source and
656 deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
676 deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source
691 specific input data. Read the deflate.c source code for the meaning of the
724 deflatePending returns Z_OK if success, or Z_STREAM_ERROR if the source
[all...]
H A Dzutil.c152 void ZLIB_INTERNAL zmemcpy(dest, source, len)
154 const Bytef* source;
159 *dest++ = *source++; /* ??? to be unrolled */
H A Dzutil.h213 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
/illumos-gate/usr/src/boot/sys/boot/arm/ixp425/boot2/
H A Dixp425_board.c4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
662 avila_read(char *dest, unsigned source, unsigned length) argument
664 if (dskinf.use_lba == 0 && source == 0)
665 source++;
668 (u_int32_t)dest, source, length);
672 cfcmd(ATA_READ, (source >> 8) & 0xffff, source >> 24,
673 source & 0xff, 1, 0);
681 source
[all...]
/illumos-gate/usr/src/boot/sys/boot/i386/btx/lib/
H A Dbtxcsu.S5 # Redistribution and use in source and binary forms are freely
H A Dbtxsys.s5 # Redistribution and use in source and binary forms are freely
H A Dbtxv86.s5 # Redistribution and use in source and binary forms are freely
/illumos-gate/usr/src/boot/sys/boot/i386/cdboot/
H A Dcdboot.S5 # Redistribution and use in source and binary forms, with or without
8 # 1. Redistributions of source code must retain the above copyright
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dpxetramp.s5 # Redistribution and use in source and binary forms are freely
/illumos-gate/usr/src/boot/sys/boot/i386/pmbr/
H A Dpmbr.s6 # Redistribution and use in source and binary forms, with or without
9 # 1. Redistributions of source code must retain the above copyright
/illumos-gate/usr/src/boot/sys/boot/usb/
H A Dusbcore.mk12 # Redistribution and use in source and binary forms, with or without
15 # 1. Redistributions of source code must retain the above copyright
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dlz4.c7 * Redistribution and use in source and binary forms, with or without
11 * * Redistributions of source code must retain the above copyright
32 * - LZ4 source repository : http://code.google.com/p/lz4/
38 static int LZ4_uncompress_unknownOutputSize(const char *source, char *dest,
202 LZ4_uncompress_unknownOutputSize(const char *source, argument
206 const BYTE *restrict ip = (const BYTE *) source;
242 * Error : request to read beyond source
327 return (int)(-(((char *)ip) - source));
/illumos-gate/usr/src/cmd/backup/restore/
H A Dinteractive.c1006 setpagerargs(source)
1007 char **source;
1010 char *cp = *source;
1032 *source = cp;
H A Dtape.c80 * Set up an input source
83 setinput(char *source, char *archive) argument
97 if (source == NULL) {
104 if (strchr(source, ':')) {
107 host = source;
118 if (strlen(source) > (sizeof (magtape) - 1)) {
125 if (strcmp(source, "-") == 0) {
154 (void) strcpy(magtape, source);
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm.c3242 do_archive_copy(char *source, char *dest) argument
3248 if (rename(source, dest) != 0) {
3249 (void) unlink(source);
/illumos-gate/usr/src/cmd/boot/installgrub/
H A Dinstallgrub.c571 * Propagate the bootblock on the source disk to the destination disk and
577 propagate_bootblock(ig_data_t *source, ig_data_t *target, char *updt_str) argument
579 ig_device_t *src_device = &source->device;
581 ig_stage2_t *src_stage2 = &source->stage2;
586 assert(source != NULL);
589 /* read in stage1 from the source disk. */
970 /* Fill bootblock hashing source information. */
/illumos-gate/usr/src/cmd/cat/
H A Dcat.c79 struct stat source, target; local
251 * Stat source to make sure it is defined.
254 if (fstat(fileno(fi), &source) < 0) {
265 * If the source is not a character special file, socket or a
273 IDENTICAL(target, source)) {
285 ibsize = source.st_blksize;
295 estatus = cat(fi, &source, &target,
302 * If the input is not stdin, close the source file.
/illumos-gate/usr/src/cmd/cmd-crypto/tpmadm/
H A Dtpmadm.h56 #define UUID_COPY(source, dest) \
57 bcopy((BYTE*)&(source), (BYTE*)&(dest), sizeof (TSS_UUID))
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Doptions.c21 * Redistribution and use in source and binary forms are permitted
493 * records the source file name.
842 ip->source = option_source;
1417 * save_source - store option source, line, and privilege into an
1425 info->source = option_source;
1430 * set_source - set option source, line, and privilege from an
1438 option_source = info->source;
1443 * name_source - return string containing option source and line. Can
1452 if (info->source == NULL)
1455 return info->source;
[all...]
H A Dpppd.h21 * Redistribution and use in source and binary forms are permitted
383 * command line, etc.) and whether it came from a privileged source.
387 char *source; /* where option came from */ member in struct:option_info
670 /* Save the source information (where an option comes from) */
672 /* Set the source (for logging option errors detected after parsing) */
674 /* Return a string containing the option source and line number */
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h27 2. Altered source versions must be plainly marked as such, and must not be
29 3. This notice may not be removed or altered from any source distribution.
502 z_stream *source));
504 Sets the destination stream as a complete copy of the source stream. If
505 the source stream is using an application-supplied history buffer, a new
519 enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
520 (such as zalloc being NULL). msg is left unchanged in both source and
531 deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
589 inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source

Completed in 189 milliseconds

12345678910