Searched refs:end (Results 1 - 25 of 13805) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DDecodeHandler.java87 long end = System.currentTimeMillis();
88 Log.d(TAG, "Found barcode in " + (end - start) + " ms");
/external/yaffs2/yaffs2/
H A Dyaffs_fs.c14 * This is the file system front-end to YAFFS that hooks it up to
1957 char *end, *mask_name;
1984 mask_bitfield = simple_strtoul(buf + pos, &end, 0);
1985 if (end > buf + pos) {
1987 len = end - (buf + pos);
/external/zlib/src/contrib/delphi/
H A DZLib.pas42 end;
56 end;
96 end;
105 to the end of the stream, requesting the size of the stream, and writing to
124 end;
221 end;
226 end;
231 end;
236 end;
258 end;
[all...]
/external/zlib/src/contrib/infback9/
H A Dinftree9.c57 int end; /* use base and extra for symbol > end */ local
178 end = 19;
185 end = 256;
190 end = -1;
213 if ((int)(work[sym]) < end) {
217 else if ((int)(work[sym]) > end) {
222 this.op = (unsigned char)(32 + 64); /* end of block */
/external/zlib/src/contrib/inflate86/
H A Dinffas86.c39 available, an end-of-block is encountered, or a data error is encountered.
55 TYPE -- reached end of block code, inflate() to interpret next block
85 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */ member in struct:inffast_ar
114 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
125 /* decode literals and length/distances until end-of-block or not enough
143 " movq 48(%%rsp), %%r10\n" /* r10 = end */
487 " cmpl %%edi, 24(%%esp)\n" /* out < end */
1150 strm->avail_out = (unsigned)(ar.out < ar.end ?
1151 PAD_AVAIL_OUT + (ar.end
[all...]
H A Dinffast.S182 #define end 16 /* unsigned char* */ define
246 * end = out + (strm->avail_out - 257);
270 movl %ecx, end(%esp)
426 /* while (in < last && out < end)
428 cmpl out_r, end(%esp)
429 jbe .L_break_loop /* if (out >= end) */
856 * } while (in < last && out < end);
904 /* while (in < last && out < end)
906 cmpl out_r, end(%esp)
907 jbe .L_break_loop /* if (out >= end) */
[all...]
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm417 ;;; Test the strings for equality, 8 bytes at a time. At the end,
H A Dinffas8664.c46 available, an end-of-block is encountered, or a data error is encountered.
62 TYPE -- reached end of block code, inflate() to interpret next block
90 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */ member in struct:inffast_ar
131 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
142 /* decode literals and length/distances until end-of-block or not enough
178 strm->avail_out = (unsigned)(ar.out < ar.end ?
179 PAD_AVAIL_OUT + (ar.end - ar.out) :
180 PAD_AVAIL_OUT - (ar.out - ar.end));
H A Dinffasx64.asm50 mov r10, [rsp+48] ; /* r10 = end */
/external/zlib/src/contrib/masmx86/
H A Dinffas32.asm1080 end
H A Dmatch686.asm356 ;;; Test the strings for equality, 8 bytes at a time. At the end,
479 end
/external/zlib/src/contrib/pascal/
H A Dexample.pas43 end;
44 end;
50 end;
75 end;
97 end;
103 end;
109 end;
115 end;
125 end;
133 end;
[all...]
H A Dzlibpas.pas47 end;
64 end;
230 end;
237 end;
242 end;
247 end;
254 end;
259 end;
264 end;
269 end;
[all...]
/external/zlib/src/examples/
H A Dgun.c28 gun will decompress from stdin to stdout. The names must end in .gz, -gz,
45 magic header bytes. Since the end of Unix compress stream is marked by the
46 end-of-file, they cannot be concantenated. If a Unix compress stream is
88 returns end-of-file or error. Return 0 on error. */
196 lunpipe() will return Z_OK on success, Z_BUF_ERROR for an unexpected end of
212 unsigned end; /* last valid entry in prefix/suffix tables */ local
245 end = flags ? 256 : 255;
268 if (end >= mask && bits < max) {
279 if (NEXT() == -1) { /* EOF is end of compressed data */
291 if (NEXT() == -1) /* can't end i
[all...]
H A Dgzappend.c191 /* read from file in, exit if end-of-file */
194 if (readin(in) == 0) bye("unexpected end of ", in->name);
216 bye("unexpected end of ", in->name);
265 off_t lastoff, end; local
325 /* process end of block */
339 /* save the location of the end of the compressed data */
340 end = lseek(gz.fd, 0L, SEEK_CUR) - gz.left;
349 /* if not at end of file, warn */
352 "gzappend warning: junk at end of gzip file overwritten\n");
374 lseek(gz.fd, --end, SEEK_SE
[all...]
H A Dgzlog.c11 strategy is to write the short strings in an uncompressed form to the end of
44 - no junk at end (no other gzip streams)
61 The extra field has the necessary information to find the end of the
98 the length at the end of a gzip file is used for error checking only, and
293 char *end; /* end of path, for appending suffices such as ".gz" */ member in struct:log
353 strcpy(log->end, ".lock");
376 strcpy(log->end, ".lock");
388 strcpy(log->end, ".lock");
400 strcpy(log->end, "
504 off_t end; local
613 off_t end; local
[all...]
/external/zlib/src/
H A Dinffast.c35 available, an end-of-block is encountered, or a data error is encountered.
51 TYPE -- reached end of block code, inflate() to interpret next block
76 unsigned char FAR *end; /* while out < end, enough space available */ local
103 end = out + (strm->avail_out - 257);
118 /* decode literals and length/distances until end-of-block or not enough
230 if (op < len) { /* some from end of window */
297 else if (op & 32) { /* end-of-block */
298 Tracevv((stderr, "inflate: end of block\n"));
307 } while (in < last && out < end);
[all...]
H A Dinflate.c96 local int updatewindow OF((z_streamp strm, const unsigned char FAR *end,
369 inflate call, but the end of the deflate stream has not been reached yet.
379 local int updatewindow(strm, end, copy)
381 const Bytef *end;
406 zmemcpy(state->window, end - state->wsize, state->wsize);
413 zmemcpy(state->window + state->wnext, end - copy, dist);
416 zmemcpy(state->window, end - copy, copy);
602 will return Z_BUF_ERROR if it has not reached the end of the stream.
894 Tracev((stderr, "inflate: stored end\n"));
987 /* check for end
[all...]
H A Dinftrees.c57 int end; /* use base and extra for symbol > end */ local
184 end = 19;
191 end = 256;
196 end = -1;
219 if ((int)(work[sym]) < end) {
223 else if ((int)(work[sym]) > end) {
228 here.op = (unsigned char)(32 + 64); /* end of block */
/external/zopfli/src/zopfli/
H A Dblocksplitter.c41 double, i is in range start-end (excluding end).
44 size_t start, size_t end) {
45 if (end - start < 1024) {
49 for (i = start; i < end; i++) {
69 if (end - start <= NUM) break;
72 p[i] = start + (i + 1) * ((end - start) / (NUM + 1));
86 end = besti == NUM - 1 ? end : p[besti + 1];
104 lend: end o
43 FindMinimum(FindMinimumFun f, void* context, size_t start, size_t end) argument
117 size_t end; member in struct:SplitCostContext
207 size_t end = i == npoints ? llsize - 1 : splitpoints[i]; local
[all...]
H A Ddeflate.c294 end code 256. expected_data_size is the uncompressed block size, used for
365 result += ll_lengths[256]; /*end symbol*/
432 /* The stride must end, collapse what we have, if we have enough (4). */
521 lend: where to end in the LZ77 data (not inclusive)
742 size_t end = i == npoints ? inend : splitpoints[i]; local
743 DeflateBlock(options, btype, i == npoints && final, in, start, end,
803 size_t end = i == npoints ? store.size : splitpoints[i]; local
805 store.litlens, store.dists, start, end, 0,
H A Dhash.c91 void ZopfliUpdateHash(const unsigned char* array, size_t pos, size_t end, argument
98 UpdateHashValue(h, pos + ZOPFLI_MIN_MATCH <= end ?
112 while (pos + amount + 1 < end &&
130 void ZopfliWarmupHash(const unsigned char* array, size_t pos, size_t end, argument
132 (void)end;
H A Dhash.h59 void ZopfliUpdateHash(const unsigned char* array, size_t pos, size_t end,
67 void ZopfliWarmupHash(const unsigned char* array, size_t pos, size_t end,
H A Dlz77.c116 end is the last possible byte, beyond which to stop looking.
117 safe_end is a few (8) bytes before end, for comparing multiple bytes at once.
121 const unsigned char* end,
148 while (scan != end && *scan == *match) {
461 size_t start, size_t end,
472 for (i = start; i < end; i++) {
119 GetMatch(const unsigned char* scan, const unsigned char* match, const unsigned char* end, const unsigned char* safe_end) argument
459 ZopfliLZ77Counts(const unsigned short* litlens, const unsigned short* dists, size_t start, size_t end, size_t* ll_count, size_t* d_count) argument

Completed in 789 milliseconds

1234567891011>>