| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | engine.c | 242 register unsigned char *sp; /* start of string matched by it */ local 254 sp = start; 276 sp++; 285 sp++; 296 rest = slow(m, sp, stp, ss, es); 304 assert(stp >= sp); /* it did work */ 309 if (slow(m, sp, rest, ssub, esub) != NULL) { 310 dp = dissect(m, sp, rest, ssub, esub); 313 assert(sp == rest); 314 sp 430 register unsigned char *sp; /* start of string matched by it */ local [all...] |
| H A D | regcomp.c | 726 register unsigned char *sp = p->next; local 734 len = p->next - sp; 736 if (strncmp(cp->name, sp, len) == 0 && cp->name[len] == '\0') 797 register unsigned char *sp = p->next; local 807 len = p->next - sp; 809 if (strncmp(cp->name, sp, len) == 0 && cp->name[len] == '\0') 812 return(*sp); /* single character */ 1456 register sop *sp; local 1461 sp = (sop *)realloc(p->strip, size*sizeof(sop)); 1462 if (sp [all...] |
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 29838 struct timespec sp; local [all...] |
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd_gif_in.c | 87 int stack[STACK_SIZE], *sp; member in struct:__anon133 444 sd->sp = sd->stack; 456 if (sd->sp > sd->stack) 457 return *--sd->sp; 470 sd->sp = sd->stack; 490 if (sd->sp == (sd->stack + STACK_SIZE)) { 496 *sd->sp++ = sd->firstcode; 501 if (sd->sp == (sd->stack + STACK_SIZE)) { 505 *sd->sp++ = sd->table[1][code]; 512 *sd->sp [all...] |
| H A D | gd.c | 1854 if (sp<stack+FILL_MAX && Y+(DY)>=0 && Y+(DY)<wy2) \ 1855 {sp->y = Y; sp->xl = XL; sp->xr = XR; sp->dy = DY; sp++;} 1858 {sp--; Y = sp->y+(DY = sp->dy); XL = sp 1873 struct seg *sp; local 1964 struct seg *sp; local [all...] |
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 3193 UChar *sbuf, *ebuf, *sp; local 3203 sp = sbuf; 3209 if (sp >= ebuf) { 3212 sp = sbuf + sbuf_size; 3217 *sp++ = buf[i]; 3221 r = onig_node_str_set(node, sbuf, sp);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | php_crypt_r.c | 136 const char *sp = salt; local 150 sp = salt; 153 if (strncmp(sp, MD5_MAGIC, MD5_MAGIC_LEN) == 0) { 154 sp += MD5_MAGIC_LEN; 158 for (ep = sp; *ep != '\0' && *ep != '$' && ep < (sp + 8); ep++) { 163 sl = ep - sp; 181 if(!CryptHashData( ctx, (BYTE *)sp, sl, 0)) { 193 if(!CryptHashData(ctx1, (BYTE *)sp, sl, 0)) { 222 if (strncpy_s(passwd + MD5_MAGIC_LEN, MD5_HASH_MAX_LEN - MD5_MAGIC_LEN, sp, s 322 const char *sp, *ep; local [all...] |
| H A D | file.c | 1687 char *sp, *dp; local 1690 if ((sp = expand_filepath(src, NULL TSRMLS_CC)) == NULL) { 1694 efree(sp); 1700 !strcmp(sp, dp); 1702 !strcasecmp(sp, dp); 1705 efree(sp);
|
| /PHP_TRUNK/main/ |
| H A D | snprintf.c | 520 * It uses the char pointers sp and bep: 521 * sp points to the next available character in the buffer 527 #define INS_CHAR(c, sp, bep, cc) \ 529 if (sp < bep) \ 531 *sp++ = c; \ 566 INS_CHAR( ch, sp, bep, cc ) ; \ 584 char *sp; local 623 sp = odp->nextb; 628 INS_CHAR(*fmt, sp, bep, cc); 1160 INS_CHAR(*s, sp, be [all...] |
| /PHP_TRUNK/ext/pgsql/ |
| H A D | pgsql.c | 3461 "sp", &oid_string, &oid_strlen, &file_out, &name_len) == SUCCESS) { 4117 *sp, local 4126 for (bp = buffer, sp = strtext; *sp != '\0'; bp++, sp++) 4131 if (*sp == '\\') 4133 *bp = *sp; 4136 if (*sp == '\'') /* state=5 */ 4143 else if (*sp == '\\') /* state=6 */ 4152 if (isdigit(*sp)) [all...] |
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_signals.c | 23 static int sp[2]; variable 177 write(sp[1], &s, sizeof(s)); 186 if (0 > socketpair(AF_UNIX, SOCK_STREAM, 0, sp)) { 191 if (0 > fd_set_blocked(sp[0], 0) || 0 > fd_set_blocked(sp[1], 0)) { 196 if (0 > fcntl(sp[0], F_SETFD, FD_CLOEXEC) || 0 > fcntl(sp[1], F_SETFD, FD_CLOEXEC)) { 231 close(sp[0]); 232 close(sp[1]); 250 return sp[ [all...] |
| /PHP_TRUNK/ext/gd/ |
| H A D | gd.c | 4261 long sz = 0, sp = 0, wd = 0; local 4276 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "srl|lld", &str, &str_len, &fnt, &sz, &sp, &wd, &angle) == FAILURE) { 4281 space = sp;
|