| /PHP_TRUNK/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_TRUNK/ext/session/ |
| H A D | mod_files.bat | 13 ECHO ^[hash_bits^] is the number of bits defined in session.hash_bits_per_character
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | webpimg.c | 18 * by the WebPDecode routine into 32 bits per pixel RGBA data 25 * 4. RGBAToYUV420: Generates Y, U, V data (with color subsampling) from 32 bits 253 * All 32-bits sizes are in little-endian order. 314 * routine into 32 bits per pixel RGBA data array. This data array can be 525 /* Generates Y, U, V data (with color subsampling) from 32 bits 585 /* Generates Y, U, V data (with color subsampling) from 32 bits 871 const uint32 bits = data[0] | (data[1] << 8) | (data[2] << 16); local 873 if ((bits & 1)) { /* Not a keyframe. */ 876 const int profile = (bits >> 1) & 7; 877 const int show_frame = (bits >> [all...] |
| /PHP_TRUNK/ext/dba/libcdb/ |
| H A D | uint32.h | 33 #error Need type which holds 32 bits
|
| /PHP_TRUNK/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 | hash_whirlpool.c | 278 int sourcePos = 0; /* index of leftmost source unsigned char containing data (1 to 8 bits). */ 280 int bufferRem = context->buffer.bits & 7; /* occupied bits on buffer[bufferPos]. */ 284 int bufferBits = context->buffer.bits; 300 * process data in chunks of 8 bits (a more efficient approach would be to take whole-word chunks): 336 b = (source[sourcePos] << sourceGap) & 0xff; /* bits are left-justified on b. */ 338 * process the remaining bits: 373 context->buffer.bits = bufferBits; 382 int bufferBits = context->buffer.bits; 389 bufferPos++; /* all remaining bits o [all...] |
| H A D | php_hash_whirlpool.h | 30 int bits; member in struct:__anon99::__anon100
|
| /PHP_TRUNK/ext/standard/ |
| H A D | basic_functions.h | 159 #error Need type which holds 32 bits
|
| 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...] |
| 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...] |
| /PHP_TRUNK/ |
| H A D | config.guess | 626 long bits = sysconf(_SC_KERNEL_BITS); 636 switch (bits)
|
| /PHP_TRUNK/ext/gd/ |
| H A D | gd.c | 4236 switch (str_img->bits[j * v_lines + i]) { 4240 c_ind = aa[str_img->bits[j * v_lines + i] - 1];
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd.c | 1806 zend_uchar bits[1]; local 1811 int1store(bits, options); 1813 ret = conn->m->simple_command(conn, COM_REFRESH, bits, 1, PROT_OK_PACKET, FALSE, TRUE TSRMLS_CC); 1828 zend_uchar bits[1]; local 1833 int1store(bits, level); 1835 ret = conn->m->simple_command(conn, COM_SHUTDOWN, bits, 1, PROT_OK_PACKET, FALSE, TRUE TSRMLS_CC);
|