Searched refs:source (Results 1 - 25 of 6141) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jar ... Object { private final com.google.zxing.LuminanceSource source protected void " href="/5.1.0_r1/s? ...
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DDecodeHandler.java72 PlanarYUVLuminanceSource source = activity.getCameraManager().buildLuminanceSource(data, width, height);
73 if (source != null) {
74 BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
92 bundle.putParcelable(DecodeThread.BARCODE_BITMAP, source.renderCroppedGreyscaleBitmap());
/external/zlib/src/as400/
H A Dzlib.inc116 D source 65535 const options(*varsize) Source buffer
122 D source 65535 const options(*varsize) Source buffer
132 D source 65535 const options(*varsize) Source buffer
326 D source like(z_stream) Source stream
373 D source like(z_stream) Source stream
/external/zlib/src/
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));
/external/zlib/src/contrib/delphi/
H A DZLib.pas100 Compressed data comes from a separate source stream. TDecompressionStream
233 procedure _memcpy(dest, source: Pointer; count: Integer); cdecl;
235 Move(source^, dest^, count);
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs39 public int Put(byte[] source, int offset, int count) argument
44 _buffer[(_tail+i) % _capacity] = source[offset+i];
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm28 ; 2. Altered source versions must be plainly marked as such, and must not be
30 ; 3. This notice may not be removed or altered from any source distribution.
/external/zlib/src/contrib/masmx86/
H A Dmatch686.asm180 ;; 2. Altered source versions must be plainly marked as such, and must not be
182 ;; 3. This notice may not be removed or altered from any source distribution.
/external/zlib/src/contrib/minizip/
H A Dunzip.c30 The encryption/decryption parts of this source code (as opposed to the
32 whole source package can be freely distributed, including from the USA.
1482 char source[12]; local
1626 if(ZREAD64(s->z_filefunc, s->filestream,source, 12)<12)
1630 zdecode(s->keys,s->pcrc_32_tab,source[i]);
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas118 function deflateCopy(var dest, source: z_stream): Integer;
130 function inflateCopy(var dest, source: z_stream): Integer;
145 const source: PChar; sourceLen: LongInt): Integer;
147 const source: PChar; sourceLen: LongInt;
151 const source: PChar; sourceLen: LongInt): Integer;
271 procedure _memcpy(dest, source: Pointer; count: Integer); cdecl;
273 Move(source^, dest^, count);
/external/zlib/src/contrib/puff/
H A Dpuff.c24 * and document some of the less obvious aspects of the format. This source
36 * - Update puff() dest and source pointers on negative
43 * - Use pointers instead of long to specify source and
750 * Inflate source to dest. On return, destlen and sourcelen are updated to the
753 * source data, i.e. it is not in the deflate format, then a negative value is
758 * inflate data (a negative error), the dest and source pointers are updated to
795 const unsigned char *source, /* pointer to source data pointer */
808 s.in = source;
793 puff(unsigned char *dest, unsigned long *destlen, const unsigned char *source, unsigned long *sourcelen) argument
H A Dpuff.h17 2. Altered source versions must be plainly marked as such, and must not be
19 3. This notice may not be removed or altered from any source distribution.
34 const unsigned char *source, /* pointer to source data pointer */
H A Dpufftest.c93 unsigned char *source = NULL, *dest; local
117 source = load(name, &len);
118 if (source == NULL) {
125 free(source);
130 free(source);
137 ret = puff(NIL, &destlen, source + skip, &sourcelen);
153 free(source);
156 puff(dest, &destlen, source + skip, &sourcelen);
163 free(source);
/external/zlib/src/examples/
H A Dzpipe.c30 /* Compress from file source to file dest until EOF on source.
36 int def(FILE *source, FILE *dest, int level) argument
54 strm.avail_in = fread(in, 1, CHUNK, source);
55 if (ferror(source)) {
59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
63 compression if all of source has been read in */
86 /* Decompress from file source to file dest until stream ends or EOF.
92 int inf(FILE *source, FILE *dest) argument
112 strm.avail_in = fread(in, 1, CHUNK, source);
[all...]
/external/zlib/
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.h213 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
/external/zopfli/src/zopfli/
H A Dlz77.c39 const ZopfliLZ77Store* source, ZopfliLZ77Store* dest) {
43 (unsigned short*)malloc(sizeof(*dest->litlens) * source->size);
44 dest->dists = (unsigned short*)malloc(sizeof(*dest->dists) * source->size);
48 dest->size = source->size;
49 for (i = 0; i < source->size; i++) {
50 dest->litlens[i] = source->litlens[i];
51 dest->dists[i] = source->dists[i];
38 ZopfliCopyLZ77Store( const ZopfliLZ77Store* source, ZopfliLZ77Store* dest) argument
H A Dlz77.h53 void ZopfliCopyLZ77Store(const ZopfliLZ77Store* source, ZopfliLZ77Store* dest);
H A Dsqueeze.c50 static void CopyStats(SymbolStats* source, SymbolStats* dest) { argument
51 memcpy(dest->litlens, source->litlens, 288 * sizeof(dest->litlens[0]));
52 memcpy(dest->dists, source->dists, 32 * sizeof(dest->dists[0]));
54 memcpy(dest->ll_symbols, source->ll_symbols,
56 memcpy(dest->d_symbols, source->d_symbols, 32 * sizeof(dest->d_symbols[0]));

Completed in 225 milliseconds

1234567891011>>