Searched refs:errorptr (Results 1 - 6 of 6) sorted by relevance

/external/jpeg/
H A Djquant2.c958 register FSERRPTR errorptr; /* => fserrors[] at column before current */ local
963 int dir3; /* 3*dir, for advancing inptr & errorptr */
983 errorptr = cquantize->fserrors + (width+1)*3; /* => entry after last column */
989 errorptr = cquantize->fserrors; /* => entry before first real column */
1005 * Note: errorptr points to *previous* column's array entry.
1007 cur0 = RIGHT_SHIFT(cur0 + errorptr[dir3+0] + 8, 4);
1008 cur1 = RIGHT_SHIFT(cur1 + errorptr[dir3+1] + 8, 4);
1009 cur2 = RIGHT_SHIFT(cur2 + errorptr[dir3+2] + 8, 4);
1049 errorptr[0] = (FSERROR) (bpreverr0 + cur0);
1057 errorptr[
[all...]
H A Djquant1.c620 register FSERRPTR errorptr; /* => fserrors[] at column before current */ local
649 errorptr = cquantize->fserrors[ci] + (width+1); /* => entry after last column */
654 errorptr = cquantize->fserrors[ci]; /* => entry before first column */
670 * Note: errorptr points to *previous* column's array entry.
672 cur = RIGHT_SHIFT(cur + errorptr[dir] + 8, 4);
693 errorptr[0] = (FSERROR) (bpreverr + cur);
704 errorptr += dir; /* advance errorptr to current column */
710 errorptr[0] = (FSERROR) bpreverr; /* unload prev err into array */
/external/pcre/
H A Dpcreposix.c248 const char *errorptr; local
261 preg->re_pcre = pcre_compile2(pattern, options, &errorcode, &errorptr,
H A Dpcre_study.c1018 errorptr points to where to place error messages;
1027 pcre_study(const pcre *external_re, int options, const char **errorptr) argument
1039 *errorptr = NULL;
1043 *errorptr = "argument is not a compiled regular expression";
1049 *errorptr = "unknown or incorrect option bit(s) set";
1103 *errorptr = "failed to get memory";
H A Dpcregexp.pas338 var errorptr : PChar; var erroroffset : integer;
343 var errorptr : PChar; var erroroffset : integer;
415 var errorptr : PChar ) : pointer {pcre_extra}; external;
H A Dpcre_compile.c6799 errorptr pointer to pointer to error text
6804 with errorptr and erroroffset set
6808 pcre_compile(const char *pattern, int options, const char **errorptr, argument
6811 return pcre_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
6817 const char **errorptr, int *erroroffset, const unsigned char *tables)
6844 /* We can't pass back an error message if errorptr is NULL; I guess the best we
6848 if (errorptr == NULL)
6854 *errorptr = NULL;
7207 *errorptr = find_error_text(errorcode);
7291 *errorptr
6816 pcre_compile2(const char *pattern, int options, int *errorcodeptr, const char **errorptr, int *erroroffset, const unsigned char *tables) argument
[all...]

Completed in 168 milliseconds