nlen             6316 ext/pcre/pcrelib/pcre_compile.c               int nlen = (int)(code - bracode);
nlen             6319 ext/pcre/pcrelib/pcre_compile.c               memmove(bracode + 1 + LINK_SIZE, bracode, IN_UCHARS(nlen));
nlen             6321 ext/pcre/pcrelib/pcre_compile.c               nlen += 1 + LINK_SIZE;
nlen             6324 ext/pcre/pcrelib/pcre_compile.c               PUTINC(code, 0, nlen);
nlen             6325 ext/pcre/pcrelib/pcre_compile.c               PUT(bracode, 1, nlen);
nlen              223 ext/pdo/pdo.c  	int nlen;
nlen              268 ext/pdo/pdo.c  		nlen = valstart - optstart - 1;
nlen              270 ext/pdo/pdo.c  			if (0 == strncmp(data_source + optstart, parsed[j].optname, nlen) && parsed[j].optname[nlen] == '\0') {
nlen              138 ext/reflection/php_reflection.c 		register int nlen = (str->len + len + (1024 - 1)) & ~(1024 - 1);
nlen              139 ext/reflection/php_reflection.c 		if (str->alloced < nlen) {
nlen              140 ext/reflection/php_reflection.c 			str->alloced = nlen;
nlen              153 ext/reflection/php_reflection.c 	register int nlen = (str->len + len + (1024 - 1)) & ~(1024 - 1);
nlen              154 ext/reflection/php_reflection.c 	if (str->alloced < nlen) {
nlen              155 ext/reflection/php_reflection.c 		str->alloced = nlen;
nlen             5436 ext/reflection/php_reflection.c 		int nlen;
nlen             5441 ext/reflection/php_reflection.c 			nlen = hash_key->nKeyLength-1;
nlen             5445 ext/reflection/php_reflection.c 			nlen = (*pce)->name_length;
nlen             5450 ext/reflection/php_reflection.c 			add_assoc_zval_ex(class_array, name, nlen+1, zclass);
nlen             5452 ext/reflection/php_reflection.c 			add_next_index_stringl(class_array, name, nlen, 1);
nlen              138 ext/standard/incomplete_class.c PHPAPI char *php_lookup_class_name(zval *object, zend_uint *nlen)
nlen              150 ext/standard/incomplete_class.c 		if (nlen) {
nlen              151 ext/standard/incomplete_class.c 			*nlen = Z_STRLEN_PP(val);
nlen               61 ext/standard/php_incomplete_class.h PHPAPI char *php_lookup_class_name(zval *object, zend_uint *nlen);
nlen              112 ext/standard/php_smart_str.h #define smart_str_appendl_ex(dest, src, nlen, what) do {			\
nlen              116 ext/standard/php_smart_str.h 	smart_str_alloc4(__dest, (nlen), (what), __nl);					\
nlen              117 ext/standard/php_smart_str.h 	memcpy(__dest->c + __dest->len, (src), (nlen));					\
nlen              186 ext/standard/php_smart_str.h #define smart_str_setl(dest, src, nlen) do {						\
nlen              187 ext/standard/php_smart_str.h 	(dest)->len = (nlen);											\
nlen              188 ext/standard/php_smart_str.h 	(dest)->a = (nlen) + 1;											\
nlen             3431 ext/standard/string.c 	int  nlen = *len, i;
nlen             3434 ext/standard/string.c 	for (source=str, end=str+nlen, target=str; source < end; source++) {
nlen             3438 ext/standard/string.c 				case 'n':  *target++='\n'; nlen--; break;
nlen             3439 ext/standard/string.c 				case 'r':  *target++='\r'; nlen--; break;
nlen             3440 ext/standard/string.c 				case 'a':  *target++='\a'; nlen--; break;
nlen             3441 ext/standard/string.c 				case 't':  *target++='\t'; nlen--; break;
nlen             3442 ext/standard/string.c 				case 'v':  *target++='\v'; nlen--; break;
nlen             3443 ext/standard/string.c 				case 'b':  *target++='\b'; nlen--; break;
nlen             3444 ext/standard/string.c 				case 'f':  *target++='\f'; nlen--; break;
nlen             3445 ext/standard/string.c 				case '\\': *target++='\\'; nlen--; break;
nlen             3452 ext/standard/string.c 							nlen-=3;
nlen             3455 ext/standard/string.c 							nlen-=2;
nlen             3469 ext/standard/string.c 						nlen-=i;
nlen             3473 ext/standard/string.c 						nlen--;
nlen             3481 ext/standard/string.c 	if (nlen != 0) {
nlen             3485 ext/standard/string.c 	*len = nlen;
nlen              506 main/php_variables.c 	unsigned long nlen; /* ptrdiff_t is not portable */
nlen              513 main/php_variables.c 		nlen = p - *env;
nlen              514 main/php_variables.c 		if (nlen >= alloc_size) {
nlen              515 main/php_variables.c 			alloc_size = nlen + 64;
nlen              518 main/php_variables.c 		memcpy(t, *env, nlen);
nlen              519 main/php_variables.c 		t[nlen] = '\0';
nlen              244 sapi/litespeed/lsapi_main.c 	unsigned long nlen; /* ptrdiff_t is not portable */
nlen              291 sapi/litespeed/lsapi_main.c 		nlen = p - *env;
nlen              292 sapi/litespeed/lsapi_main.c 		if (nlen >= alloc_size) {
nlen              293 sapi/litespeed/lsapi_main.c 			alloc_size = nlen + 64;
nlen              296 sapi/litespeed/lsapi_main.c 		memcpy(t, *env, nlen);
nlen              297 sapi/litespeed/lsapi_main.c 		t[nlen] = '\0';
nlen              298 sapi/litespeed/lsapi_main.c 		add_variable(t, nlen, p + 1, strlen( p + 1 ), array_ptr TSRMLS_CC);