Searched defs:nlen (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo.c | 223 int nlen; local 268 nlen = valstart - optstart - 1; 270 if (0 == strncmp(data_source + optstart, parsed[j].optname, nlen) && parsed[j].optname[nlen] == '\0') {
|
| /PHP_TRUNK/main/ |
| H A D | php_variables.c | 423 unsigned long nlen; /* ptrdiff_t is not portable */ local 430 nlen = p - *env; 431 if (nlen >= alloc_size) { 432 alloc_size = nlen + 64; 435 memcpy(t, *env, nlen); 436 t[nlen] = '\0';
|
| /PHP_TRUNK/ext/standard/ |
| H A D | incomplete_class.c | 138 PHPAPI char *php_lookup_class_name(zval *object, zend_uint *nlen) argument 150 if (nlen) { 151 *nlen = Z_STRLEN_PP(val);
|
| H A D | string.c | 3405 int nlen = *len, i; local 3408 for (source=str, end=str+nlen, target=str; source < end; source++) { 3412 case 'n': *target++='\n'; nlen--; break; 3413 case 'r': *target++='\r'; nlen--; break; 3414 case 'a': *target++='\a'; nlen--; break; 3415 case 't': *target++='\t'; nlen--; break; 3416 case 'v': *target++='\v'; nlen--; break; 3417 case 'b': *target++='\b'; nlen--; break; 3418 case 'f': *target++='\f'; nlen--; break; 3419 case '\\': *target++='\\'; nlen [all...] |
| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcre_compile.c | 5439 int nlen = (int)(code - bracode); local 5442 memmove(bracode + 1 + LINK_SIZE, bracode, IN_UCHARS(nlen)); 5444 nlen += 1 + LINK_SIZE; 5447 PUTINC(code, 0, nlen); 5448 PUT(bracode, 1, nlen);
|
| /PHP_TRUNK/ext/reflection/ |
| H A D | php_reflection.c | 138 register int nlen = (str->len + len + (1024 - 1)) & ~(1024 - 1); local 139 if (str->alloced < nlen) { 140 str->alloced = nlen; 153 register int nlen = (str->len + len + (1024 - 1)) & ~(1024 - 1); local 154 if (str->alloced < nlen) { 155 str->alloced = nlen;
|
Completed in 36 milliseconds