Home
last modified time | relevance | path

Searched refs:buffer (Results 101 – 125 of 300) sorted by relevance

12345678910>>...12

/PHP-5.4/ext/standard/tests/strings/
H A D005.phpt2 highlight_string(), output buffer and error level
H A Dsetlocale_variation2.phpt31 // start the buffering of next command to internal output buffer
37 // get the contents from the internal output buffer
40 // fflush and end the output buffering to internal output buffer
H A D006.phpt2 highlight_file() and output buffer
H A D007.phpt2 php_strip_whitespace() and output buffer
H A D007-win32.phpt2 php_strip_whitespace() and output buffer
/PHP-5.4/Zend/
H A Dzend_interfaces.h64 ZEND_API int zend_user_serialize(zval *object, unsigned char **buffer, zend_uint *buf_len, zend_ser…
67 ZEND_API int zend_class_serialize_deny(zval *object, unsigned char **buffer, zend_uint *buf_len, ze…
/PHP-5.4/ext/date/tests/
H A Dbug49585.phpt2 Bug #49585 (date_format buffer not long enough for >4 digit years)
/PHP-5.4/ext/hash/
H A Dphp_hash_tiger.h28 unsigned char buffer[64]; member
H A Dhash_sha.c353 ((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_SHA1Update()
354 SHA1Transform(context->state, context->buffer); in PHP_SHA1Update()
365 ((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], in PHP_SHA1Update()
560 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_SHA224Update()
561 SHA256Transform(context->state, context->buffer); in PHP_SHA224Update()
637 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_SHA256Update()
638 SHA256Transform(context->state, context->buffer); in PHP_SHA256Update()
851 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_SHA384Update()
852 SHA512Transform(context->state, context->buffer); in PHP_SHA384Update()
965 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_SHA512Update()
[all …]
H A Dhash_gost.c261 memcpy(&context->buffer[context->length], input, len); in PHP_GOSTUpdate()
268 memcpy(&context->buffer[context->length], input, i); in PHP_GOSTUpdate()
269 GostTransform(context, context->buffer); in PHP_GOSTUpdate()
276 memcpy(context->buffer, input + i, r); in PHP_GOSTUpdate()
277 memset(&context->buffer[r], 0, 32 - r); in PHP_GOSTUpdate()
287 GostTransform(context, context->buffer); in PHP_GOSTFinal()
H A Dphp_hash_haval.h29 unsigned char buffer[128]; member
H A Dhash_ripemd.c274 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_RIPEMD128Update()
275 RIPEMD128Transform(context->state, context->buffer); in PHP_RIPEMD128Update()
287 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i); in PHP_RIPEMD128Update()
372 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_RIPEMD256Update()
373 RIPEMD256Transform(context->state, context->buffer); in PHP_RIPEMD256Update()
385 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i); in PHP_RIPEMD256Update()
471 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_RIPEMD160Update()
472 RIPEMD160Transform(context->state, context->buffer); in PHP_RIPEMD160Update()
484 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i); in PHP_RIPEMD160Update()
579 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_RIPEMD320Update()
[all …]
/PHP-5.4/ext/gd/libgd/
H A Dgd_gif_in.c47 #define ReadOK(file,buffer,len) (gdGetBuf(buffer, len, file) > 0) argument
93 static int ReadColorMap (gdIOCtx *fd, int number, unsigned char (*buffer)[256]);
279 static int ReadColorMap(gdIOCtx *fd, int number, unsigned char (*buffer)[256]) /* {{{ */ in ReadColorMap()
289 buffer[CM_RED][i] = rgb[0] ; in ReadColorMap()
290 buffer[CM_GREEN][i] = rgb[1] ; in ReadColorMap()
291 buffer[CM_BLUE][i] = rgb[2] ; in ReadColorMap()
/PHP-5.4/ext/standard/
H A Dmd5.h47 unsigned char buffer[64]; member
/PHP-5.4/ext/mssql/
H A Dphp_mssql.c547 char buffer[40]; in php_mssql_do_connect() local
670 snprintf(buffer, sizeof(buffer), "%li", MS_SQL_G(textlimit)); in php_mssql_do_connect()
680 snprintf(buffer, sizeof(buffer), "SET TEXTSIZE %li", MS_SQL_G(textsize)); in php_mssql_do_connect()
681 dbcmd(mssql.link, buffer); in php_mssql_do_connect()
804 snprintf(buffer, sizeof(buffer), "%li", MS_SQL_G(textlimit)); in php_mssql_do_connect()
814 snprintf(buffer, sizeof(buffer), "SET TEXTSIZE %li", MS_SQL_G(textsize)); in php_mssql_do_connect()
815 dbcmd(mssql.link, buffer); in php_mssql_do_connect()
2233 char buffer[32+1]; local
2243 php_strtoupper(buffer, 32);
2244 RETURN_STRING(buffer, 1);
[all …]
/PHP-5.4/ext/standard/tests/streams/
H A Dstream_set_chunk_size.phpt30 /* when the chunk size is 1, the read buffer is skipped, but the
35 echo "should be read without buffer (\$count == 10000)\n";
60 should be read without buffer ($count == 10000)
/PHP-5.4/ext/dba/
H A Dinstall_cdb.sh41 ar x ../buffer.a
/PHP-5.4/ext/xmlwriter/tests/
H A D002.phpt15 // Force to write and empty the buffer
H A DOO_002.phpt15 // Force to write and empty the buffer
/PHP-5.4/tests/lang/
H A Dbug32828.phpt6 function output_handler($buffer)
/PHP-5.4/
H A DREADME.NEW-OUTPUT-API36 Flushing one output buffer:
44 Cleaning one output buffer:
52 Discarding one output buffer:
60 Stopping (and dropping) one output buffer:
/PHP-5.4/ext/standard/tests/network/
H A Dbug68925.phpt2 Bug #68925 (CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow)
/PHP-5.4/ext/standard/tests/file/
H A Dbug27619.phpt10 Remainder will get sucked into the read buffer though. */
/PHP-5.4/tests/output/
H A Dflush_basic_001.phpt15 echo "Inside a user buffer\n";
H A Dob_start_basic_unerasable_001.phpt2 ob_start(): Ensure content of unerasable buffer can be accessed by ob_get_contents().

Completed in 100 milliseconds

12345678910>>...12