Searched refs:block_size (Results 1 – 13 of 13) sorted by relevance
/PHP-8.0/ext/gd/libgd/ |
H A D | gd_pixelate.c | 3 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 D | gd.h | 722 int gdImagePixelate(gdImagePtr im, int block_size, const unsigned int mode);
|
/PHP-8.0/ext/hash/ |
H A D | hash.c | 468 memset(K, 0, ops->block_size); in php_hash_hmac_prep_key() 517 K = emalloc(ops->block_size); in php_hash_do_hash_hmac() 644 size_t i, block_size; in PHP_FUNCTION() local 646 memset(K, 0, ops->block_size); in PHP_FUNCTION() 659 block_size = ops->block_size; in PHP_FUNCTION() 786 size_t i, block_size; in PHP_FUNCTION() local 789 block_size = hash->ops->block_size; in PHP_FUNCTION() 919 K = emalloc(ops->block_size); in PHP_FUNCTION() 1012 K1 = emalloc(ops->block_size); in PHP_FUNCTION() 1013 K2 = emalloc(ops->block_size); in PHP_FUNCTION() [all …]
|
H A D | hash_sha3.c | 158 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 D | php_hash.h | 52 size_t block_size; member
|
/PHP-8.0/ext/opcache/ |
H A D | zend_shared_alloc.c | 318 size_t block_size = ZSMMG(shared_segments)[i]->end - ZSMMG(shared_segments)[i]->pos; in zend_shared_alloc_get_largest_free_block() local 320 if (block_size>largest_block_size) { in zend_shared_alloc_get_largest_free_block() 321 largest_block_size = block_size; in zend_shared_alloc_get_largest_free_block() 339 unsigned int block_size = ZEND_ALIGNED_SIZE(size); in zend_shared_alloc() local 346 if (block_size > ZSMMG(shared_free)) { /* No hope to find a big-enough block */ in zend_shared_alloc() 351 …if (ZSMMG(shared_segments)[i]->end - ZSMMG(shared_segments)[i]->pos >= block_size) { /* found a va… in zend_shared_alloc() 354 ZSMMG(shared_segments)[i]->pos += block_size; in zend_shared_alloc() 355 ZSMMG(shared_free) -= block_size; in zend_shared_alloc()
|
/PHP-8.0/ext/bz2/ |
H A D | bz2.stub.php | 41 function bzcompress(string $data, int $block_size = 4, int $work_factor = 0): string|int {} argument
|
H A D | bz2_arginfo.h | 40 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, block_size, IS_LONG, 0, "4")
|
H A D | bz2.c | 450 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.0/ext/sodium/ |
H A D | libsodium.stub.php | 173 function sodium_pad(string $string, int $block_size): string {} argument 175 function sodium_unpad(string $string, int $block_size): string {} argument
|
H A D | libsodium_arginfo.h | 371 ZEND_ARG_TYPE_INFO(0, block_size, IS_LONG, 0)
|
/PHP-8.0/ext/fileinfo/tests/ |
H A D | magic私はガラスを食べられます | 8301 # - 0x04 == 0x00200000: GameCube/Wii CISO (block_size) 12703 # - 0x04 == 0x00200000: GameCube/Wii CISO (block_size)
|
H A D | magic | 8301 # - 0x04 == 0x00200000: GameCube/Wii CISO (block_size) 12703 # - 0x04 == 0x00200000: GameCube/Wii CISO (block_size)
|
Completed in 199 milliseconds