Searched defs:errorptr (Results 1 - 12 of 12) sorted by relevance

/external/pcre/dist/
H A Dpcreposix.c270 const char *errorptr; local
284 preg->re_pcre = pcre_compile2(pattern, options, &errorcode, &errorptr,
H A Dpcre_study.c1400 errorptr points to where to place error messages;
1410 pcre_study(const pcre *external_re, int options, const char **errorptr) argument
1413 pcre16_study(const pcre16 *external_re, int options, const char **errorptr)
1416 pcre32_study(const pcre32 *external_re, int options, const char **errorptr)
1430 *errorptr = NULL;
1434 *errorptr = "argument is not a compiled regular expression";
1441 *errorptr = "argument not compiled in 8 bit mode";
1443 *errorptr = "argument not compiled in 16 bit mode";
1445 *errorptr = "argument not compiled in 32 bit mode";
1452 *errorptr
[all...]
H A Dpcre_jit_test.c824 const char *errorptr; local
850 regex = pcre_compile(null_str, 0, &errorptr, &erroroffset, NULL);
856 regex = pcre16_compile(null_str, 0, &errorptr, &erroroffset, NULL);
862 regex = pcre32_compile(null_str, 0, &errorptr, &erroroffset, NULL);
H A Dpcre_compile.c8738 errorptr pointer to pointer to error text
8743 with errorptr and erroroffset set
8748 pcre_compile(const char *pattern, int options, const char **errorptr, argument
8752 pcre16_compile(PCRE_SPTR16 pattern, int options, const char **errorptr,
8756 pcre32_compile(PCRE_SPTR32 pattern, int options, const char **errorptr,
8761 return pcre_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
8763 return pcre16_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
8765 return pcre32_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
8773 const char **errorptr, int *erroroffset, const unsigned char *tables)
8777 const char **errorptr, in
8772 pcre_compile2(const char *pattern, int options, int *errorcodeptr, const char **errorptr, int *erroroffset, const unsigned char *tables) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_context.c126 int *errorptr, bool * x11errorptr)
137 *errorptr = BadAlloc;
143 *errorptr = GLXBadContext;
175 *errorptr = BadMatch;
179 *errorptr = GLXBadContext;
484 unsigned long mask, int *errorptr, bool * x11errorptr)
493 *errorptr = BadMatch;
499 *errorptr = BadAccess;
514 *errorptr = GLXBadContext;
124 apple_glx_create_context(void **ptr, Display * dpy, int screen, const void *mode, void *sharedContext, int *errorptr, bool * x11errorptr) argument
483 apple_glx_copy_context(void *currentptr, void *srcptr, void *destptr, unsigned long mask, int *errorptr, bool * x11errorptr) argument
/external/mesa3d/src/glx/apple/
H A Dapple_glx_context.c126 int *errorptr, bool * x11errorptr)
137 *errorptr = BadAlloc;
143 *errorptr = GLXBadContext;
175 *errorptr = BadMatch;
179 *errorptr = GLXBadContext;
484 unsigned long mask, int *errorptr, bool * x11errorptr)
493 *errorptr = BadMatch;
499 *errorptr = BadAccess;
514 *errorptr = GLXBadContext;
124 apple_glx_create_context(void **ptr, Display * dpy, int screen, const void *mode, void *sharedContext, int *errorptr, bool * x11errorptr) argument
483 apple_glx_copy_context(void *currentptr, void *srcptr, void *destptr, unsigned long mask, int *errorptr, bool * x11errorptr) argument
/external/chromium_org/third_party/libjpeg_turbo/
H A Djquant1.c625 register FSERRPTR errorptr; /* => fserrors[] at column before current */ local
654 errorptr = cquantize->fserrors[ci] + (width+1); /* => entry after last column */
659 errorptr = cquantize->fserrors[ci]; /* => entry before first column */
675 * Note: errorptr points to *previous* column's array entry.
677 cur = RIGHT_SHIFT(cur + errorptr[dir] + 8, 4);
698 errorptr[0] = (FSERROR) (bpreverr + cur);
709 errorptr += dir; /* advance errorptr to current column */
715 errorptr[0] = (FSERROR) bpreverr; /* unload prev err into array */
H A Djquant2.c942 register FSERRPTR errorptr; /* => fserrors[] at column before current */ local
947 int dir3; /* 3*dir, for advancing inptr & errorptr */
967 errorptr = cquantize->fserrors + (width+1)*3; /* => entry after last column */
973 errorptr = cquantize->fserrors; /* => entry before first real column */
989 * Note: errorptr points to *previous* column's array entry.
991 cur0 = RIGHT_SHIFT(cur0 + errorptr[dir3+0] + 8, 4);
992 cur1 = RIGHT_SHIFT(cur1 + errorptr[dir3+1] + 8, 4);
993 cur2 = RIGHT_SHIFT(cur2 + errorptr[dir3+2] + 8, 4);
1033 errorptr[0] = (FSERROR) (bpreverr0 + cur0);
1041 errorptr[
[all...]
/external/jpeg/
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 */
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...]
/external/qemu/distrib/jpeg-6b/
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 */
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...]

Completed in 371 milliseconds