Searched defs:bits (Results 1 - 9 of 9) sorted by relevance
| /PHP_5_3/Zend/ |
| H A D | zend_strtod.c | 79 * #define Just_16 to store 16 bits per 32-bit Long when doing high-precision 345 #define Ebits 8 /* exponent has 7 bits, but 8 is the right value in b2d */ 407 /* When Pack_32 is not defined, we store 16 bits per 32-bit Long. 410 * * slower. Hence the default is now to store 32 bits per Long. 1097 static Bigint * d2b(double _d, int *e, int *bits) argument 1200 *bits = 4*P + 8 - k - hi0bits(word0(d) & Frac_mask); 1203 *bits = P - k; 1209 *bits = 32*i - hi0bits(x[i-1]); 1211 *bits = (i+2)*16 - hi0bits(x[i]); 1420 * compute with fewer bits an [all...] |
| /PHP_5_3/ext/hash/ |
| H A D | hash_haval.c | 291 /* Update number of bits */ 325 unsigned char bits[10]; local 329 bits[0] = (PHP_HASH_HAVAL_VERSION & 0x07) | 332 bits[1] = (context->output >> 2); 334 /* Save number of bits */ 335 Encode(bits + 2, context->count, 8); 344 PHP_HAVALUpdate(context, bits, 10); 379 unsigned char bits[10]; local 383 bits[0] = (PHP_HASH_HAVAL_VERSION & 0x07) | 386 bits[ 433 unsigned char bits[10]; local 473 unsigned char bits[10]; local 514 unsigned char bits[10]; local [all...] |
| H A D | hash_md.c | 236 /* ROTATE_LEFT rotates x left n bits. 292 /* Update number of bits */ 327 unsigned char bits[8]; local 330 /* Save number of bits */ 331 Encode(bits, context->count, 8); 340 PHP_MD5Update(context, bits, 8); 551 /* Update number of bits */ 585 unsigned char bits[8]; local 588 /* Save number of bits */ 589 Encode(bits, contex [all...] |
| H A D | hash_ripemd.c | 263 /* Update number of bits */ 361 /* Update number of bits */ 460 /* Update number of bits */ 568 /* Update number of bits */ 626 unsigned char bits[8]; local 629 /* Save number of bits */ 630 bits[0] = (unsigned char) (context->count[0] & 0xFF); 631 bits[1] = (unsigned char) ((context->count[0] >> 8) & 0xFF); 632 bits[2] = (unsigned char) ((context->count[0] >> 16) & 0xFF); 633 bits[ 663 unsigned char bits[8]; local 700 unsigned char bits[8]; local 737 unsigned char bits[8]; local [all...] |
| H A D | hash_sha.c | 170 /* ROTATE_LEFT rotates x left n bits. 341 /* Update number of bits */ 376 unsigned char bits[8]; local 379 /* Save number of bits */ 380 bits[7] = context->count[0] & 0xFF; 381 bits[6] = (context->count[0] >> 8) & 0xFF; 382 bits[5] = (context->count[0] >> 16) & 0xFF; 383 bits[4] = (context->count[0] >> 24) & 0xFF; 384 bits[3] = context->count[1] & 0xFF; 385 bits[ 583 unsigned char bits[8]; local 660 unsigned char bits[8]; local 874 unsigned char bits[16]; local 988 unsigned char bits[16]; local [all...] |
| H A D | php_hash_whirlpool.h | 30 int bits; member in struct:__anon77::__anon78
|
| /PHP_5_3/ext/standard/ |
| H A D | image.c | 64 unsigned int bits; member in struct:gfxinfo 114 result->bits = dim[4]&0x80 ? ((((unsigned int)dim[4])&0x07) + 1) : 0; 161 result->bits = ((unsigned int)dim[11]); 166 result->bits = (((unsigned int)dim[15]) << 8) + ((unsigned int)dim[14]); 198 long bits; local 249 bits = php_swf_get_bits (b, 0, 5); 250 result->width = (php_swf_get_bits (b, 5 + bits, bits) - 251 php_swf_get_bits (b, 5, bits)) / 20; 252 result->height = (php_swf_get_bits (b, 5 + (3 * bits), bit 269 long bits; local 885 short width, height, bits; local [all...] |
| H A D | sha1.c | 129 /* ROTATE_LEFT rotates x left n bits. 191 /* Update number of bits */ 226 unsigned char bits[8]; local 229 /* Save number of bits */ 230 bits[7] = context->count[0] & 0xFF; 231 bits[6] = (context->count[0] >> 8) & 0xFF; 232 bits[5] = (context->count[0] >> 16) & 0xFF; 233 bits[4] = (context->count[0] >> 24) & 0xFF; 234 bits[3] = context->count[1] & 0xFF; 235 bits[ [all...] |
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd.c | 1616 zend_uchar bits[1]; local 1620 int1store(bits, options); 1622 DBG_RETURN(conn->m->simple_command(conn, COM_REFRESH, (char *)bits, 1, PROT_OK_PACKET, FALSE, TRUE TSRMLS_CC)); 1631 zend_uchar bits[1]; local 1635 int1store(bits, level); 1637 DBG_RETURN(conn->m->simple_command(conn, COM_SHUTDOWN, (char *)bits, 1, PROT_OK_PACKET, FALSE, TRUE TSRMLS_CC));
|
Completed in 15 milliseconds