| /PHP_5_5/ext/standard/ |
| H A D | crypt_sha256.c | 84 /* This array contains the bytes used to pad the buffer to the next 110 /* Process LEN bytes of BUFFER, accumulating context into CTX. 128 number of bytes. Do a double word increment. */ 134 /* Process all bytes in the buffer with 64 bytes in each round of 225 /* Process the remaining bytes in the internal buffer and the usual 231 /* Take yet unprocessed bytes into account. */ 232 uint32_t bytes = ctx->buflen; local 236 /* Now count remaining bytes. */ 237 ctx->total[0] += bytes; [all...] |
| H A D | crypt_sha512.c | 86 /* This array contains the bytes used to pad the buffer to the next 135 /* Process LEN bytes of BUFFER, accumulating context into CTX. 152 number of bytes. Do a double word increment. */ 158 /* Process all bytes in the buffer with 128 bytes in each round of 252 /* Process the remaining bytes in the internal buffer and the usual 258 /* Take yet unprocessed bytes into account. */ 259 uint64_t bytes = ctx->buflen; local 263 /* Now count remaining bytes. */ 264 ctx->total[0] += bytes; [all...] |
| H A D | file.c | 566 Write/Create a file with contents data and return the number of bytes written */ 640 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only %d of %d bytes written, possibly out of free disk space", numbytes, Z_STRLEN_P(data)); 663 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to write %d bytes to %s", Z_STRLEN_PP(tmp), filename); 665 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only %d of %d bytes written, possibly out of free disk space", bytes_written, Z_STRLEN_PP(tmp)); 683 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only %d of %d bytes written, possibly out of free disk space", numbytes, Z_STRLEN(out)); 1076 long bytes = 0; local 1084 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|ls", &fd, &bytes, &allowed_tags, &allowed_tags_len) == FAILURE) { 1091 if (bytes <= 0) { 1096 len = (size_t) bytes;
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 282 add_bytes(regex_t* reg, UChar* bytes, int len) argument 284 BBUF_ADD(reg, bytes, len);
|
| /PHP_5_5/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 1298 ac_uint4 bytes; local 1355 if ((bytes = sizeof(ac_uint2) * (NUMPROPS + 1)) & 3) 1356 bytes += 4 - (bytes & 3); 1357 nprops = bytes / sizeof(ac_uint2); 1358 bytes += sizeof(ac_uint4) * idx; 1410 fwrite((char *) &bytes, sizeof(ac_uint4), 1, out); 1566 bytes = comps_used * sizeof(_comp_t); 1567 fwrite((char *) &bytes, sizeof(ac_uint4), 1, out); 1644 bytes [all...] |
| /PHP_5_5/ext/dom/ |
| H A D | document.c | 1748 int file_len = 0, bytes, format, saveempty = 0; local 1773 bytes = xmlSaveFormatFileEnc(file, docp, NULL, format); 1777 if (bytes == -1) { 1780 RETURN_LONG(bytes); 2257 int file_len, bytes, format; local 2279 bytes = htmlSaveFileFormat(file, docp, encoding, format); 2281 if (bytes == -1) { 2284 RETURN_LONG(bytes);
|
| H A D | node.c | 1916 int bytes; local 1918 bytes = xmlOutputBufferClose(buf); 1920 RETURN_LONG(bytes);
|
| /PHP_5_5/ext/gd/libgd/ |
| H A D | xbm.c | 44 int bytes = 0, i; local 80 bytes = (width * height / 8) + 1; 81 if (!bytes) { 95 if (!bytes || !max_bit) { 106 for (i = 0; i < bytes; i++) {
|
| /PHP_5_5/ext/hash/ |
| H A D | hash.c | 642 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Supplied salt is too long, max of INT_MAX - 4 bytes: %d supplied", salt_len); 883 /* {{{ proto string mhash_keygen_s2k(int hash, string input_password, string salt, int bytes) 888 int bytes; local 897 bytes = (int)l_bytes; 898 if (bytes <= 0){ 922 int times = bytes / block_size; 923 if (bytes % block_size != 0) times++; 943 RETVAL_STRINGL(key, bytes, 1); 944 memset(key, 0, bytes); 1164 ZEND_ARG_INFO(0, bytes) [all...] |
| /PHP_5_5/ext/shmop/ |
| H A D | shmop.c | 245 int bytes; local 265 bytes = count ? count : shmop->size - start; 267 return_string = emalloc(bytes+1); 268 memcpy(return_string, startaddr, bytes); 269 return_string[bytes] = 0; 271 RETURN_STRINGL(return_string, bytes, 0);
|
| /PHP_5_5/main/ |
| H A D | rfc1867.c | 233 * Returns number of bytes added to buffer. 249 /* read the required number of bytes */ 270 /* eof if we are out of bytes, or if we hit the final boundary */ 604 static int multipart_buffer_read(multipart_buffer *self, char *buf, int bytes, int *end TSRMLS_DC) argument 610 if (bytes > self->bytes_in_buffer) { 624 /* maximum number of bytes we are reading */ 625 len = max < bytes-1 ? max : bytes-1; 707 sapi_module.sapi_error(E_WARNING, "POST Content-Length of %ld bytes exceeds the limit of %ld bytes", S [all...] |
| /PHP_5_5/sapi/webjames/ |
| H A D | webjames.c | 48 int bytes; local 49 bytes = webjames_writebuffer(WG(conn),str,str_length); 50 if (bytes<0) { 55 return bytes; 57 str += bytes; 58 str_length -= bytes; 59 totalbytes += bytes; 71 int bytes; local 72 bytes = webjames_writebuffer(WG(conn), header, len); 73 if (bytes< [all...] |
| /PHP_5_5/ext/simplexml/ |
| H A D | simplexml.c | 1382 int bytes; local 1383 bytes = xmlSaveFile(filename, (xmlDocPtr) sxe->document->ptr); 1384 if (bytes == -1) {
|