nlen             6314 ext/pcre/pcrelib/pcre_compile.c               int nlen = (int)(code - bracode);
nlen             6317 ext/pcre/pcrelib/pcre_compile.c               memmove(bracode + 1 + LINK_SIZE, bracode, IN_UCHARS(nlen));
nlen             6319 ext/pcre/pcrelib/pcre_compile.c               nlen += 1 + LINK_SIZE;
nlen             6322 ext/pcre/pcrelib/pcre_compile.c               PUTINC(code, 0, nlen);
nlen             6323 ext/pcre/pcrelib/pcre_compile.c               PUT(bracode, 1, nlen);
nlen              213 ext/pdo/pdo.c  	int nlen;
nlen              258 ext/pdo/pdo.c  		nlen = valstart - optstart - 1;
nlen              260 ext/pdo/pdo.c  			if (0 == strncmp(data_source + optstart, parsed[j].optname, nlen) && parsed[j].optname[nlen] == '\0') {
nlen              143 ext/reflection/php_reflection.c 		register size_t nlen = (ZSTR_LEN(str->buf) + 1 + len + (1024 - 1)) & ~(1024 - 1);
nlen              144 ext/reflection/php_reflection.c 		if (str->alloced < nlen) {
nlen              146 ext/reflection/php_reflection.c 			str->alloced = nlen;
nlen              160 ext/reflection/php_reflection.c 	register size_t nlen = (ZSTR_LEN(str->buf) + 1 + len + (1024 - 1)) & ~(1024 - 1);
nlen              161 ext/reflection/php_reflection.c 	if (str->alloced < nlen) {
nlen              163 ext/reflection/php_reflection.c 		str->alloced = nlen;
nlen              111 ext/standard/php_smart_string.h #define smart_string_appendl_ex(dest, src, nlen, what) do {			\
nlen              115 ext/standard/php_smart_string.h 	smart_string_alloc4(__dest, (nlen), (what), __nl);					\
nlen              116 ext/standard/php_smart_string.h 	memcpy(__dest->c + __dest->len, (src), (nlen));					\
nlen              137 ext/standard/php_smart_string.h #define smart_string_setl(dest, src, nlen) do {						\
nlen              138 ext/standard/php_smart_string.h 	(dest)->len = (nlen);											\
nlen              139 ext/standard/php_smart_string.h 	(dest)->a = (nlen) + 1;											\
nlen             3767 ext/standard/string.c 	size_t  nlen = ZSTR_LEN(str), i;
nlen             3774 ext/standard/string.c 				case 'n':  *target++='\n'; nlen--; break;
nlen             3775 ext/standard/string.c 				case 'r':  *target++='\r'; nlen--; break;
nlen             3776 ext/standard/string.c 				case 'a':  *target++='\a'; nlen--; break;
nlen             3777 ext/standard/string.c 				case 't':  *target++='\t'; nlen--; break;
nlen             3778 ext/standard/string.c 				case 'v':  *target++='\v'; nlen--; break;
nlen             3779 ext/standard/string.c 				case 'b':  *target++='\b'; nlen--; break;
nlen             3780 ext/standard/string.c 				case 'f':  *target++='\f'; nlen--; break;
nlen             3781 ext/standard/string.c 				case '\\': *target++='\\'; nlen--; break;
nlen             3788 ext/standard/string.c 							nlen-=3;
nlen             3791 ext/standard/string.c 							nlen-=2;
nlen             3805 ext/standard/string.c 						nlen-=i;
nlen             3809 ext/standard/string.c 						nlen--;
nlen             3817 ext/standard/string.c 	if (nlen != 0) {
nlen             3821 ext/standard/string.c 	ZSTR_LEN(str) = nlen;
nlen              498 main/php_variables.c 	unsigned long nlen; /* ptrdiff_t is not portable */
nlen              505 main/php_variables.c 		nlen = p - *env;
nlen              506 main/php_variables.c 		if (nlen >= alloc_size) {
nlen              507 main/php_variables.c 			alloc_size = nlen + 64;
nlen              510 main/php_variables.c 		memcpy(t, *env, nlen);
nlen              511 main/php_variables.c 		t[nlen] = '\0';
nlen              245 sapi/litespeed/lsapi_main.c 	unsigned long nlen; /* ptrdiff_t is not portable */
nlen              292 sapi/litespeed/lsapi_main.c 		nlen = p - *env;
nlen              293 sapi/litespeed/lsapi_main.c 		if (nlen >= alloc_size) {
nlen              294 sapi/litespeed/lsapi_main.c 			alloc_size = nlen + 64;
nlen              297 sapi/litespeed/lsapi_main.c 		memcpy(t, *env, nlen);
nlen              298 sapi/litespeed/lsapi_main.c 		t[nlen] = '\0';
nlen              299 sapi/litespeed/lsapi_main.c 		add_variable(t, nlen, p + 1, strlen( p + 1 ), array_ptr);