| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | engine.c | 17 #define match smat macro 28 #define match lmat macro 32 struct match { struct 39 unsigned char *coldp; /* can be no match starting before here */ 75 struct match mv; 76 register struct match *m = &mv; 106 /* match struct setup */ 172 /* uh-oh... we couldn't find a subexpression-level match */ 196 /* despite initial appearances, there is no match here */ 228 == static unsigned char *dissect(register struct match * 1019 #undef match macro [all...] |
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 669 ** verify that values returned by these interfaces match the macros in 4213 ** nArg parameter is a better match than a function implementation with 4216 ** match than a function where the encoding is different. 4218 ** is a closer match than a function where the encoding difference is 4363 ** last time when the xFinal callback is invoked. ^(When no rows match 5765 ** ^If there is no match, a NULL pointer is returned. 6071 ** ^If the second parameter (zDbName) does not match the name of any 7943 ** NOTE: These values must match the corresponding PAGER_ values in 8613 ** NOTE: These values must match the corresponding BTREE_ values in btree.h. 10054 #define UNPACKED_PREFIX_MATCH 0x0010 /* A prefix match i 81338 int match = 0; local [all...] |
| /PHP_TRUNK/ext/zip/lib/ |
| H A D | zip_open.c | 525 unsigned char *buf, *match; 555 match = buf; 558 while ((match=_zip_memmem(match, buflen-(match-buf)-18, 560 /* found match -- check, if good */ 561 /* to avoid finding the same match all over again */ 562 match++; 563 if ((cdirnew=_zip_readcdir(fp, buf_offset, buf, match-1, buflen, flags, 514 unsigned char *buf, *match; local
|
| /PHP_TRUNK/win32/ |
| H A D | glob.c | 156 static int match(Char *, Char *, Char *); 501 * If there was no match we are going to append the pattern 673 if (!match(pathend, pattern, restpattern)) { 764 match(name, pat, patend) function 777 if (match(name, pat, patend))
|
| /PHP_TRUNK/ext/mbstring/libmbfl/filters/ |
| H A D | mbfilter_sjis_mobile.c | 250 int i, match = 0; local 255 match = 1; 259 return match; 265 int i, match = 0; local 270 match = 1; 274 return match; 406 int i, match = 0, c1s; local 415 match = 1; 418 match = 1; 421 match 465 int i, match = 0, c1s; local 536 int i, match = 0, c1s; local [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | scanf.c | 245 int i, match = 0; local 249 match = 1; 253 if (!match) { 257 match = 1; 262 return (cset->exclude ? !match : match);
|
| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcre_exec.c | 60 of call to match(). We do it this way to save on using another stack variable, 66 /* Non-error returns from the match() function. Error returns are externally 72 /* Special internal returns from the match() function. Make them sufficiently 130 negative, so the match always fails. However, in JavaScript compatibility mode, 138 md points to match data block 142 -1 no match 143 -2 partial match; always given if at end subject 198 if (eptr >= md->end_subject) return -2; /* Partial match */ 223 if (eptr >= md->end_subject) return -2; /* Partial match */ 240 if (eptr >= md->end_subject) return -2; /* Partial match */ 497 match(REGISTER PCRE_PUCHAR eptr, REGISTER const pcre_uchar *ecode, function [all...] |
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd_crop.c | 109 int color, corners, match; local 147 match = 1; 148 for (y = 0; match && y < height; y++) { 149 for (x = 0; match && x < width; x++) { 151 match = (color == c2); 163 match = 1; 164 for (y = height - 1; match && y >= 0; y--) { 165 for (x = 0; match && x < width; x++) { 166 match = (color == gdImageGetPixel(im, x,y)); 176 match 222 int match; local [all...] |
| /PHP_TRUNK/ext/pcre/ |
| H A D | php_pcre.c | 519 /* Add (match, offset) to the return value */ 535 char *subject; /* String to match against */ 563 a global match */ 565 subpattern after a global match */ 574 int g_notempty = 0; /* If the match should not be empty */ 579 int offset_capture; /* Capture match offsets: yes/no */ 644 /* Allocate match sets array and initialize the values. */ 752 /* If we previously set PCRE_NOTEMPTY after a null match, 768 the match again at the same point. If this fails (picked up above) we 772 /* Advance to the position right after the last full match */ 902 *match, /* Current match for a backref */ local 1029 *match, /* The current match */ local [all...] |
| /PHP_TRUNK/ext/openssl/ |
| H A D | openssl.c | 78 * enum. It is now impossible to match real values 1772 /* NOTE: the purposes are added as integer keys - the keys match up to the X509_PURPOSE_SSL_XXX defines 2744 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Signature did not match the certificate request"); 4797 /* Does the common name match ? (used primarily for https://) */ 4800 int match = 0; local 4811 match = strcmp(cnmatch, buf) == 0; 4812 if (!match && strlen(buf) > 3 && buf[0] == '*' && buf[1] == '.') { 4818 match = tmp && strcmp(tmp, buf+2) && tmp == strchr(cnmatch, '.'); 4822 if (!match) { 4823 /* didn't match */ [all...] |
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | softmagic.c | 50 private int match(struct magic_set *, struct magic *, uint32_t, 82 if ((rv = match(ms, ml->magic, ml->nmagic, buf, nbytes, 0, mode, 91 * Go through the whole list, stopping if you find a match. Process all 92 * the continuations of that match before returning. 96 * At any time when processing a successful top-level match, there is a 102 * lower-level continuation preceding them - failed to match. 118 match(struct magic_set *ms, struct magic *magic, uint32_t nmagic, function 125 int returnvalv = 0, e; /* if a match is found it is set to 1*/ 183 * main entry didn't match, 213 /* and any continuations that match */ 2077 zval **match, **offset; local [all...] |