input             681 ext/filter/filter.c static void php_filter_array_handler(zval *input, zval **op, zval *return_value, zend_bool add_empty TSRMLS_DC) /* {{{ */
input             691 ext/filter/filter.c 		MAKE_COPY_ZVAL(&input, return_value);
input             695 ext/filter/filter.c 		MAKE_COPY_ZVAL(&input, return_value);
input             715 ext/filter/filter.c 			if (zend_hash_find(Z_ARRVAL_P(input), arg_key, arg_key_len, (void **)&tmp) != SUCCESS) {
input             742 ext/filter/filter.c 	zval  *input = NULL;
input             754 ext/filter/filter.c 	input = php_filter_get_storage(fetch_from TSRMLS_CC);
input             756 ext/filter/filter.c 	if (!input || !HASH_OF(input) || zend_hash_find(HASH_OF(input), var, var_len + 1, (void **)&tmp) != SUCCESS) {
input             784 ext/filter/logical_filters.c 	char *input = Z_STRVAL_P(value);
input             806 ext/filter/logical_filters.c 	} else if (17 == input_len && input[2] == '-') {
input             811 ext/filter/logical_filters.c 	} else if (17 == input_len && input[2] == ':') {
input             831 ext/filter/logical_filters.c 		if (i < tokens - 1 && input[offset + length] != separator) {
input             835 ext/filter/logical_filters.c 		if (php_filter_parse_hex(input + offset, length, &ret TSRMLS_CC) < 0) {
input            3053 ext/gd/gd.c    	double input, output;
input            3055 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rdd", &IM, &input, &output) == FAILURE) {
input            3069 ext/gd/gd.c    						(int) ((pow((pow((gdTrueColorGetRed(c)   / 255.0), input)), 1.0 / output) * 255) + .5),
input            3070 ext/gd/gd.c    						(int) ((pow((pow((gdTrueColorGetGreen(c) / 255.0), input)), 1.0 / output) * 255) + .5),
input            3071 ext/gd/gd.c    						(int) ((pow((pow((gdTrueColorGetBlue(c)  / 255.0), input)), 1.0 / output) * 255) + .5),
input            3081 ext/gd/gd.c    		im->red[i]   = (int)((pow((pow((im->red[i]   / 255.0), input)), 1.0 / output) * 255) + .5);
input            3082 ext/gd/gd.c    		im->green[i] = (int)((pow((pow((im->green[i] / 255.0), input)), 1.0 / output) * 255) + .5);
input            3083 ext/gd/gd.c    		im->blue[i]  = (int)((pow((pow((im->blue[i]  / 255.0), input)), 1.0 / output) * 255) + .5);
input             604 ext/gd/libgd/gdkanji.c   unsigned char input[BUFSIZ];
input             610 ext/gd/libgd/gdkanji.c     input[i++] = c;
input             611 ext/gd/libgd/gdkanji.c   input[i] = '\0';
input             613 ext/gd/libgd/gdkanji.c   printf ("input : %d bytes\n", strlen ((const char *) input));
input             614 ext/gd/libgd/gdkanji.c   printf ("output: %d bytes\n", strwidth (input));
input             617 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              57 ext/intl/normalizer/normalizer_normalize.c 				&input, &input_len, &form ) == FAILURE )
input              90 ext/intl/normalizer/normalizer_normalize.c 	intl_convert_utf8_to_utf16(&uinput, &uinput_len, input, input_len, &status );
input             173 ext/intl/normalizer/normalizer_normalize.c 	char*	 	input = NULL;
input             188 ext/intl/normalizer/normalizer_normalize.c 				&input, &input_len, &form) == FAILURE )
input             216 ext/intl/normalizer/normalizer_normalize.c 	intl_convert_utf8_to_utf16(&uinput, &uinput_len, input, input_len, &status );
input             204 ext/intl/php_intl.c 	ZEND_ARG_INFO(0, input)
input             512 ext/libxml/libxml.c 	if (parser != NULL && parser->input != NULL) {
input             513 ext/libxml/libxml.c 		if (parser->input->filename) {
input             514 ext/libxml/libxml.c 			php_error_docref(NULL TSRMLS_CC, level, "%s in %s, line: %d", msg, parser->input->filename, parser->input->line);
input             516 ext/libxml/libxml.c 			php_error_docref(NULL TSRMLS_CC, 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             131 ext/mbstring/mb_gpc.c 		separator = (char *) estrdup(PG(arg_separator).input);
input            2081 ext/mbstring/mbstring.c 	info.separator              = PG(arg_separator).input; 
input            2972 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 TSRMLS_DC)
input            2984 ext/mbstring/mbstring.c 	if (!input) {
input            3004 ext/mbstring/mbstring.c 	string.val = (unsigned char *)input;
input             136 ext/mbstring/mbstring.h MBSTRING_API char * php_mb_convert_encoding(const char *input, size_t length,
input            1821 ext/pcre/php_pcre.c 	zval				*input;			/* Input array */
input            1827 ext/pcre/php_pcre.c 							  &input, &flags) == FAILURE) {
input            1837 ext/pcre/php_pcre.c 	php_pcre_grep_impl(pce, input, return_value, flags TSRMLS_CC);
input            1842 ext/pcre/php_pcre.c PHPAPI void  php_pcre_grep_impl(pcre_cache_entry *pce, zval *input, zval *return_value, long flags TSRMLS_DC) /* {{{ */
input            1884 ext/pcre/php_pcre.c 	zend_hash_internal_pointer_reset(Z_ARRVAL_P(input));
input            1885 ext/pcre/php_pcre.c 	while (zend_hash_get_current_data(Z_ARRVAL_P(input), (void **)&entry) == SUCCESS) {
input            1913 ext/pcre/php_pcre.c 			switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0, NULL))
input            1931 ext/pcre/php_pcre.c 		zend_hash_move_forward(Z_ARRVAL_P(input));
input            1933 ext/pcre/php_pcre.c 	zend_hash_internal_pointer_reset(Z_ARRVAL_P(input));
input            2000 ext/pcre/php_pcre.c     ZEND_ARG_INFO(0, input) /* array */
input              66 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() TSRMLS_CC, "srr", &req, &req_len, &input, &output) == FAILURE) {
input             199 ext/recode/recode.c 	php_stream_from_zval(instream, &input);
input             906 ext/soap/php_sdl.c 					xmlNodePtr input, output, fault, portTypeOperation, trav3;
input             983 ext/soap/php_sdl.c 					input = get_node_ex(portTypeOperation->children, "input", WSDL_NAMESPACE);
input             984 ext/soap/php_sdl.c 					if (input != NULL) {
input             987 ext/soap/php_sdl.c 						message = get_attribute(input->properties, "message");
input             993 ext/soap/php_sdl.c 						name = get_attribute(input->properties, "name");
input            1004 ext/soap/php_sdl.c 							input = get_node_ex(operation->children, "input", WSDL_NAMESPACE);
input            1005 ext/soap/php_sdl.c 							if (input != NULL) {
input            1007 ext/soap/php_sdl.c 								wsdl_soap_binding_body(&ctx, input, wsdl_soap_namespace, &soapFunctionBinding->input, function->requestParameters);
input            1718 ext/soap/php_sdl.c 				sdl_deserialize_soap_body(&binding->input, encoders, types, &in);
input            2316 ext/soap/php_sdl.c 					sdl_serialize_soap_body(&binding->input, &tmp_encoders, &tmp_types, out);
input            2933 ext/soap/php_sdl.c 			make_persistent_sdl_soap_body(&soap_binding->input, ptr_map);
input            3565 ext/soap/php_sdl.c 		delete_sdl_soap_binding_function_body(soapFunction->input);
input            3604 ext/soap/php_sdl.c 		delete_sdl_soap_binding_function_body_persistent(soapFunction->input);
input             123 ext/soap/php_sdl.h 	sdlSoapBindingFunctionBody  input;
input            2724 ext/soap/soap.c  					request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_version, soap_headers TSRMLS_CC);
input            3662 ext/soap/soap.c 					if (fnb->input.headers) {
input            3671 ext/soap/soap.c 						if (zend_hash_find(fnb->input.headers, key.c, key.len+1, (void**)&hdr) == SUCCESS) {
input            4261 ext/soap/soap.c 		hdrs = fnb->input.headers;
input            4265 ext/soap/soap.c 		use = fnb->input.use;
input            4267 ext/soap/soap.c 			ns = encode_add_ns(body, fnb->input.ns);
input            2009 ext/standard/array.c 	zval	 *input,		/* Input array */
input            2022 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "al|Zb", &input, &offset, &z_length, &preserve_keys) == FAILURE) {
input            2027 ext/standard/array.c 	num_in = zend_hash_num_elements(Z_ARRVAL_P(input));
input            2061 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &hpos);
input            2062 ext/standard/array.c 	while (pos < offset && zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &hpos) == SUCCESS) {
input            2064 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &hpos);
input            2068 ext/standard/array.c 	while (pos < offset + length && zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &hpos) == SUCCESS) {
input            2072 ext/standard/array.c 		switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0, &hpos)) {
input            2086 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &hpos);
input            2300 ext/standard/array.c 	zval *input,				/* Input array */
input            2310 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|zb", &input, &search_value, &strict) == FAILURE) {
input            2322 ext/standard/array.c 		array_init_size(return_value, zend_hash_num_elements(Z_ARRVAL_P(input)));
input            2327 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
input            2328 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS) {
input            2336 ext/standard/array.c 			zend_hash_get_current_key_zval_ex(Z_ARRVAL_P(input), new_val, &pos);
input            2340 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos);
input            2349 ext/standard/array.c 	zval	 *input,		/* Input array */
input            2353 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &input) == FAILURE) {
input            2358 ext/standard/array.c 	array_init_size(return_value, zend_hash_num_elements(Z_ARRVAL_P(input)));
input            2361 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
input            2362 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS) {
input            2365 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos);
input            2374 ext/standard/array.c 	zval	*input,			/* Input array */
input            2380 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &input) == FAILURE) {
input            2388 ext/standard/array.c 	myht = Z_ARRVAL_P(input);
input            2516 ext/standard/array.c 	zval	 *input,				/* Input array */
input            2524 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|b", &input, &preserve_keys) == FAILURE) {
input            2529 ext/standard/array.c 	array_init_size(return_value, zend_hash_num_elements(Z_ARRVAL_P(input)));
input            2531 ext/standard/array.c 	zend_hash_internal_pointer_end_ex(Z_ARRVAL_P(input), &pos);
input            2532 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS) {
input            2535 ext/standard/array.c 		switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0, &pos)) {
input            2549 ext/standard/array.c 		zend_hash_move_backwards_ex(Z_ARRVAL_P(input), &pos);
input            2558 ext/standard/array.c 	zval  *input;		/* Input array */
input            2568 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "alz", &input, &pad_size, &pad_value) == FAILURE) {
input            2573 ext/standard/array.c 	input_size = zend_hash_num_elements(Z_ARRVAL_P(input));
input            2583 ext/standard/array.c 	RETVAL_ZVAL(input, 1, 0);
input            3864 ext/standard/array.c 	zval *input;
input            3872 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|l", &input, &num_req) == FAILURE) {
input            3876 ext/standard/array.c 	num_avail = zend_hash_num_elements(Z_ARRVAL_P(input));
input            3891 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
input            3892 ext/standard/array.c 	while (num_req && (key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0, &pos)) != HASH_KEY_NON_EXISTENT) {
input            3915 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos);
input            3924 ext/standard/array.c 	zval *input,
input            3929 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &input) == FAILURE) {
input            3935 ext/standard/array.c 	for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
input            3936 ext/standard/array.c 		zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS;
input            3937 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos)
input            3954 ext/standard/array.c 	zval *input,
input            3960 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &input) == FAILURE) {
input            3965 ext/standard/array.c 	if (!zend_hash_num_elements(Z_ARRVAL_P(input))) {
input            3969 ext/standard/array.c 	for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
input            3970 ext/standard/array.c 		zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS;
input            3971 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos)
input            3998 ext/standard/array.c 	zval *input;
input            4009 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "af|z", &input, &fci, &fci_cache, &initial) == FAILURE) {
input            4024 ext/standard/array.c 	htbl = Z_ARRVAL_P(input);
input            4341 ext/standard/array.c 	zval *input = NULL;
input            4346 ext/standard/array.c 	if (zend_parse_parameters(argc TSRMLS_CC, "al|b", &input, &size, &preserve_keys) == FAILURE) {
input            4355 ext/standard/array.c 	num_in = zend_hash_num_elements(Z_ARRVAL_P(input));
input            4363 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
input            4364 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void**)&entry, &pos) == SUCCESS) {
input            4375 ext/standard/array.c 			key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &str_key, &str_key_len, &num_key, 0, &pos);
input            4395 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos);
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            1818 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, input)
input            2391 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, input)
input            2396 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, input)
input            2421 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             623 ext/standard/crypt_sha256.c 	const char *input;
input             665 ext/standard/crypt_sha256.c 	const char *input;
input             707 ext/standard/crypt_sha256.c 		sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx);
input             715 ext/standard/crypt_sha256.c 		for (i = 0; tests[cnt].input[i] != '\0'; ++i) {
input             716 ext/standard/crypt_sha256.c 			sha256_process_bytes(&tests[cnt].input[i], 1, &ctx);
input             741 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             274 ext/standard/cyr_convert.c 	char *input, *fr_cs, *to_cs;
input             278 ext/standard/cyr_convert.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss", &input, &input_len, &fr_cs, &fr_cs_len, &to_cs, &to_cs_len) == FAILURE) {
input             282 ext/standard/cyr_convert.c 	str = (unsigned char*) estrndup(input, input_len);
input            1184 ext/standard/file.c 	char *input;
input            1191 ext/standard/file.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|l", &res, &input, &inputlen, &maxlen) == FAILURE) {
input            1207 ext/standard/file.c 	ret = php_stream_write(stream, input, num_bytes);
input            1405 ext/standard/image.c 	char *input;
input            1409 ext/standard/image.c 	if (zend_parse_parameters(argc TSRMLS_CC, "s|Z", &input, &input_len, &info) == FAILURE) {
input            1420 ext/standard/image.c 		stream = php_stream_open_wrapper(input, "rb", STREAM_MUST_SEEK|REPORT_ERRORS|IGNORE_PATH, NULL);
input            1422 ext/standard/image.c 		stream = php_stream_memory_open(TEMP_STREAM_READONLY, input, input_len);
input             579 ext/standard/pack.c 	char *format, *input, *formatarg, *inputarg;
input             590 ext/standard/pack.c 	input = inputarg;
input             757 ext/standard/pack.c 						add_assoc_stringl(return_value, n, &input[inputpos], len, 1);
input             774 ext/standard/pack.c 							if (input[inputpos + len] != padn
input             775 ext/standard/pack.c 								&& input[inputpos + len] != pads
input             776 ext/standard/pack.c 								&& input[inputpos + len] != padt
input             777 ext/standard/pack.c 								&& input[inputpos + len] != padc
input             778 ext/standard/pack.c 								&& input[inputpos + len] != padl
input             783 ext/standard/pack.c 						add_assoc_stringl(return_value, n, &input[inputpos], len + 1, 1);
input             802 ext/standard/pack.c 							if (input[inputpos + s] == pad)
input             807 ext/standard/pack.c 						add_assoc_stringl(return_value, n, &input[inputpos], len, 1);
input             832 ext/standard/pack.c 							char cc = (input[inputpos + ipos] >> nibbleshift) & 0xf;
input             857 ext/standard/pack.c 						int issigned = (type == 'c') ? (input[inputpos] & 0x80) : 0;
input             858 ext/standard/pack.c 						long v = php_unpack(&input[inputpos], 1, issigned, byte_map);
input             872 ext/standard/pack.c 							issigned = input[inputpos + (machine_little_endian ? 1 : 0)] & 0x80;
input             879 ext/standard/pack.c 						v = php_unpack(&input[inputpos], 2, issigned, map);
input             890 ext/standard/pack.c 							issigned = input[inputpos + (machine_little_endian ? (sizeof(int) - 1) : 0)] & 0x80;
input             893 ext/standard/pack.c 						v = php_unpack(&input[inputpos], sizeof(int), issigned, int_map);
input             907 ext/standard/pack.c 							issigned = input[inputpos + (machine_little_endian ? 3 : 0)] & 0x80;
input             909 ext/standard/pack.c 							issigned = input[inputpos] & 0x80;
input             912 ext/standard/pack.c 							issigned = input[inputpos + 3] & 0x80;
input             920 ext/standard/pack.c 						v |= php_unpack(&input[inputpos], 4, issigned, map);
input             942 ext/standard/pack.c 							issigned = input[inputpos + (machine_little_endian ? 7 : 0)] & 0x80;
input             944 ext/standard/pack.c 							issigned = input[inputpos] & 0x80;
input             947 ext/standard/pack.c 							issigned = input[inputpos + 7] & 0x80;
input             951 ext/standard/pack.c 						v = php_unpack(&input[inputpos], 8, issigned, map);
input             967 ext/standard/pack.c 						memcpy(&v, &input[inputpos], sizeof(float));
input             975 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) < 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             221 ext/standard/php_fopen_wrapper.c 		php_stream_input_t *input;
input             230 ext/standard/php_fopen_wrapper.c 		input = ecalloc(1, sizeof(*input));
input             231 ext/standard/php_fopen_wrapper.c 		if ((input->body = SG(request_info).request_body)) {
input             232 ext/standard/php_fopen_wrapper.c 			php_stream_rewind(input->body);
input             234 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             235 ext/standard/php_fopen_wrapper.c 			SG(request_info).request_body = input->body;
input             238 ext/standard/php_fopen_wrapper.c 		return php_stream_alloc(&php_stream_input_ops, input, 0, "rb");
input             183 ext/standard/sha1.c PHPAPI void PHP_SHA1Update(PHP_SHA1_CTX * context, const unsigned char *input,
input             203 ext/standard/sha1.c 			((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
input             207 ext/standard/sha1.c 			SHA1Transform(context->state, &input[i]);
input             215 ext/standard/sha1.c 		((unsigned char*) & context->buffer[index], (unsigned char*) & input[i],
input             372 ext/standard/sha1.c static void SHA1Encode(output, input, len)
input             374 ext/standard/sha1.c php_uint32 *input;
input             380 ext/standard/sha1.c 		output[j] = (unsigned char) ((input[i] >> 24) & 0xff);
input             381 ext/standard/sha1.c 		output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff);
input             382 ext/standard/sha1.c 		output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff);
input             383 ext/standard/sha1.c 		output[j + 3] = (unsigned char) (input[i] & 0xff);
input             392 ext/standard/sha1.c static void SHA1Decode(output, input, len)
input             394 ext/standard/sha1.c const unsigned char *input;
input             400 ext/standard/sha1.c 		output[i] = ((php_uint32) input[j + 3]) | (((php_uint32) input[j + 2]) << 8) |
input             401 ext/standard/sha1.c 			(((php_uint32) input[j + 1]) << 16) | (((php_uint32) input[j]) << 24);
input             748 ext/standard/string.c static inline int php_charmask(unsigned char *input, int len, char *mask TSRMLS_DC)
input             755 ext/standard/string.c 	for (end = input+len; input < end; input++) {
input             756 ext/standard/string.c 		c=*input;
input             757 ext/standard/string.c 		if ((input+3 < end) && input[1] == '.' && input[2] == '.'
input             758 ext/standard/string.c 				&& input[3] >= c) {
input             759 ext/standard/string.c 			memset(mask+c, 1, input[3] - c + 1);
input             760 ext/standard/string.c 			input+=3;
input             761 ext/standard/string.c 		} else if ((input+1 < end) && input[0] == '.' && input[1] == '.') {
input             764 ext/standard/string.c 			if (end-len >= input) { /* there was no 'left' char */
input             769 ext/standard/string.c 			if (input+2 >= end) { /* there is no 'right' char */
input             774 ext/standard/string.c 			if (input[-1] > input[2]) { /* wrong order */
input            4946 ext/standard/string.c 	char *input;
input            4954 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &input, &len, &mymode) == FAILURE) {
input            4963 ext/standard/string.c 	buf = (unsigned char *) input;
input            5242 ext/standard/string.c 	char *input;				/* Input string */
input            5255 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|sl", &input, &input_len, &pad_length,
input            5263 ext/standard/string.c 		RETURN_STRINGL(input, input_len, 1);
input            5306 ext/standard/string.c 	memcpy(result + result_len, input, input_len);
input             285 ext/tidy/tidy.c 	ZEND_ARG_INFO(0, input)
input            1218 ext/tidy/tidy.c 	char *input, *enc = NULL;
input            1223 ext/tidy/tidy.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|Zs", &input, &input_len, &options, &enc, &enc_len) == FAILURE) {
input            1232 ext/tidy/tidy.c 	if(php_tidy_parse_string(obj, input, input_len, enc TSRMLS_CC) == FAILURE) {
input            1652 ext/tidy/tidy.c 	char *input, *enc = NULL;
input            1659 ext/tidy/tidy.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|Zs", &input, &input_len, &options, &enc, &enc_len) == FAILURE) {
input            1667 ext/tidy/tidy.c 	if(php_tidy_parse_string(obj, input, input_len, enc TSRMLS_CC) == SUCCESS) {
input             586 ext/xml/compat.c 		if (data_len >= 4 || (parser->parser->input->buf->buffer->use + data_len >= 4)) {
input             590 ext/xml/compat.c 			char_count = parser->parser->input->buf->buffer->use;
input             595 ext/xml/compat.c 			memcpy(start, parser->parser->input->buf->buffer->content, (size_t)char_count);
input             739 ext/xml/compat.c 	return parser->parser->input->line;
input             745 ext/xml/compat.c 	return parser->parser->input->col;
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             760 ext/xml/compat.c 	return parser->parser->input->consumed +
input             761 ext/xml/compat.c 			(parser->parser->input->cur - parser->parser->input->base);
input             358 ext/xmlreader/php_xmlreader.c 		if (intern->input) {
input             359 ext/xmlreader/php_xmlreader.c 			xmlFreeParserInputBuffer(intern->input);
input             360 ext/xmlreader/php_xmlreader.c 			intern->input = NULL;
input             399 ext/xmlreader/php_xmlreader.c 	intern->input = NULL;
input            1099 ext/xmlreader/php_xmlreader.c 				intern->input = inputbfr;
input              38 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             587 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             437 main/php_variables.c 			separator = (char *) estrdup(PG(arg_separator).input);
input            2291 sapi/cgi/cgi_main.c 					int slen = strlen(PG(arg_separator).input);
input            2307 sapi/cgi/cgi_main.c 							strlcat(s, PG(arg_separator).input, len);
input            1041 sapi/cli/php_cli.c 				char *input;
input            1055 sapi/cli/php_cli.c 				while (exit_status == SUCCESS && (input=php_stream_gets(s_in_process, NULL, 0)) != NULL) {
input            1056 sapi/cli/php_cli.c 					len = strlen(input);
input            1057 sapi/cli/php_cli.c 					while (len-- && (input[len]=='\n' || input[len]=='\r')) {
input            1058 sapi/cli/php_cli.c 						input[len] = '\0';
input            1063 sapi/cli/php_cli.c 					Z_STRVAL_P(argn) = estrndup(input, len);
input            1082 sapi/cli/php_cli.c 					efree(input);
input              81 sapi/phpdbg/phpdbg.h int phpdbg_do_parse(phpdbg_param_t *stack, char *input TSRMLS_DC);
input             812 sapi/phpdbg/phpdbg_cmd.c PHPDBG_API void phpdbg_destroy_input(char **input TSRMLS_DC) /*{{{ */
input             814 sapi/phpdbg/phpdbg_cmd.c 	efree(*input);
input              31 sapi/phpdbg/phpdbg_lexer.c void phpdbg_init_lexer (phpdbg_param_t *stack, char *input TSRMLS_DC) {
input              36 sapi/phpdbg/phpdbg_lexer.c 	LEX(text) = YYCURSOR = (unsigned char *) input;
input              37 sapi/phpdbg/phpdbg_lexer.c 	LEX(len) = strlen(input);
input              37 sapi/phpdbg/phpdbg_lexer.h void phpdbg_init_lexer (phpdbg_param_t *stack, char *input TSRMLS_DC);
input              65 sapi/phpdbg/phpdbg_parser.y input
input             176 sapi/phpdbg/phpdbg_parser.y int phpdbg_do_parse(phpdbg_param_t *stack, char *input TSRMLS_DC) {
input             177 sapi/phpdbg/phpdbg_parser.y 	phpdbg_init_lexer(stack, input TSRMLS_CC);
input             247 sapi/phpdbg/phpdbg_prompt.c 						char *input = phpdbg_read_input(cmd TSRMLS_CC);
input             252 sapi/phpdbg/phpdbg_prompt.c 						if (phpdbg_do_parse(&stack, input TSRMLS_CC) <= 0) {
input             259 sapi/phpdbg/phpdbg_prompt.c 												init_file, line, input, why);
input             272 sapi/phpdbg/phpdbg_prompt.c 						phpdbg_destroy_input(&input TSRMLS_CC);
input             998 sapi/phpdbg/phpdbg_prompt.c 	char *input = NULL;
input            1003 sapi/phpdbg/phpdbg_prompt.c 	input = phpdbg_read_input(NULL TSRMLS_CC);
input            1005 sapi/phpdbg/phpdbg_prompt.c 	if (input) {
input            1009 sapi/phpdbg/phpdbg_prompt.c 			if (phpdbg_do_parse(&stack, input TSRMLS_CC) <= 0) {
input            1044 sapi/phpdbg/phpdbg_prompt.c 			phpdbg_destroy_input(&input TSRMLS_CC);
input            1046 sapi/phpdbg/phpdbg_prompt.c 		} while ((input = phpdbg_read_input(NULL TSRMLS_CC)));
input            1050 sapi/phpdbg/phpdbg_prompt.c 	if (input) {
input            1052 sapi/phpdbg/phpdbg_prompt.c 		phpdbg_destroy_input(&input TSRMLS_CC);
input             290 sapi/phpdbg/phpdbg_watch.c static int phpdbg_watchpoint_parse_input(char *input, size_t len, HashTable *parent, size_t i, int (*callback)(phpdbg_watchpoint_t * TSRMLS_DC), zend_bool silent TSRMLS_DC) {
input             297 sapi/phpdbg/phpdbg_watch.c 	if (len < 2 || *input != '$') {
input             305 sapi/phpdbg/phpdbg_watch.c 			switch (input[i]) {
input             320 sapi/phpdbg/phpdbg_watch.c 						last_index = input + i;
input             323 sapi/phpdbg/phpdbg_watch.c 					if (input[i - 1] == ']') {
input             335 sapi/phpdbg/phpdbg_watch.c 				if (i == len || (i == len - 1 && input[len - 1] == ']')) {
input             342 sapi/phpdbg/phpdbg_watch.c 					watch->str_len = sprintf(watch->str, "%.*s%s%s", (int)i, input, phpdbg_get_property_key(Z_STRVAL_P(key)), input[len - 1] == ']'?"]":"");
input             351 sapi/phpdbg/phpdbg_watch.c 					phpdbg_watchpoint_parse_input(input, len, Z_OBJPROP_PP(zv), i, callback, silent TSRMLS_CC);
input             353 sapi/phpdbg/phpdbg_watch.c 					phpdbg_watchpoint_parse_input(input, len, Z_ARRVAL_PP(zv), i, callback, silent TSRMLS_CC);
input             364 sapi/phpdbg/phpdbg_watch.c 					phpdbg_error("%.*s is undefined", (int)i, input);
input             372 sapi/phpdbg/phpdbg_watch.c 				watch->str = zend_strndup(input, len);
input             385 sapi/phpdbg/phpdbg_watch.c 				phpdbg_error("%.*s is nor an array nor an object", (int)i, input);
input             398 sapi/phpdbg/phpdbg_watch.c static int phpdbg_watchpoint_parse_symtables(char *input, size_t len, int (*callback)(phpdbg_watchpoint_t * TSRMLS_DC) TSRMLS_DC) {
input             399 sapi/phpdbg/phpdbg_watch.c 	if (EG(This) && len >= 5 && !memcmp("$this", input, 5)) {
input             403 sapi/phpdbg/phpdbg_watch.c 	if (zend_is_auto_global(input, len TSRMLS_CC) && phpdbg_watchpoint_parse_input(input, len, &EG(symbol_table), 0, callback, 1 TSRMLS_CC) != FAILURE) {
input             407 sapi/phpdbg/phpdbg_watch.c 	return phpdbg_watchpoint_parse_input(input, len, EG(active_symbol_table), 0, callback, 0 TSRMLS_CC);
input             487 sapi/phpdbg/phpdbg_watch.c int phpdbg_create_var_watchpoint(char *input, size_t len TSRMLS_DC) {
input             492 sapi/phpdbg/phpdbg_watch.c 	return phpdbg_watchpoint_parse_symtables(input, len, phpdbg_create_watchpoint TSRMLS_CC);
input             495 sapi/phpdbg/phpdbg_watch.c int phpdbg_delete_var_watchpoint(char *input, size_t len TSRMLS_DC) {
input             500 sapi/phpdbg/phpdbg_watch.c 	return phpdbg_watchpoint_parse_symtables(input, len, phpdbg_delete_watchpoint TSRMLS_CC);
input              92 sapi/phpdbg/phpdbg_watch.h int phpdbg_delete_var_watchpoint(char *input, size_t len TSRMLS_DC);
input              93 sapi/phpdbg/phpdbg_watch.h int phpdbg_create_var_watchpoint(char *input, size_t len TSRMLS_DC);