Home
last modified time | relevance | path

Searched refs:block_size (Results 1 – 13 of 13) sorted by relevance

/PHP-8.1/ext/gd/libgd/
H A Dgd_pixelate.c3 int gdImagePixelate(gdImagePtr im, int block_size, const unsigned int mode) in gdImagePixelate() argument
7 if (block_size <= 0) { in gdImagePixelate()
9 } else if (block_size == 1) { in gdImagePixelate()
14 for (y = 0; y < im->sy; y += block_size) { in gdImagePixelate()
15 for (x = 0; x < im->sx; x += block_size) { in gdImagePixelate()
18 gdImageFilledRectangle(im, x, y, x + block_size - 1, y + block_size - 1, c); in gdImagePixelate()
24 for (y = 0; y < im->sy; y += block_size) { in gdImagePixelate()
25 for (x = 0; x < im->sx; x += block_size) { in gdImagePixelate()
32 for (cy = 0; cy < block_size; cy++) { in gdImagePixelate()
33 for (cx = 0; cx < block_size; cx++) { in gdImagePixelate()
[all …]
H A Dgd.h745 int gdImagePixelate(gdImagePtr im, int block_size, const unsigned int mode);
/PHP-8.1/ext/hash/
H A Dhash.c479 memset(K, 0, ops->block_size); in php_hash_hmac_prep_key()
528 K = emalloc(ops->block_size); in php_hash_do_hash_hmac()
656 size_t i, block_size; in PHP_FUNCTION() local
658 memset(K, 0, ops->block_size); in PHP_FUNCTION()
671 block_size = ops->block_size; in PHP_FUNCTION()
798 size_t i, block_size; in PHP_FUNCTION() local
801 block_size = hash->ops->block_size; in PHP_FUNCTION()
935 K = emalloc(ops->block_size); in PHP_FUNCTION()
1029 K1 = emalloc(ops->block_size); in PHP_FUNCTION()
1030 K2 = emalloc(ops->block_size); in PHP_FUNCTION()
[all …]
H A Dhash_sha3.c158 size_t block_size) { in PHP_SHA3_Update() argument
160 size_t len = block_size - ctx->pos; in PHP_SHA3_Update()
172 if (ctx->pos >= block_size) { in PHP_SHA3_Update()
181 size_t block_size, in PHP_SHA3_Final() argument
187 ctx->state[block_size-1] ^= 0x80; in PHP_SHA3_Final()
192 int bs = (len < block_size) ? len : block_size; in PHP_SHA3_Final()
207 size_t block_size) in php_sha3_unserialize() argument
213 && ctx->pos < block_size) { in php_sha3_unserialize()
H A Dphp_hash.h52 size_t block_size; member
/PHP-8.1/ext/opcache/
H A Dzend_shared_alloc.c320 size_t block_size = ZSMMG(shared_segments)[i]->end - ZSMMG(shared_segments)[i]->pos; in zend_shared_alloc_get_largest_free_block() local
322 if (block_size>largest_block_size) { in zend_shared_alloc_get_largest_free_block()
323 largest_block_size = block_size; in zend_shared_alloc_get_largest_free_block()
341 unsigned int block_size = ZEND_ALIGNED_SIZE(size); in zend_shared_alloc() local
348 if (block_size > ZSMMG(shared_free)) { /* No hope to find a big-enough block */ in zend_shared_alloc()
353 …if (ZSMMG(shared_segments)[i]->end - ZSMMG(shared_segments)[i]->pos >= block_size) { /* found a va… in zend_shared_alloc()
356 ZSMMG(shared_segments)[i]->pos += block_size; in zend_shared_alloc()
357 ZSMMG(shared_free) -= block_size; in zend_shared_alloc()
/PHP-8.1/ext/bz2/
H A Dbz2.stub.php48 function bzcompress(string $data, int $block_size = 4, int $work_factor = 0): string|int {} argument
H A Dbz2_arginfo.h40 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, block_size, IS_LONG, 0, "4")
H A Dbz2.c450 block_size = 4, /* Block size for compression algorithm */ in PHP_FUNCTION() local
471 block_size = zblock_size; in PHP_FUNCTION()
478 …error = BZ2_bzBuffToBuffCompress(ZSTR_VAL(dest), &dest_len, source, source_len, block_size, 0, wor… in PHP_FUNCTION()
/PHP-8.1/ext/sodium/
H A Dlibsodium.stub.php220 function sodium_pad(string $string, int $block_size): string {} argument
222 function sodium_unpad(string $string, int $block_size): string {} argument
H A Dlibsodium_arginfo.h468 ZEND_ARG_TYPE_INFO(0, block_size, IS_LONG, 0)
/PHP-8.1/ext/fileinfo/tests/
H A Dmagic8685 # - 0x04 == 0x00200000: GameCube/Wii CISO (block_size)
13184 # - 0x04 == 0x00200000: GameCube/Wii CISO (block_size)
H A Dmagic私はガラスを食べられます8685 # - 0x04 == 0x00200000: GameCube/Wii CISO (block_size)
13184 # - 0x04 == 0x00200000: GameCube/Wii CISO (block_size)

Completed in 275 milliseconds