input             671 ext/filter/filter.c static void php_filter_array_handler(zval *input, zval *op, zval *return_value, zend_bool add_empty) /* {{{ */
input             678 ext/filter/filter.c 		ZVAL_DUP(return_value, input);
input             682 ext/filter/filter.c 		ZVAL_DUP(return_value, input);
input             698 ext/filter/filter.c 			if ((tmp = zend_hash_find(Z_ARRVAL_P(input), arg_key)) == NULL) {
input             723 ext/filter/filter.c 	zval *input = NULL;
input             734 ext/filter/filter.c 	input = php_filter_get_storage(fetch_from);
input             736 ext/filter/filter.c 	if (!input || !HASH_OF(input) || (tmp = zend_hash_find(HASH_OF(input), var)) == NULL) {
input             859 ext/filter/logical_filters.c 	char *input = Z_STRVAL_P(value);
input             882 ext/filter/logical_filters.c 	} else if (17 == input_len && input[2] == '-') {
input             887 ext/filter/logical_filters.c 	} else if (17 == input_len && input[2] == ':') {
input             907 ext/filter/logical_filters.c 		if (i < tokens - 1 && input[offset + length] != separator) {
input             911 ext/filter/logical_filters.c 		if (php_filter_parse_hex(input + offset, length, &ret) < 0) {
input            3010 ext/gd/gd.c    	double input, output;
input            3012 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rdd", &IM, &input, &output) == FAILURE) {
input            3028 ext/gd/gd.c    						(int) ((pow((pow((gdTrueColorGetRed(c)   / 255.0), input)), 1.0 / output) * 255) + .5),
input            3029 ext/gd/gd.c    						(int) ((pow((pow((gdTrueColorGetGreen(c) / 255.0), input)), 1.0 / output) * 255) + .5),
input            3030 ext/gd/gd.c    						(int) ((pow((pow((gdTrueColorGetBlue(c)  / 255.0), input)), 1.0 / output) * 255) + .5),
input            3040 ext/gd/gd.c    		im->red[i]   = (int)((pow((pow((im->red[i]   / 255.0), input)), 1.0 / output) * 255) + .5);
input            3041 ext/gd/gd.c    		im->green[i] = (int)((pow((pow((im->green[i] / 255.0), input)), 1.0 / output) * 255) + .5);
input            3042 ext/gd/gd.c    		im->blue[i]  = (int)((pow((pow((im->blue[i]  / 255.0), input)), 1.0 / output) * 255) + .5);
input             603 ext/gd/libgd/gdkanji.c   unsigned char input[BUFSIZ];
input             609 ext/gd/libgd/gdkanji.c     input[i++] = c;
input             610 ext/gd/libgd/gdkanji.c   input[i] = '\0';
input             612 ext/gd/libgd/gdkanji.c   printf ("input : %d bytes\n", strlen ((const char *) input));
input             613 ext/gd/libgd/gdkanji.c   printf ("output: %d bytes\n", strwidth (input));
input             616 ext/gd/libgd/gdkanji.c   any2eucjp (output, input, BUFSIZ);
input              30 ext/hash/hash_adler32.c PHP_HASH_API void PHP_ADLER32Update(PHP_ADLER32_CTX *context, const unsigned char *input, size_t len)
input              37 ext/hash/hash_adler32.c 		s[0] += input[i];
input              31 ext/hash/hash_crc32.c PHP_HASH_API void PHP_CRC32Update(PHP_CRC32_CTX *context, const unsigned char *input, size_t len)
input              36 ext/hash/hash_crc32.c 		context->state = (context->state << 8) ^ crc32_table[(context->state >> 24) ^ (input[i] & 0xff)];
input              40 ext/hash/hash_crc32.c PHP_HASH_API void PHP_CRC32BUpdate(PHP_CRC32_CTX *context, const unsigned char *input, size_t len)
input              45 ext/hash/hash_crc32.c 		context->state = (context->state >> 8) ^ crc32b_table[(context->state ^ input[i]) & 0xff];
input              76 ext/hash/hash_fnv.c PHP_HASH_API void PHP_FNV132Update(PHP_FNV132_CTX *context, const unsigned char *input,
input              79 ext/hash/hash_fnv.c 	context->state = fnv_32_buf((void *)input, inputLen, context->state, 0);
input              82 ext/hash/hash_fnv.c PHP_HASH_API void PHP_FNV1a32Update(PHP_FNV132_CTX *context, const unsigned char *input,
input              85 ext/hash/hash_fnv.c 	context->state = fnv_32_buf((void *)input, inputLen, context->state, 1);
input             111 ext/hash/hash_fnv.c PHP_HASH_API void PHP_FNV164Update(PHP_FNV164_CTX *context, const unsigned char *input,
input             114 ext/hash/hash_fnv.c 	context->state = fnv_64_buf((void *)input, inputLen, context->state, 0);
input             117 ext/hash/hash_fnv.c PHP_HASH_API void PHP_FNV1a64Update(PHP_FNV164_CTX *context, const unsigned char *input,
input             120 ext/hash/hash_fnv.c 	context->state = fnv_64_buf((void *)input, inputLen, context->state, 1);
input             227 ext/hash/hash_gost.c static inline void GostTransform(PHP_GOST_CTX *context, const unsigned char input[32])
input             233 ext/hash/hash_gost.c 		data[i] =	((php_hash_uint32) input[j]) | (((php_hash_uint32) input[j + 1]) << 8) |
input             234 ext/hash/hash_gost.c 					(((php_hash_uint32) input[j + 2]) << 16) | (((php_hash_uint32) input[j + 3]) << 24);
input             257 ext/hash/hash_gost.c PHP_HASH_API void PHP_GOSTUpdate(PHP_GOST_CTX *context, const unsigned char *input, size_t len)
input             268 ext/hash/hash_gost.c 		memcpy(&context->buffer[context->length], input, len);
input             275 ext/hash/hash_gost.c 			memcpy(&context->buffer[context->length], input, i);
input             280 ext/hash/hash_gost.c 			GostTransform(context, input + i);
input             283 ext/hash/hash_gost.c 		memcpy(context->buffer, input + i, r);
input             101 ext/hash/hash_haval.c static void Encode(unsigned char *output, php_hash_uint32 *input, unsigned int len)
input             106 ext/hash/hash_haval.c 		output[j] = (unsigned char) (input[i] & 0xff);
input             107 ext/hash/hash_haval.c 		output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff);
input             108 ext/hash/hash_haval.c 		output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff);
input             109 ext/hash/hash_haval.c 		output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff);
input             118 ext/hash/hash_haval.c static void Decode(php_hash_uint32 *output, const unsigned char *input, unsigned int len)
input             123 ext/hash/hash_haval.c 		output[i] = ((php_hash_uint32) input[j]) | (((php_hash_uint32) input[j + 1]) << 8) |
input             124 ext/hash/hash_haval.c 			(((php_hash_uint32) input[j + 2]) << 16) | (((php_hash_uint32) input[j + 3]) << 24);
input             285 ext/hash/hash_haval.c PHP_HASH_API void PHP_HAVALUpdate(PHP_HAVAL_CTX *context, const unsigned char *input, unsigned int inputLen)
input             302 ext/hash/hash_haval.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             306 ext/hash/hash_haval.c 			context->Transform(context->state, &input[i]);
input             315 ext/hash/hash_haval.c 	memcpy((unsigned char*) &context->buffer[index], (unsigned char*) &input[i], inputLen - i);
input              43 ext/hash/hash_joaat.c PHP_HASH_API void PHP_JOAATUpdate(PHP_JOAAT_CTX *context, const unsigned char *input, unsigned int inputLen)
input              45 ext/hash/hash_joaat.c 	context->state = joaat_buf((void *)input, inputLen, context->state);
input              77 ext/hash/hash_joaat.c     unsigned char *input = (unsigned char *)buf;
input              80 ext/hash/hash_joaat.c         hval += input[i];
input              67 ext/hash/hash_md.c static void Encode(unsigned char *output, php_hash_uint32 *input, unsigned int len)
input              72 ext/hash/hash_md.c 		output[j] = (unsigned char) (input[i] & 0xff);
input              73 ext/hash/hash_md.c 		output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff);
input              74 ext/hash/hash_md.c 		output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff);
input              75 ext/hash/hash_md.c 		output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff);
input              84 ext/hash/hash_md.c static void Decode(php_hash_uint32 *output, const unsigned char *input, unsigned int len)
input              89 ext/hash/hash_md.c 		output[i] = ((php_hash_uint32) input[j]) | (((php_hash_uint32) input[j + 1]) << 8) |
input              90 ext/hash/hash_md.c 			(((php_hash_uint32) input[j + 2]) << 16) | (((php_hash_uint32) input[j + 3]) << 24);
input             284 ext/hash/hash_md.c PHP_HASH_API void PHP_MD5Update(PHP_MD5_CTX * context, const unsigned char *input,
input             304 ext/hash/hash_md.c 			((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             308 ext/hash/hash_md.c 			MD5Transform(context->state, &input[i]);
input             316 ext/hash/hash_md.c 		((unsigned char*) & context->buffer[index], (unsigned char*) & input[i],
input             544 ext/hash/hash_md.c PHP_HASH_API void PHP_MD4Update(PHP_MD4_CTX * context, const unsigned char *input, unsigned int inputLen)
input             562 ext/hash/hash_md.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             566 ext/hash/hash_md.c 			MD4Transform(context->state, &input[i]);
input             575 ext/hash/hash_md.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
input             190 ext/hash/hash_ripemd.c static void RIPEMDDecode(php_hash_uint32 *output, const unsigned char *input, unsigned int len)
input             195 ext/hash/hash_ripemd.c 		output[i] = ((php_hash_uint32) input[j + 0]) | (((php_hash_uint32) input[j + 1]) << 8) |
input             196 ext/hash/hash_ripemd.c 			(((php_hash_uint32) input[j + 2]) << 16) | (((php_hash_uint32) input[j + 3]) << 24);
input             256 ext/hash/hash_ripemd.c PHP_HASH_API void PHP_RIPEMD128Update(PHP_RIPEMD128_CTX * context, const unsigned char *input, unsigned int inputLen)
input             274 ext/hash/hash_ripemd.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             278 ext/hash/hash_ripemd.c 			RIPEMD128Transform(context->state, &input[i]);
input             287 ext/hash/hash_ripemd.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
input             354 ext/hash/hash_ripemd.c PHP_HASH_API void PHP_RIPEMD256Update(PHP_RIPEMD256_CTX * context, const unsigned char *input, unsigned int inputLen)
input             372 ext/hash/hash_ripemd.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             376 ext/hash/hash_ripemd.c 			RIPEMD256Transform(context->state, &input[i]);
input             385 ext/hash/hash_ripemd.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
input             453 ext/hash/hash_ripemd.c PHP_HASH_API void PHP_RIPEMD160Update(PHP_RIPEMD160_CTX * context, const unsigned char *input, unsigned int inputLen)
input             471 ext/hash/hash_ripemd.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             475 ext/hash/hash_ripemd.c 			RIPEMD160Transform(context->state, &input[i]);
input             484 ext/hash/hash_ripemd.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
input             561 ext/hash/hash_ripemd.c PHP_HASH_API void PHP_RIPEMD320Update(PHP_RIPEMD320_CTX * context, const unsigned char *input, unsigned int inputLen)
input             579 ext/hash/hash_ripemd.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             583 ext/hash/hash_ripemd.c 			RIPEMD320Transform(context->state, &input[i]);
input             592 ext/hash/hash_ripemd.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
input             607 ext/hash/hash_ripemd.c static void RIPEMDEncode(unsigned char *output, php_hash_uint32 *input, unsigned int len)
input             612 ext/hash/hash_ripemd.c 		output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff);
input             613 ext/hash/hash_ripemd.c 		output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff);
input             614 ext/hash/hash_ripemd.c 		output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff);
input             615 ext/hash/hash_ripemd.c 		output[j + 0] = (unsigned char) (input[i] & 0xff);
input              41 ext/hash/hash_sha.c static void SHAEncode32(unsigned char *output, php_hash_uint32 *input, unsigned int len)
input              46 ext/hash/hash_sha.c 		output[j] = (unsigned char) ((input[i] >> 24) & 0xff);
input              47 ext/hash/hash_sha.c 		output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff);
input              48 ext/hash/hash_sha.c 		output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff);
input              49 ext/hash/hash_sha.c 		output[j + 3] = (unsigned char) (input[i] & 0xff);
input              59 ext/hash/hash_sha.c static void SHADecode32(php_hash_uint32 *output, const unsigned char *input, unsigned int len)
input              64 ext/hash/hash_sha.c 		output[i] = ((php_hash_uint32) input[j + 3]) | (((php_hash_uint32) input[j + 2]) << 8) |
input              65 ext/hash/hash_sha.c 			(((php_hash_uint32) input[j + 1]) << 16) | (((php_hash_uint32) input[j]) << 24);
input             333 ext/hash/hash_sha.c PHP_HASH_API void PHP_SHA1Update(PHP_SHA1_CTX * context, const unsigned char *input,
input             353 ext/hash/hash_sha.c 			((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             357 ext/hash/hash_sha.c 			SHA1Transform(context->state, &input[i]);
input             365 ext/hash/hash_sha.c 		((unsigned char*) & context->buffer[index], (unsigned char*) & input[i],
input             542 ext/hash/hash_sha.c PHP_HASH_API void PHP_SHA224Update(PHP_SHA224_CTX * context, const unsigned char *input, unsigned int inputLen)
input             560 ext/hash/hash_sha.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             564 ext/hash/hash_sha.c 			SHA256Transform(context->state, &input[i]);
input             573 ext/hash/hash_sha.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
input             619 ext/hash/hash_sha.c PHP_HASH_API void PHP_SHA256Update(PHP_SHA256_CTX * context, const unsigned char *input, unsigned int inputLen)
input             637 ext/hash/hash_sha.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             641 ext/hash/hash_sha.c 			SHA256Transform(context->state, &input[i]);
input             650 ext/hash/hash_sha.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
input             732 ext/hash/hash_sha.c static void SHAEncode64(unsigned char *output, php_hash_uint64 *input, unsigned int len)
input             737 ext/hash/hash_sha.c 		output[j] = (unsigned char) ((input[i] >> 56) & 0xff);
input             738 ext/hash/hash_sha.c 		output[j + 1] = (unsigned char) ((input[i] >> 48) & 0xff);
input             739 ext/hash/hash_sha.c 		output[j + 2] = (unsigned char) ((input[i] >> 40) & 0xff);
input             740 ext/hash/hash_sha.c 		output[j + 3] = (unsigned char) ((input[i] >> 32) & 0xff);
input             741 ext/hash/hash_sha.c 		output[j + 4] = (unsigned char) ((input[i] >> 24) & 0xff);
input             742 ext/hash/hash_sha.c 		output[j + 5] = (unsigned char) ((input[i] >> 16) & 0xff);
input             743 ext/hash/hash_sha.c 		output[j + 6] = (unsigned char) ((input[i] >> 8) & 0xff);
input             744 ext/hash/hash_sha.c 		output[j + 7] = (unsigned char) (input[i] & 0xff);
input             754 ext/hash/hash_sha.c static void SHADecode64(php_hash_uint64 *output, const unsigned char *input, unsigned int len)
input             760 ext/hash/hash_sha.c 			((php_hash_uint64) input[j + 7]) | (((php_hash_uint64) input[j + 6]) << 8) |
input             761 ext/hash/hash_sha.c 			(((php_hash_uint64) input[j + 5]) << 16) | (((php_hash_uint64) input[j + 4]) << 24) |
input             762 ext/hash/hash_sha.c 			(((php_hash_uint64) input[j + 3]) << 32) | (((php_hash_uint64) input[j + 2]) << 40) |
input             763 ext/hash/hash_sha.c 			(((php_hash_uint64) input[j + 1]) << 48) | (((php_hash_uint64) input[j]) << 56);
input             833 ext/hash/hash_sha.c PHP_HASH_API void PHP_SHA384Update(PHP_SHA384_CTX * context, const unsigned char *input, unsigned int inputLen)
input             851 ext/hash/hash_sha.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             855 ext/hash/hash_sha.c 			SHA512Transform(context->state, &input[i]);
input             864 ext/hash/hash_sha.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
input             947 ext/hash/hash_sha.c PHP_HASH_API void PHP_SHA512Update(PHP_SHA512_CTX * context, const unsigned char *input, unsigned int inputLen)
input             965 ext/hash/hash_sha.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             969 ext/hash/hash_sha.c 			SHA512Transform(context->state, &input[i]);
input             978 ext/hash/hash_sha.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
input              44 ext/hash/hash_snefru.c static inline void Snefru(php_hash_uint32 input[16])
input              51 ext/hash/hash_snefru.c 	B00 = input[0];
input              52 ext/hash/hash_snefru.c 	B01 = input[1];
input              53 ext/hash/hash_snefru.c 	B02 = input[2];
input              54 ext/hash/hash_snefru.c 	B03 = input[3];
input              55 ext/hash/hash_snefru.c 	B04 = input[4];
input              56 ext/hash/hash_snefru.c 	B05 = input[5];
input              57 ext/hash/hash_snefru.c 	B06 = input[6];
input              58 ext/hash/hash_snefru.c 	B07 = input[7];
input              59 ext/hash/hash_snefru.c 	B08 = input[8];
input              60 ext/hash/hash_snefru.c 	B09 = input[9];
input              61 ext/hash/hash_snefru.c 	B10 = input[10];
input              62 ext/hash/hash_snefru.c 	B11 = input[11];
input              63 ext/hash/hash_snefru.c 	B12 = input[12];
input              64 ext/hash/hash_snefru.c 	B13 = input[13];
input              65 ext/hash/hash_snefru.c 	B14 = input[14];
input              66 ext/hash/hash_snefru.c 	B15 = input[15];
input             110 ext/hash/hash_snefru.c 	input[0] ^= B15;
input             111 ext/hash/hash_snefru.c 	input[1] ^= B14;
input             112 ext/hash/hash_snefru.c 	input[2] ^= B13;
input             113 ext/hash/hash_snefru.c 	input[3] ^= B12;
input             114 ext/hash/hash_snefru.c 	input[4] ^= B11;
input             115 ext/hash/hash_snefru.c 	input[5] ^= B10;
input             116 ext/hash/hash_snefru.c 	input[6] ^= B09;
input             117 ext/hash/hash_snefru.c 	input[7] ^= B08;
input             119 ext/hash/hash_snefru.c 	ph(input);
input             123 ext/hash/hash_snefru.c static inline void SnefruTransform(PHP_SNEFRU_CTX *context, const unsigned char input[32])
input             128 ext/hash/hash_snefru.c 		context->state[8+j] =	((input[i] & 0xff) << 24) | ((input[i+1] & 0xff) << 16) |
input             129 ext/hash/hash_snefru.c 								((input[i+2] & 0xff) << 8) | (input[i+3] & 0xff);
input             142 ext/hash/hash_snefru.c PHP_HASH_API void PHP_SNEFRUUpdate(PHP_SNEFRU_CTX *context, const unsigned char *input, size_t len)
input             153 ext/hash/hash_snefru.c 		memcpy(&context->buffer[context->length], input, len);
input             160 ext/hash/hash_snefru.c 			memcpy(&context->buffer[context->length], input, i);
input             165 ext/hash/hash_snefru.c 			SnefruTransform(context, input + i);
input             168 ext/hash/hash_snefru.c 		memcpy(context->buffer, input + i, r);
input             198 ext/hash/hash_tiger.c PHP_HASH_API void PHP_TIGERUpdate(PHP_TIGER_CTX *context, const unsigned char *input, size_t len)
input             201 ext/hash/hash_tiger.c 		memcpy(&context->buffer[context->length], input, len);
input             208 ext/hash/hash_tiger.c 			memcpy(&context->buffer[context->length], input, i);
input             215 ext/hash/hash_tiger.c 			memcpy(context->buffer, &input[i], 64);
input             220 ext/hash/hash_tiger.c 		memcpy(context->buffer, &input[i], r);
input             275 ext/hash/hash_whirlpool.c PHP_HASH_API void PHP_WHIRLPOOLUpdate(PHP_WHIRLPOOL_CTX *context, const unsigned char *input, size_t len)
input             281 ext/hash/hash_whirlpool.c     const unsigned char *source = input;
input              31 ext/hash/php_hash_adler32.h PHP_HASH_API void PHP_ADLER32Update(PHP_ADLER32_CTX *context, const unsigned char *input, size_t len);
input              31 ext/hash/php_hash_crc32.h PHP_HASH_API void PHP_CRC32Update(PHP_CRC32_CTX *context, const unsigned char *input, size_t len);
input              32 ext/hash/php_hash_crc32.h PHP_HASH_API void PHP_CRC32BUpdate(PHP_CRC32_CTX *context, const unsigned char *input, size_t len);
input              58 ext/hash/php_hash_fnv.h PHP_HASH_API void PHP_FNV132Update(PHP_FNV132_CTX *context, const unsigned char *input, unsigned int inputLen);
input              59 ext/hash/php_hash_fnv.h PHP_HASH_API void PHP_FNV1a32Update(PHP_FNV132_CTX *context, const unsigned char *input, unsigned int inputLen);
input              63 ext/hash/php_hash_fnv.h PHP_HASH_API void PHP_FNV164Update(PHP_FNV164_CTX *context, const unsigned char *input, unsigned int inputLen);
input              64 ext/hash/php_hash_fnv.h PHP_HASH_API void PHP_FNV1a64Update(PHP_FNV164_CTX *context, const unsigned char *input, unsigned int inputLen);
input              29 ext/hash/php_hash_joaat.h PHP_HASH_API void PHP_JOAATUpdate(PHP_JOAAT_CTX *context, const unsigned char *input, unsigned int inputLen);
input              35 ext/hash/php_hash_tiger.h PHP_HASH_API void PHP_TIGERUpdate(PHP_TIGER_CTX *context, const unsigned char *input, size_t len);
input              77 ext/intl/breakiterator/codepointiterator_internal.h 		virtual CodePointBreakIterator &refreshInputText(UText *input, UErrorCode &status);
input              35 ext/intl/normalizer/normalizer_normalize.c 	char*			input = NULL;
input              56 ext/intl/normalizer/normalizer_normalize.c 				&input, &input_len, &form ) == FAILURE )
input              89 ext/intl/normalizer/normalizer_normalize.c 	intl_convert_utf8_to_utf16(&uinput, &uinput_len, input, input_len, &status );
input             172 ext/intl/normalizer/normalizer_normalize.c 	char*	 	input = NULL;
input             187 ext/intl/normalizer/normalizer_normalize.c 				&input, &input_len, &form) == FAILURE )
input             215 ext/intl/normalizer/normalizer_normalize.c 	intl_convert_utf8_to_utf16(&uinput, &uinput_len, input, input_len, &status );
input             205 ext/intl/php_intl.c 	ZEND_ARG_INFO(0, input)
input             518 ext/libxml/libxml.c 	if (parser != NULL && parser->input != NULL) {
input             519 ext/libxml/libxml.c 		if (parser->input->filename) {
input             520 ext/libxml/libxml.c 			php_error_docref(NULL, level, "%s in %s, line: %d", msg, parser->input->filename, parser->input->line);
input             522 ext/libxml/libxml.c 			php_error_docref(NULL, level, "%s in Entity, line: %d", msg, parser->input->line);
input              18 ext/mbstring/libmbfl/tests/sample.c 	unsigned char input[] = "日本語文字列"; /* EUC-JP kanji string */
input              29 ext/mbstring/libmbfl/tests/sample.c 	string.val = (unsigned char *)input;
input              30 ext/mbstring/libmbfl/tests/sample.c 	string.len = strlen(input);
input             129 ext/mbstring/mb_gpc.c 			separator = (char *) estrdup(PG(arg_separator).input);
input            2088 ext/mbstring/mbstring.c 	info.separator              = PG(arg_separator).input;
input            3111 ext/mbstring/mbstring.c MBSTRING_API char * php_mb_convert_encoding(const char *input, size_t length, const char *_to_encoding, const char *_from_encodings, size_t *output_len)
input            3123 ext/mbstring/mbstring.c 	if (!input) {
input            3143 ext/mbstring/mbstring.c 	string.val = (unsigned char *)input;
input             139 ext/mbstring/mbstring.h MBSTRING_API char * php_mb_convert_encoding(const char *input, size_t length,
input            1987 ext/pcre/php_pcre.c 	zval				*input;			/* Input array */
input            1994 ext/pcre/php_pcre.c 							  &input, &flags) == FAILURE) {
input            2000 ext/pcre/php_pcre.c 		Z_PARAM_ARRAY(input)
input            2012 ext/pcre/php_pcre.c 	php_pcre_grep_impl(pce, input, return_value, flags);
input            2017 ext/pcre/php_pcre.c PHPAPI void  php_pcre_grep_impl(pcre_cache_entry *pce, zval *input, zval *return_value, zend_long flags) /* {{{ */
input            2057 ext/pcre/php_pcre.c 	ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(input), num_key, string_key, entry) {
input            2174 ext/pcre/php_pcre.c     ZEND_ARG_INFO(0, input) /* array */
input              71 ext/pcre/php_pcre.h PHPAPI void  php_pcre_grep_impl(   pcre_cache_entry *pce, zval *input, zval *return_value,
input              77 ext/recode/recode.c 	ZEND_ARG_INFO(0, input)
input             191 ext/recode/recode.c 	zval *input, *output;
input             195 ext/recode/recode.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "srr", &req, &req_len, &input, &output) == FAILURE) {
input             199 ext/recode/recode.c 	php_stream_from_zval(instream, input);
input             898 ext/soap/php_sdl.c 					xmlNodePtr input, output, fault, portTypeOperation, trav3;
input             975 ext/soap/php_sdl.c 					input = get_node_ex(portTypeOperation->children, "input", WSDL_NAMESPACE);
input             976 ext/soap/php_sdl.c 					if (input != NULL) {
input             979 ext/soap/php_sdl.c 						message = get_attribute(input->properties, "message");
input             996 ext/soap/php_sdl.c 							input = get_node_ex(operation->children, "input", WSDL_NAMESPACE);
input             997 ext/soap/php_sdl.c 							if (input != NULL) {
input             999 ext/soap/php_sdl.c 								wsdl_soap_binding_body(&ctx, input, wsdl_soap_namespace, &soapFunctionBinding->input, function->requestParameters);
input            1710 ext/soap/php_sdl.c 				sdl_deserialize_soap_body(&binding->input, encoders, types, &in);
input            2306 ext/soap/php_sdl.c 							sdl_serialize_soap_body(&binding->input, &tmp_encoders, &tmp_types, out);
input            2902 ext/soap/php_sdl.c 			make_persistent_sdl_soap_body(&soap_binding->input, ptr_map);
input            3516 ext/soap/php_sdl.c 		delete_sdl_soap_binding_function_body(soapFunction->input);
input            3555 ext/soap/php_sdl.c 		delete_sdl_soap_binding_function_body_persistent(soapFunction->input);
input             123 ext/soap/php_sdl.h 	sdlSoapBindingFunctionBody  input;
input            2732 ext/soap/soap.c  					request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_version, soap_headers);
input            3659 ext/soap/soap.c 					if (fnb->input.headers) {
input            3668 ext/soap/soap.c 						if ((hdr = zend_hash_find_ptr(fnb->input.headers, key.s)) != NULL) {
input            4248 ext/soap/soap.c 		hdrs = fnb->input.headers;
input            4252 ext/soap/soap.c 		use = fnb->input.use;
input            4254 ext/soap/soap.c 			ns = encode_add_ns(body, fnb->input.ns);
input            2876 ext/standard/array.c 	zval	 *input,		/* Input array */
input            2888 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "al|zb", &input, &offset, &z_length, &preserve_keys) == FAILURE) {
input            2893 ext/standard/array.c 		Z_PARAM_ARRAY(input)
input            2902 ext/standard/array.c 	num_in = zend_hash_num_elements(Z_ARRVAL_P(input));
input            2936 ext/standard/array.c 	if (!preserve_keys && (Z_ARRVAL_P(input)->u.flags & HASH_FLAG_PACKED)) {
input            2939 ext/standard/array.c 			ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(input), entry) {
input            2952 ext/standard/array.c 		ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(input), num_key, string_key, entry) {
input            3304 ext/standard/array.c 	zval *input,				/* Input array */
input            3313 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a|zb", &input, &search_value, &strict) == FAILURE) {
input            3318 ext/standard/array.c 		Z_PARAM_ARRAY(input)
input            3330 ext/standard/array.c 			ZEND_HASH_FOREACH_KEY_VAL_IND(Z_ARRVAL_P(input), num_idx, str_idx, entry) {
input            3342 ext/standard/array.c 			ZEND_HASH_FOREACH_KEY_VAL_IND(Z_ARRVAL_P(input), num_idx, str_idx, entry) {
input            3354 ext/standard/array.c 		array_init_size(return_value, zend_hash_num_elements(Z_ARRVAL_P(input)));
input            3355 ext/standard/array.c 		if (!zend_hash_num_elements(Z_ARRVAL_P(input))) {
input            3361 ext/standard/array.c 			ZEND_HASH_FOREACH_KEY_VAL_IND(Z_ARRVAL_P(input), num_idx, str_idx, entry) {
input            3378 ext/standard/array.c 	zval	 *input,		/* Input array */
input            3382 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a", &input) == FAILURE) {
input            3387 ext/standard/array.c 		Z_PARAM_ARRAY(input)
input            3392 ext/standard/array.c 	array_init_size(return_value, zend_hash_num_elements(Z_ARRVAL_P(input)));
input            3394 ext/standard/array.c 	if (!zend_hash_num_elements(Z_ARRVAL_P(input))) {
input            3402 ext/standard/array.c 		ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(input), entry) {
input            3417 ext/standard/array.c 	zval	*input,		/* Input array */
input            3422 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a", &input) == FAILURE) {
input            3430 ext/standard/array.c 	myht = Z_ARRVAL_P(input);
input            3569 ext/standard/array.c 	zval	 *input,				/* Input array */
input            3575 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a|b", &input, &preserve_keys) == FAILURE) {
input            3580 ext/standard/array.c 	array_init_size(return_value, zend_hash_num_elements(Z_ARRVAL_P(input)));
input            3582 ext/standard/array.c 	ZEND_HASH_REVERSE_FOREACH_KEY_VAL(Z_ARRVAL_P(input), num_key, string_key, entry) {
input            3602 ext/standard/array.c 	zval  *input;		/* Input array */
input            3612 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "alz", &input, &pad_size, &pad_value) == FAILURE) {
input            3617 ext/standard/array.c 	input_size = zend_hash_num_elements(Z_ARRVAL_P(input));
input            3626 ext/standard/array.c 		ZVAL_COPY(return_value, input);
input            3642 ext/standard/array.c 	ZEND_HASH_FOREACH_STR_KEY_VAL_IND(Z_ARRVAL_P(input), key, value) {
input            4981 ext/standard/array.c 	zval *input;
input            4987 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a|l", &input, &num_req) == FAILURE) {
input            4991 ext/standard/array.c 	num_avail = zend_hash_num_elements(Z_ARRVAL_P(input));
input            5006 ext/standard/array.c 	ZEND_HASH_FOREACH_KEY(Z_ARRVAL_P(input), num_key, string_key) {
input            5040 ext/standard/array.c 	zval *input,
input            5044 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a", &input) == FAILURE) {
input            5050 ext/standard/array.c 	ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(input), entry) {
input            5065 ext/standard/array.c 	zval *input,
input            5070 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a", &input) == FAILURE) {
input            5075 ext/standard/array.c 	if (!zend_hash_num_elements(Z_ARRVAL_P(input))) {
input            5079 ext/standard/array.c 	ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(input), entry) {
input            5104 ext/standard/array.c 	zval *input;
input            5114 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "af|z", &input, &fci, &fci_cache, &initial) == FAILURE) {
input            5128 ext/standard/array.c 	htbl = Z_ARRVAL_P(input);
input            5463 ext/standard/array.c 	zval *input = NULL;
input            5467 ext/standard/array.c 	if (zend_parse_parameters(argc, "al|b", &input, &size, &preserve_keys) == FAILURE) {
input            5476 ext/standard/array.c 	num_in = zend_hash_num_elements(Z_ARRVAL_P(input));
input            5486 ext/standard/array.c 	ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(input), num_key, str_key, entry) {
input             308 ext/standard/basic_functions.c 	ZEND_ARG_INFO(1, input) /* ARRAY_INFO(1, arg, 0) */
input             314 ext/standard/basic_functions.c 	ZEND_ARG_INFO(1, input) /* ARRAY_INFO(1, arg, 0) */
input             435 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, input) /* ARRAY_INFO(0, arg, 0) */
input             450 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, input) /* ARRAY_INFO(0, arg, 0) */
input            1813 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, input)
input            2397 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, input)
input            2402 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, input)
input            2427 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, input)
input             888 ext/standard/crypt_blowfish.c 	const char *input, int size, char *output, int output_size)
input             909 ext/standard/crypt_blowfish.c 	BF_encode(&output[7], (const BF_word *)input, 16);
input              29 ext/standard/crypt_blowfish.h 	const char *input, int size, char *output, int output_size);
input             622 ext/standard/crypt_sha256.c 	const char *input;
input             664 ext/standard/crypt_sha256.c 	const char *input;
input             706 ext/standard/crypt_sha256.c 		sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx);
input             714 ext/standard/crypt_sha256.c 		for (i = 0; tests[cnt].input[i] != '\0'; ++i) {
input             715 ext/standard/crypt_sha256.c 			sha256_process_bytes(&tests[cnt].input[i], 1, &ctx);
input             740 ext/standard/crypt_sha256.c 		char *cp = php_sha256_crypt(tests2[cnt].input, tests2[cnt].salt);
input             667 ext/standard/crypt_sha512.c 	const char *input;
input             728 ext/standard/crypt_sha512.c 	const char *input;
input             774 ext/standard/crypt_sha512.c 		sha512_process_bytes (tests[cnt].input, strlen (tests[cnt].input), &ctx);
input             782 ext/standard/crypt_sha512.c 		for (i = 0; tests[cnt].input[i] != '\0'; ++i) {
input             783 ext/standard/crypt_sha512.c 			sha512_process_bytes (&tests[cnt].input[i], 1, &ctx);
input             807 ext/standard/crypt_sha512.c 		char *cp = php_sha512_crypt(tests2[cnt].input, tests2[cnt].salt);
input             273 ext/standard/cyr_convert.c 	char *input, *fr_cs, *to_cs;
input             277 ext/standard/cyr_convert.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sss", &input, &input_len, &fr_cs, &fr_cs_len, &to_cs, &to_cs_len) == FAILURE) {
input             281 ext/standard/cyr_convert.c 	str = zend_string_init(input, input_len, 0);
input            1175 ext/standard/file.c 	char *input;
input            1183 ext/standard/file.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs|l", &res, &input, &inputlen, &maxlen) == FAILURE) {
input            1189 ext/standard/file.c 		Z_PARAM_STRING(input, inputlen)
input            1209 ext/standard/file.c 	ret = php_stream_write(stream, input, num_bytes);
input            1410 ext/standard/image.c 	char *input;
input            1414 ext/standard/image.c 	if (zend_parse_parameters(argc, "s|z/", &input, &input_len, &info) == FAILURE) {
input            1424 ext/standard/image.c 		stream = php_stream_open_wrapper(input, "rb", STREAM_MUST_SEEK|REPORT_ERRORS|IGNORE_PATH, NULL);
input            1426 ext/standard/image.c 		stream = php_stream_memory_open(TEMP_STREAM_READONLY, input, input_len);
input             550 ext/standard/pack.c 	char *format, *input;
input             562 ext/standard/pack.c 	input = ZSTR_VAL(inputarg);
input             729 ext/standard/pack.c 						add_assoc_stringl(return_value, n, &input[inputpos], len);
input             746 ext/standard/pack.c 							if (input[inputpos + len] != padn
input             747 ext/standard/pack.c 								&& input[inputpos + len] != pads
input             748 ext/standard/pack.c 								&& input[inputpos + len] != padt
input             749 ext/standard/pack.c 								&& input[inputpos + len] != padc
input             750 ext/standard/pack.c 								&& input[inputpos + len] != padl
input             755 ext/standard/pack.c 						add_assoc_stringl(return_value, n, &input[inputpos], len + 1);
input             774 ext/standard/pack.c 							if (input[inputpos + s] == pad)
input             779 ext/standard/pack.c 						add_assoc_stringl(return_value, n, &input[inputpos], len);
input             804 ext/standard/pack.c 							char cc = (input[inputpos + ipos] >> nibbleshift) & 0xf;
input             829 ext/standard/pack.c 						int issigned = (type == 'c') ? (input[inputpos] & 0x80) : 0;
input             830 ext/standard/pack.c 						zend_long v = php_unpack(&input[inputpos], 1, issigned, byte_map);
input             844 ext/standard/pack.c 							issigned = input[inputpos + (machine_little_endian ? 1 : 0)] & 0x80;
input             851 ext/standard/pack.c 						v = php_unpack(&input[inputpos], 2, issigned, map);
input             862 ext/standard/pack.c 							issigned = input[inputpos + (machine_little_endian ? (sizeof(int) - 1) : 0)] & 0x80;
input             865 ext/standard/pack.c 						v = php_unpack(&input[inputpos], sizeof(int), issigned, int_map);
input             879 ext/standard/pack.c 							issigned = input[inputpos + (machine_little_endian ? 3 : 0)] & 0x80;
input             881 ext/standard/pack.c 							issigned = input[inputpos] & 0x80;
input             884 ext/standard/pack.c 							issigned = input[inputpos + 3] & 0x80;
input             892 ext/standard/pack.c 						v |= php_unpack(&input[inputpos], 4, issigned, map);
input             914 ext/standard/pack.c 							issigned = input[inputpos + (machine_little_endian ? 7 : 0)] & 0x80;
input             916 ext/standard/pack.c 							issigned = input[inputpos] & 0x80;
input             919 ext/standard/pack.c 							issigned = input[inputpos + 7] & 0x80;
input             923 ext/standard/pack.c 						v = php_unpack(&input[inputpos], 8, issigned, map);
input             939 ext/standard/pack.c 						memcpy(&v, &input[inputpos], sizeof(float));
input             947 ext/standard/pack.c 						memcpy(&v, &input[inputpos], sizeof(double));
input              80 ext/standard/php_fopen_wrapper.c 	php_stream_input_t *input = stream->abstract;
input              83 ext/standard/php_fopen_wrapper.c 	if (!SG(post_read) && SG(read_post_bytes) < (int64_t)(input->position + count)) {
input              88 ext/standard/php_fopen_wrapper.c 			php_stream_seek(input->body, 0, SEEK_END);
input              89 ext/standard/php_fopen_wrapper.c 			php_stream_write(input->body, buf, read_bytes);
input              93 ext/standard/php_fopen_wrapper.c 	php_stream_seek(input->body, input->position, SEEK_SET);
input              94 ext/standard/php_fopen_wrapper.c 	read = php_stream_read(input->body, buf, count);
input              99 ext/standard/php_fopen_wrapper.c 		input->position += read;
input             123 ext/standard/php_fopen_wrapper.c 	php_stream_input_t *input = stream->abstract;
input             125 ext/standard/php_fopen_wrapper.c 	if (input->body) {
input             126 ext/standard/php_fopen_wrapper.c 		int sought = php_stream_seek(input->body, offset, whence);
input             127 ext/standard/php_fopen_wrapper.c 		*newoffset = (input->body)->position;
input             224 ext/standard/php_fopen_wrapper.c 		php_stream_input_t *input;
input             233 ext/standard/php_fopen_wrapper.c 		input = ecalloc(1, sizeof(*input));
input             234 ext/standard/php_fopen_wrapper.c 		if ((input->body = SG(request_info).request_body)) {
input             235 ext/standard/php_fopen_wrapper.c 			php_stream_rewind(input->body);
input             237 ext/standard/php_fopen_wrapper.c 			input->body = php_stream_temp_create_ex(TEMP_STREAM_DEFAULT, SAPI_POST_BLOCK_SIZE, PG(upload_tmp_dir));
input             238 ext/standard/php_fopen_wrapper.c 			SG(request_info).request_body = input->body;
input             241 ext/standard/php_fopen_wrapper.c 		return php_stream_alloc(&php_stream_input_ops, input, 0, "rb");
input             178 ext/standard/sha1.c PHPAPI void PHP_SHA1Update(PHP_SHA1_CTX * context, const unsigned char *input,
input             198 ext/standard/sha1.c 			((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             202 ext/standard/sha1.c 			SHA1Transform(context->state, &input[i]);
input             210 ext/standard/sha1.c 		((unsigned char*) & context->buffer[index], (unsigned char*) & input[i],
input             367 ext/standard/sha1.c static void SHA1Encode(output, input, len)
input             369 ext/standard/sha1.c php_uint32 *input;
input             375 ext/standard/sha1.c 		output[j] = (unsigned char) ((input[i] >> 24) & 0xff);
input             376 ext/standard/sha1.c 		output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff);
input             377 ext/standard/sha1.c 		output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff);
input             378 ext/standard/sha1.c 		output[j + 3] = (unsigned char) (input[i] & 0xff);
input             387 ext/standard/sha1.c static void SHA1Decode(output, input, len)
input             389 ext/standard/sha1.c const unsigned char *input;
input             395 ext/standard/sha1.c 		output[i] = ((php_uint32) input[j + 3]) | (((php_uint32) input[j + 2]) << 8) |
input             396 ext/standard/sha1.c 			(((php_uint32) input[j + 1]) << 16) | (((php_uint32) input[j]) << 24);
input             750 ext/standard/string.c static inline int php_charmask(unsigned char *input, size_t len, char *mask)
input             757 ext/standard/string.c 	for (end = input+len; input < end; input++) {
input             758 ext/standard/string.c 		c=*input;
input             759 ext/standard/string.c 		if ((input+3 < end) && input[1] == '.' && input[2] == '.'
input             760 ext/standard/string.c 				&& input[3] >= c) {
input             761 ext/standard/string.c 			memset(mask+c, 1, input[3] - c + 1);
input             762 ext/standard/string.c 			input+=3;
input             763 ext/standard/string.c 		} else if ((input+1 < end) && input[0] == '.' && input[1] == '.') {
input             766 ext/standard/string.c 			if (end-len >= input) { /* there was no 'left' char */
input             771 ext/standard/string.c 			if (input+2 >= end) { /* there is no 'right' char */
input             776 ext/standard/string.c 			if (input[-1] > input[2]) { /* wrong order */
input            2994 ext/standard/string.c static void php_strtr_array(zval *return_value, zend_string *input, HashTable *pats)
input            2996 ext/standard/string.c 	char *str = ZSTR_VAL(input);
input            2997 ext/standard/string.c 	size_t slen = ZSTR_LEN(input);
input            3082 ext/standard/string.c 		RETURN_STR_COPY(input);
input            3118 ext/standard/string.c 		RETVAL_STR_COPY(input);
input            5063 ext/standard/string.c 	zend_string *input;
input            5072 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|l", &input, &mymode) == FAILURE) {
input            5081 ext/standard/string.c 	buf = (unsigned char *) ZSTR_VAL(input);
input            5084 ext/standard/string.c 	while (tmp < ZSTR_LEN(input)) {
input            5338 ext/standard/string.c 	zend_string *input;				/* Input string */
input            5349 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "Sl|sl", &input, &pad_length, &pad_str, &pad_str_len, &pad_type_val) == FAILURE) {
input            5355 ext/standard/string.c 	if (pad_length < 0  || (size_t)pad_length <= ZSTR_LEN(input)) {
input            5356 ext/standard/string.c 		RETURN_STRINGL(ZSTR_VAL(input), ZSTR_LEN(input));
input            5369 ext/standard/string.c 	num_pad_chars = pad_length - ZSTR_LEN(input);
input            5375 ext/standard/string.c 	result = zend_string_safe_alloc(ZSTR_LEN(input), 1, num_pad_chars, 0);
input            5401 ext/standard/string.c 	memcpy(ZSTR_VAL(result) + ZSTR_LEN(result), ZSTR_VAL(input), ZSTR_LEN(input));
input            5402 ext/standard/string.c 	ZSTR_LEN(result) += ZSTR_LEN(input);
input             284 ext/tidy/tidy.c 	ZEND_ARG_INFO(0, input)
input            1200 ext/tidy/tidy.c 	zend_string *input;
input            1204 ext/tidy/tidy.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|zs", &input, &options, &enc, &enc_len) == FAILURE) {
input            1208 ext/tidy/tidy.c 	if (ZEND_SIZE_T_UINT_OVFL(ZSTR_LEN(input))) {
input            1218 ext/tidy/tidy.c 	if (php_tidy_parse_string(obj, ZSTR_VAL(input), (uint)ZSTR_LEN(input), enc) == FAILURE) {
input            1655 ext/tidy/tidy.c 	zend_string *input;
input            1659 ext/tidy/tidy.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|zs", &input, &options, &enc, &enc_len) == FAILURE) {
input            1663 ext/tidy/tidy.c 	if (ZEND_SIZE_T_UINT_OVFL(ZSTR_LEN(input))) {
input            1672 ext/tidy/tidy.c 	if(php_tidy_parse_string(obj, ZSTR_VAL(input), (uint)ZSTR_LEN(input), enc) == SUCCESS) {
input             577 ext/xml/compat.c 		if (data_len >= 4 || (parser->parser->input->buf->buffer->use + data_len >= 4)) {
input             581 ext/xml/compat.c 			char_count = parser->parser->input->buf->buffer->use;
input             586 ext/xml/compat.c 			memcpy(start, parser->parser->input->buf->buffer->content, (size_t)char_count);
input             730 ext/xml/compat.c 	return parser->parser->input->line;
input             736 ext/xml/compat.c 	return parser->parser->input->col;
input             742 ext/xml/compat.c 	return parser->parser->input->consumed +
input             743 ext/xml/compat.c 			(parser->parser->input->cur - parser->parser->input->base);
input             751 ext/xml/compat.c 	return parser->parser->input->consumed +
input             752 ext/xml/compat.c 			(parser->parser->input->cur - parser->parser->input->base);
input             354 ext/xmlreader/php_xmlreader.c 		if (intern->input) {
input             355 ext/xmlreader/php_xmlreader.c 			xmlFreeParserInputBuffer(intern->input);
input             356 ext/xmlreader/php_xmlreader.c 			intern->input = NULL;
input            1095 ext/xmlreader/php_xmlreader.c 				intern->input = inputbfr;
input              48 ext/xmlreader/php_xmlreader.h 	xmlParserInputBufferPtr input;
input             292 ext/xmlrpc/libxmlrpc/system_methods.c static XMLRPC_VALUE xsm_system_multicall_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData);
input             293 ext/xmlrpc/libxmlrpc/system_methods.c static XMLRPC_VALUE xsm_system_get_capabilities_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData);
input             315 ext/xmlrpc/libxmlrpc/system_methods.c XMLRPC_VALUE xsm_system_multicall_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData) {
input             316 ext/xmlrpc/libxmlrpc/system_methods.c    XMLRPC_VALUE xArray = XMLRPC_VectorRewind(XMLRPC_RequestGetData(input));
input             348 ext/xmlrpc/libxmlrpc/system_methods.c XMLRPC_VALUE xsm_system_get_capabilities_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData) {
input             303 ext/xmlrpc/libxmlrpc/xmlrpc.h typedef XMLRPC_VALUE (*XMLRPC_Callback)(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData);
input              67 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c static XMLRPC_VALUE xi_system_describe_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData);
input              68 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c static XMLRPC_VALUE xi_system_list_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData);
input              69 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c static XMLRPC_VALUE xi_system_method_signature_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData);
input              70 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c static XMLRPC_VALUE xi_system_method_help_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData);
input             122 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c static XMLRPC_VALUE xi_system_describe_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData) {
input             123 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c    XMLRPC_VALUE xParams = XMLRPC_VectorRewind(XMLRPC_RequestGetData(input));
input             173 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c static XMLRPC_VALUE xi_system_list_methods_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData) {
input             190 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c static XMLRPC_VALUE xi_system_method_signature_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData) {
input             191 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c    const char* method = XMLRPC_GetValueString(XMLRPC_VectorRewind(XMLRPC_RequestGetData(input)));
input             249 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c static XMLRPC_VALUE xi_system_method_help_cb(XMLRPC_SERVER server, XMLRPC_REQUEST input, void* userData) {
input             250 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c    const char* method = XMLRPC_GetValueString(XMLRPC_VectorRewind(XMLRPC_RequestGetData(input)));
input             521 main/main.c    	STD_PHP_INI_ENTRY("arg_separator.input",	"&",		PHP_INI_SYSTEM|PHP_INI_PERDIR,	OnUpdateStringUnempty,	arg_separator.input,	php_core_globals,	core_globals)
input              53 main/php_globals.h 	char *input;
input             429 main/php_variables.c 			separator = (char *) estrdup(PG(arg_separator).input);
input            2274 sapi/cgi/cgi_main.c 					size_t slen = strlen(PG(arg_separator).input);
input            2290 sapi/cgi/cgi_main.c 							strlcat(s, PG(arg_separator).input, len);
input            1012 sapi/cli/php_cli.c 				char *input;
input            1021 sapi/cli/php_cli.c 				while (exit_status == SUCCESS && (input=php_stream_gets(s_in_process, NULL, 0)) != NULL) {
input            1022 sapi/cli/php_cli.c 					len = strlen(input);
input            1023 sapi/cli/php_cli.c 					while (len > 0 && len-- && (input[len]=='\n' || input[len]=='\r')) {
input            1024 sapi/cli/php_cli.c 						input[len] = '\0';
input            1026 sapi/cli/php_cli.c 					ZVAL_STRINGL(&argn, input, len + 1);
input            1045 sapi/cli/php_cli.c 					efree(input);
input             139 sapi/phpdbg/phpdbg.h int phpdbg_do_parse(phpdbg_param_t *stack, char *input);
input             814 sapi/phpdbg/phpdbg_cmd.c PHPDBG_API void phpdbg_destroy_input(char **input) /*{{{ */
input             816 sapi/phpdbg/phpdbg_cmd.c 	efree(*input);
input              33 sapi/phpdbg/phpdbg_lexer.c void phpdbg_init_lexer (phpdbg_param_t *stack, char *input) {
input              38 sapi/phpdbg/phpdbg_lexer.c 	LEX(text) = YYCURSOR = (unsigned char *) input;
input              39 sapi/phpdbg/phpdbg_lexer.c 	LEX(len) = strlen(input);
input              38 sapi/phpdbg/phpdbg_lexer.h void phpdbg_init_lexer (phpdbg_param_t *stack, char *input);
input              70 sapi/phpdbg/phpdbg_parser.y input
input              72 sapi/phpdbg/phpdbg_parser.y 	| input T_SEPARATOR command { phpdbg_stack_separate($1.top); $$ = $3; }
input             192 sapi/phpdbg/phpdbg_parser.y int phpdbg_do_parse(phpdbg_param_t *stack, char *input) {
input             193 sapi/phpdbg/phpdbg_parser.y 	if (!*input) {
input             197 sapi/phpdbg/phpdbg_parser.y 	phpdbg_init_lexer(stack, input);
input             264 sapi/phpdbg/phpdbg_prompt.c 			char *input = phpdbg_read_input(cmd);
input             271 sapi/phpdbg/phpdbg_prompt.c 			if (phpdbg_do_parse(&stack, input) <= 0) {
input             277 sapi/phpdbg/phpdbg_prompt.c 								phpdbg_output_err_buf("initfailure", "%b file=\"%s\" line=\"%d\" input=\"%s\"", "Unrecognized command in %s:%d: %s, %b!", state->init_file, state->line, input);
input             279 sapi/phpdbg/phpdbg_prompt.c 								phpdbg_output_err_buf("initfailure", "%b line=\"%d\" input=\"%s\"", "Unrecognized command on line %d: %s, %b!", state->line, input);
input             290 sapi/phpdbg/phpdbg_prompt.c 			phpdbg_destroy_input(&input);
input            1346 sapi/phpdbg/phpdbg_prompt.c 	char *input = NULL;
input            1356 sapi/phpdbg/phpdbg_prompt.c 		if (!(input = phpdbg_read_input(NULL))) {
input            1363 sapi/phpdbg/phpdbg_prompt.c 		if (phpdbg_do_parse(&stack, input) <= 0) {
input            1405 sapi/phpdbg/phpdbg_prompt.c 		phpdbg_destroy_input(&input);
input            1407 sapi/phpdbg/phpdbg_prompt.c 		input = NULL;
input            1410 sapi/phpdbg/phpdbg_prompt.c 	if (input) {
input            1412 sapi/phpdbg/phpdbg_prompt.c 		phpdbg_destroy_input(&input);
input             426 sapi/phpdbg/phpdbg_utils.c PHPDBG_API int phpdbg_parse_variable(char *input, size_t len, HashTable *parent, size_t i, phpdbg_parse_var_func callback, zend_bool silent) {
input             427 sapi/phpdbg/phpdbg_utils.c 	return phpdbg_parse_variable_with_arg(input, len, parent, i, (phpdbg_parse_var_with_arg_func) phpdbg_parse_variable_arg_wrapper, NULL, silent, callback);
input             430 sapi/phpdbg/phpdbg_utils.c PHPDBG_API int phpdbg_parse_variable_with_arg(char *input, size_t len, HashTable *parent, size_t i, phpdbg_parse_var_with_arg_func callback, phpdbg_parse_var_with_arg_func step_cb, zend_bool silent, void *arg) {
input             437 sapi/phpdbg/phpdbg_utils.c 	if (len < 2 || *input != '$') {
input             445 sapi/phpdbg/phpdbg_utils.c 			switch (input[i]) {
input             460 sapi/phpdbg/phpdbg_utils.c 						last_index = input + i;
input             463 sapi/phpdbg/phpdbg_utils.c 					if (input[i - 1] == ']') {
input             478 sapi/phpdbg/phpdbg_utils.c 				if (i == len || (i == len - 1 && input[len - 1] == ']')) {
input             491 sapi/phpdbg/phpdbg_utils.c 					namelen = sprintf(name, "%.*s%.*s%s", (int) i, input, (int) (keylen - (propkey - key)), propkey, input[len - 1] == ']'?"]":"");
input             499 sapi/phpdbg/phpdbg_utils.c 						char *name = estrndup(input, i);
input             505 sapi/phpdbg/phpdbg_utils.c 					phpdbg_parse_variable_with_arg(input, len, Z_OBJPROP_P(zv), i, callback, step_cb, silent, arg);
input             508 sapi/phpdbg/phpdbg_utils.c 						char *name = estrndup(input, i);
input             514 sapi/phpdbg/phpdbg_utils.c 					phpdbg_parse_variable_with_arg(input, len, Z_ARRVAL_P(zv), i, callback, step_cb, silent, arg);
input             517 sapi/phpdbg/phpdbg_utils.c 						char *name = estrndup(input, i);
input             535 sapi/phpdbg/phpdbg_utils.c 					phpdbg_error("variable", "type=\"undefined\" variable=\"%.*s\"", "%.*s is undefined", (int) i, input);
input             545 sapi/phpdbg/phpdbg_utils.c 				char *name = estrndup(input, i);
input             551 sapi/phpdbg/phpdbg_utils.c 					char *name = estrndup(input, i);
input             560 sapi/phpdbg/phpdbg_utils.c 					char *name = estrndup(input, i);
input             569 sapi/phpdbg/phpdbg_utils.c 					char *name = estrndup(input, i);
input             578 sapi/phpdbg/phpdbg_utils.c 				phpdbg_error("variable", "type=\"notiterable\" variable=\"%.*s\"", "%.*s is nor an array nor an object", (int) (input[i] == '>' ? i - 1 : i), input);
input              91 sapi/phpdbg/phpdbg_utils.h PHPDBG_API int phpdbg_parse_variable(char *input, size_t len, HashTable *parent, size_t i, phpdbg_parse_var_func callback, zend_bool silent);
input              92 sapi/phpdbg/phpdbg_utils.h PHPDBG_API int phpdbg_parse_variable_with_arg(char *input, size_t len, HashTable *parent, size_t i, phpdbg_parse_var_with_arg_func callback, phpdbg_parse_var_with_arg_func step_cb, zend_bool silent, void *arg);
input             652 sapi/phpdbg/phpdbg_watch.c PHPDBG_API int phpdbg_watchpoint_parse_input(char *input, size_t len, HashTable *parent, size_t i, int (*callback)(phpdbg_watchpoint_t *), zend_bool silent) {
input             653 sapi/phpdbg/phpdbg_watch.c 	return phpdbg_parse_variable_with_arg(input, len, parent, i, (phpdbg_parse_var_with_arg_func) phpdbg_watchpoint_parse_wrapper, NULL, 0, callback);
input             682 sapi/phpdbg/phpdbg_watch.c static int phpdbg_watchpoint_parse_symtables(char *input, size_t len, int (*callback)(phpdbg_watchpoint_t *)) {
input             683 sapi/phpdbg/phpdbg_watch.c 	if (EG(scope) && len >= 5 && !memcmp("$this", input, 5)) {
input             687 sapi/phpdbg/phpdbg_watch.c 	if (phpdbg_is_auto_global(input, len) && phpdbg_watchpoint_parse_input(input, len, &EG(symbol_table), 0, callback, 1) != FAILURE) {
input             691 sapi/phpdbg/phpdbg_watch.c 	return phpdbg_parse_variable_with_arg(input, len, EG(current_execute_data)->symbol_table, 0, (phpdbg_parse_var_with_arg_func) phpdbg_watchpoint_parse_wrapper, (phpdbg_parse_var_with_arg_func) phpdbg_watchpoint_parse_step, 0, callback);
input             788 sapi/phpdbg/phpdbg_watch.c int phpdbg_create_var_watchpoint(char *input, size_t len) {
input             793 sapi/phpdbg/phpdbg_watch.c 	return phpdbg_watchpoint_parse_symtables(input, len, phpdbg_create_simple_watchpoint);
input             796 sapi/phpdbg/phpdbg_watch.c int phpdbg_delete_var_watchpoint(char *input, size_t len) {
input             801 sapi/phpdbg/phpdbg_watch.c 	return phpdbg_watchpoint_parse_input(input, len, EG(current_execute_data)->symbol_table, 0, phpdbg_delete_watchpoint, 0);
input             102 sapi/phpdbg/phpdbg_watch.h int phpdbg_delete_var_watchpoint(char *input, size_t len);
input             103 sapi/phpdbg/phpdbg_watch.h int phpdbg_create_var_watchpoint(char *input, size_t len);