state 361 fileinfo/libmagic/funcs.c mbstate_t state;
state 366 fileinfo/libmagic/funcs.c (void)memset(&state, 0, sizeof(mbstate_t));
state 374 fileinfo/libmagic/funcs.c (size_t)(eop - op), &state);
state 29 gd/libgd/gdhelpers.c s = *state;
state 35 gd/libgd/gdhelpers.c *state = s;
state 49 gd/libgd/gdhelpers.c *state = s;
state 60 gd/libgd/gdhelpers.c *state = s;
state 74 gd/libgd/gdhelpers.c *state = s;
state 27 hash/hash_adler32.c context->state = 1;
state 34 hash/hash_adler32.c s[0] = context->state & 0xffff;
state 35 hash/hash_adler32.c s[1] = (context->state >> 16) & 0xffff;
state 47 hash/hash_adler32.c context->state = s[0] + (s[1] << 16);
state 52 hash/hash_adler32.c digest[0] = (unsigned char) ((context->state >> 24) & 0xff);
state 53 hash/hash_adler32.c digest[1] = (unsigned char) ((context->state >> 16) & 0xff);
state 54 hash/hash_adler32.c digest[2] = (unsigned char) ((context->state >> 8) & 0xff);
state 55 hash/hash_adler32.c digest[3] = (unsigned char) (context->state & 0xff);
state 56 hash/hash_adler32.c context->state = 0;
state 61 hash/hash_adler32.c copy_context->state = orig_context->state;
state 28 hash/hash_crc32.c context->state = ~0;
state 36 hash/hash_crc32.c context->state = (context->state << 8) ^ crc32_table[(context->state >> 24) ^ (input[i] & 0xff)];
state 45 hash/hash_crc32.c context->state = (context->state >> 8) ^ crc32b_table[(context->state ^ input[i]) & 0xff];
state 51 hash/hash_crc32.c context->state=~context->state;
state 52 hash/hash_crc32.c digest[3] = (unsigned char) ((context->state >> 24) & 0xff);
state 53 hash/hash_crc32.c digest[2] = (unsigned char) ((context->state >> 16) & 0xff);
state 54 hash/hash_crc32.c digest[1] = (unsigned char) ((context->state >> 8) & 0xff);
state 55 hash/hash_crc32.c digest[0] = (unsigned char) (context->state & 0xff);
state 56 hash/hash_crc32.c context->state = 0;
state 61 hash/hash_crc32.c context->state=~context->state;
state 62 hash/hash_crc32.c digest[0] = (unsigned char) ((context->state >> 24) & 0xff);
state 63 hash/hash_crc32.c digest[1] = (unsigned char) ((context->state >> 16) & 0xff);
state 64 hash/hash_crc32.c digest[2] = (unsigned char) ((context->state >> 8) & 0xff);
state 65 hash/hash_crc32.c digest[3] = (unsigned char) (context->state & 0xff);
state 66 hash/hash_crc32.c context->state = 0;
state 71 hash/hash_crc32.c copy_context->state = orig_context->state;
state 72 hash/hash_fnv.c context->state = PHP_FNV1_32_INIT;
state 79 hash/hash_fnv.c context->state = fnv_32_buf((void *)input, inputLen, context->state, 0);
state 85 hash/hash_fnv.c context->state = fnv_32_buf((void *)input, inputLen, context->state, 1);
state 91 hash/hash_fnv.c memcpy(digest, &context->state, 4);
state 94 hash/hash_fnv.c unsigned char *c = (unsigned char *) &context->state;
state 107 hash/hash_fnv.c context->state = PHP_FNV1_64_INIT;
state 114 hash/hash_fnv.c context->state = fnv_64_buf((void *)input, inputLen, context->state, 0);
state 120 hash/hash_fnv.c context->state = fnv_64_buf((void *)input, inputLen, context->state, 1);
state 126 hash/hash_fnv.c memcpy(digest, &context->state, 8);
state 129 hash/hash_fnv.c unsigned char *c = (unsigned char *) &context->state;
state 213 hash/hash_gost.c php_hash_uint32 l, r, t, key[8], u[8], v[8], w[8], s[8], *h = state, *m = data;
state 215 hash/hash_gost.c memcpy(u, state, sizeof(u));
state 235 hash/hash_gost.c save = context->state[i + 8];
state 236 hash/hash_gost.c context->state[i + 8] += data[i] + temp;
state 237 hash/hash_gost.c temp = ((context->state[i + 8] < data[i]) || (context->state[i + 8] < save)) ? 1 : 0;
state 240 hash/hash_gost.c Gost(context->state, data);
state 291 hash/hash_gost.c Gost(context->state, l);
state 292 hash/hash_gost.c memcpy(l, &context->state[8], sizeof(l));
state 293 hash/hash_gost.c Gost(context->state, l);
state 296 hash/hash_gost.c digest[j] = (unsigned char) (context->state[i] & 0xff);
state 297 hash/hash_gost.c digest[j + 1] = (unsigned char) ((context->state[i] >> 8) & 0xff);
state 298 hash/hash_gost.c digest[j + 2] = (unsigned char) ((context->state[i] >> 16) & 0xff);
state 299 hash/hash_gost.c digest[j + 3] = (unsigned char) ((context->state[i] >> 24) & 0xff);
state 153 hash/hash_haval.c E[i] = state[i];
state 168 hash/hash_haval.c state[i] += E[i];
state 187 hash/hash_haval.c E[i] = state[i];
state 205 hash/hash_haval.c state[i] += E[i];
state 224 hash/hash_haval.c E[i] = state[i];
state 244 hash/hash_haval.c state[i] += E[i];
state 261 hash/hash_haval.c for(i = 0; i < 8; i++) context->state[i] = D0[i]; \
state 303 hash/hash_haval.c context->Transform(context->state, context->buffer);
state 306 hash/hash_haval.c context->Transform(context->state, &input[i]);
state 347 hash/hash_haval.c context->state[3] += (context->state[7] & 0xFF000000) |
state 348 hash/hash_haval.c (context->state[6] & 0x00FF0000) |
state 349 hash/hash_haval.c (context->state[5] & 0x0000FF00) |
state 350 hash/hash_haval.c (context->state[4] & 0x000000FF);
state 352 hash/hash_haval.c context->state[2] += (((context->state[7] & 0x00FF0000) |
state 353 hash/hash_haval.c (context->state[6] & 0x0000FF00) |
state 354 hash/hash_haval.c (context->state[5] & 0x000000FF)) << 8) |
state 355 hash/hash_haval.c ((context->state[4] & 0xFF000000) >> 24);
state 357 hash/hash_haval.c context->state[1] += (((context->state[7] & 0x0000FF00) |
state 358 hash/hash_haval.c (context->state[6] & 0x000000FF)) << 16) |
state 359 hash/hash_haval.c (((context->state[5] & 0xFF000000) |
state 360 hash/hash_haval.c (context->state[4] & 0x00FF0000)) >> 16);
state 362 hash/hash_haval.c context->state[0] += ((context->state[7] & 0x000000FF) << 24) |
state 363 hash/hash_haval.c (((context->state[6] & 0xFF000000) |
state 364 hash/hash_haval.c (context->state[5] & 0x00FF0000) |
state 365 hash/hash_haval.c (context->state[4] & 0x0000FF00)) >> 8);
state 367 hash/hash_haval.c Encode(digest, context->state, 16);
state 401 hash/hash_haval.c context->state[4] += ((context->state[7] & 0xFE000000) |
state 402 hash/hash_haval.c (context->state[6] & 0x01F80000) |
state 403 hash/hash_haval.c (context->state[5] & 0x0007F000)) >> 12;
state 405 hash/hash_haval.c context->state[3] += ((context->state[7] & 0x01F80000) |
state 406 hash/hash_haval.c (context->state[6] & 0x0007F000) |
state 407 hash/hash_haval.c (context->state[5] & 0x00000FC0)) >> 6;
state 409 hash/hash_haval.c context->state[2] += (context->state[7] & 0x0007F000) |
state 410 hash/hash_haval.c (context->state[6] & 0x00000FC0) |
state 411 hash/hash_haval.c (context->state[5] & 0x0000003F);
state 413 hash/hash_haval.c context->state[1] += ROTR((context->state[7] & 0x00000FC0) |
state 414 hash/hash_haval.c (context->state[6] & 0x0000003F) |
state 415 hash/hash_haval.c (context->state[5] & 0xFE000000), 25);
state 417 hash/hash_haval.c context->state[0] += ROTR((context->state[7] & 0x0000003F) |
state 418 hash/hash_haval.c (context->state[6] & 0xFE000000) |
state 419 hash/hash_haval.c (context->state[5] & 0x01F80000), 19);
state 421 hash/hash_haval.c Encode(digest, context->state, 20);
state 455 hash/hash_haval.c context->state[5] += ((context->state[7] & 0xFC000000) | (context->state[6] & 0x03E00000)) >> 21;
state 456 hash/hash_haval.c context->state[4] += ((context->state[7] & 0x03E00000) | (context->state[6] & 0x001F0000)) >> 16;
state 457 hash/hash_haval.c context->state[3] += ((context->state[7] & 0x001F0000) | (context->state[6] & 0x0000FC00)) >> 10;
state 458 hash/hash_haval.c context->state[2] += ((context->state[7] & 0x0000FC00) | (context->state[6] & 0x000003E0)) >> 5;
state 459 hash/hash_haval.c context->state[1] += (context->state[7] & 0x000003E0) | (context->state[6] & 0x0000001F);
state 460 hash/hash_haval.c context->state[0] += ROTR((context->state[7] & 0x0000001F) | (context->state[6] & 0xFC000000), 26);
state 461 hash/hash_haval.c Encode(digest, context->state, 24);
state 495 hash/hash_haval.c context->state[6] += context->state[7] & 0x0000000F;
state 496 hash/hash_haval.c context->state[5] += (context->state[7] >> 4) & 0x0000001F;
state 497 hash/hash_haval.c context->state[4] += (context->state[7] >> 9) & 0x0000000F;
state 498 hash/hash_haval.c context->state[3] += (context->state[7] >> 13) & 0x0000001F;
state 499 hash/hash_haval.c context->state[2] += (context->state[7] >> 18) & 0x0000000F;
state 500 hash/hash_haval.c context->state[1] += (context->state[7] >> 22) & 0x0000001F;
state 501 hash/hash_haval.c context->state[0] += (context->state[7] >> 27) & 0x0000001F;
state 502 hash/hash_haval.c Encode(digest, context->state, 28);
state 536 hash/hash_haval.c Encode(digest, context->state, 32);
state 40 hash/hash_joaat.c context->state = 0;
state 45 hash/hash_joaat.c context->state = joaat_buf((void *)input, inputLen, context->state);
state 51 hash/hash_joaat.c memcpy(digest, &context->state, 4);
state 54 hash/hash_joaat.c unsigned char *c = (unsigned char *) &context->state;
state 60 hash/hash_joaat.c context->state = 0;
state 272 hash/hash_md.c context->state[0] = 0x67452301;
state 273 hash/hash_md.c context->state[1] = 0xefcdab89;
state 274 hash/hash_md.c context->state[2] = 0x98badcfe;
state 275 hash/hash_md.c context->state[3] = 0x10325476;
state 305 hash/hash_md.c MD5Transform(context->state, context->buffer);
state 308 hash/hash_md.c MD5Transform(context->state, &input[i]);
state 343 hash/hash_md.c Encode(digest, context->state, 16);
state 358 hash/hash_md.c php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
state 434 hash/hash_md.c state[0] += a;
state 435 hash/hash_md.c state[1] += b;
state 436 hash/hash_md.c state[2] += c;
state 437 hash/hash_md.c state[3] += d;
state 460 hash/hash_md.c php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
state 518 hash/hash_md.c state[0] += a;
state 519 hash/hash_md.c state[1] += b;
state 520 hash/hash_md.c state[2] += c;
state 521 hash/hash_md.c state[3] += d;
state 532 hash/hash_md.c context->state[0] = 0x67452301;
state 533 hash/hash_md.c context->state[1] = 0xefcdab89;
state 534 hash/hash_md.c context->state[2] = 0x98badcfe;
state 535 hash/hash_md.c context->state[3] = 0x10325476;
state 563 hash/hash_md.c MD4Transform(context->state, context->buffer);
state 566 hash/hash_md.c MD4Transform(context->state, &input[i]);
state 601 hash/hash_md.c Encode(digest, context->state, 16);
state 639 hash/hash_md.c context->state[16+i] = block[i];
state 640 hash/hash_md.c context->state[32+i] = (context->state[16+i] ^ context->state[i]);
state 645 hash/hash_md.c t = context->state[j] = context->state[j] ^ MD2_S[t];
state 694 hash/hash_md.c memcpy(output, context->state, 16);
state 76 hash/hash_ripemd.c context->state[0] = 0x67452301;
state 77 hash/hash_ripemd.c context->state[1] = 0xEFCDAB89;
state 78 hash/hash_ripemd.c context->state[2] = 0x98BADCFE;
state 79 hash/hash_ripemd.c context->state[3] = 0x10325476;
state 91 hash/hash_ripemd.c context->state[0] = 0x67452301;
state 92 hash/hash_ripemd.c context->state[1] = 0xEFCDAB89;
state 93 hash/hash_ripemd.c context->state[2] = 0x98BADCFE;
state 94 hash/hash_ripemd.c context->state[3] = 0x10325476;
state 95 hash/hash_ripemd.c context->state[4] = 0x76543210;
state 96 hash/hash_ripemd.c context->state[5] = 0xFEDCBA98;
state 97 hash/hash_ripemd.c context->state[6] = 0x89ABCDEF;
state 98 hash/hash_ripemd.c context->state[7] = 0x01234567;
state 110 hash/hash_ripemd.c context->state[0] = 0x67452301;
state 111 hash/hash_ripemd.c context->state[1] = 0xEFCDAB89;
state 112 hash/hash_ripemd.c context->state[2] = 0x98BADCFE;
state 113 hash/hash_ripemd.c context->state[3] = 0x10325476;
state 114 hash/hash_ripemd.c context->state[4] = 0xC3D2E1F0;
state 126 hash/hash_ripemd.c context->state[0] = 0x67452301;
state 127 hash/hash_ripemd.c context->state[1] = 0xEFCDAB89;
state 128 hash/hash_ripemd.c context->state[2] = 0x98BADCFE;
state 129 hash/hash_ripemd.c context->state[3] = 0x10325476;
state 130 hash/hash_ripemd.c context->state[4] = 0xC3D2E1F0;
state 131 hash/hash_ripemd.c context->state[5] = 0x76543210;
state 132 hash/hash_ripemd.c context->state[6] = 0xFEDCBA98;
state 133 hash/hash_ripemd.c context->state[7] = 0x89ABCDEF;
state 134 hash/hash_ripemd.c context->state[8] = 0x01234567;
state 135 hash/hash_ripemd.c context->state[9] = 0x3C2D1E0F;
state 205 hash/hash_ripemd.c php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3];
state 206 hash/hash_ripemd.c php_hash_uint32 aa = state[0], bb = state[1], cc = state[2], dd = state[3];
state 240 hash/hash_ripemd.c tmp = state[1] + c + dd;
state 241 hash/hash_ripemd.c state[1] = state[2] + d + aa;
state 242 hash/hash_ripemd.c state[2] = state[3] + a + bb;
state 243 hash/hash_ripemd.c state[3] = state[0] + b + cc;
state 244 hash/hash_ripemd.c state[0] = tmp;
state 275 hash/hash_ripemd.c RIPEMD128Transform(context->state, context->buffer);
state 278 hash/hash_ripemd.c RIPEMD128Transform(context->state, &input[i]);
state 296 hash/hash_ripemd.c php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3];
state 297 hash/hash_ripemd.c php_hash_uint32 aa = state[4], bb = state[5], cc = state[6], dd = state[7];
state 335 hash/hash_ripemd.c state[0] += a;
state 336 hash/hash_ripemd.c state[1] += b;
state 337 hash/hash_ripemd.c state[2] += c;
state 338 hash/hash_ripemd.c state[3] += d;
state 339 hash/hash_ripemd.c state[4] += aa;
state 340 hash/hash_ripemd.c state[5] += bb;
state 341 hash/hash_ripemd.c state[6] += cc;
state 342 hash/hash_ripemd.c state[7] += dd;
state 373 hash/hash_ripemd.c RIPEMD256Transform(context->state, context->buffer);
state 376 hash/hash_ripemd.c RIPEMD256Transform(context->state, &input[i]);
state 394 hash/hash_ripemd.c php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3], e = state[4];
state 395 hash/hash_ripemd.c php_hash_uint32 aa = state[0], bb = state[1], cc = state[2], dd = state[3], ee = state[4];
state 436 hash/hash_ripemd.c tmp = state[1] + c + dd;
state 437 hash/hash_ripemd.c state[1] = state[2] + d + ee;
state 438 hash/hash_ripemd.c state[2] = state[3] + e + aa;
state 439 hash/hash_ripemd.c state[3] = state[4] + a + bb;
state 440 hash/hash_ripemd.c state[4] = state[0] + b + cc;
state 441 hash/hash_ripemd.c state[0] = tmp;
state 472 hash/hash_ripemd.c RIPEMD160Transform(context->state, context->buffer);
state 475 hash/hash_ripemd.c RIPEMD160Transform(context->state, &input[i]);
state 493 hash/hash_ripemd.c php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3], e = state[4];
state 494 hash/hash_ripemd.c php_hash_uint32 aa = state[5], bb = state[6], cc = state[7], dd = state[8], ee = state[9];
state 540 hash/hash_ripemd.c state[0] += a;
state 541 hash/hash_ripemd.c state[1] += b;
state 542 hash/hash_ripemd.c state[2] += c;
state 543 hash/hash_ripemd.c state[3] += d;
state 544 hash/hash_ripemd.c state[4] += e;
state 545 hash/hash_ripemd.c state[5] += aa;
state 546 hash/hash_ripemd.c state[6] += bb;
state 547 hash/hash_ripemd.c state[7] += cc;
state 548 hash/hash_ripemd.c state[8] += dd;
state 549 hash/hash_ripemd.c state[9] += ee;
state 580 hash/hash_ripemd.c RIPEMD320Transform(context->state, context->buffer);
state 583 hash/hash_ripemd.c RIPEMD320Transform(context->state, &input[i]);
state 649 hash/hash_ripemd.c RIPEMDEncode(digest, context->state, 16);
state 686 hash/hash_ripemd.c RIPEMDEncode(digest, context->state, 32);
state 723 hash/hash_ripemd.c RIPEMDEncode(digest, context->state, 20);
state 760 hash/hash_ripemd.c RIPEMDEncode(digest, context->state, 40);
state 211 hash/hash_sha.c context->state[0] = 0x67452301;
state 212 hash/hash_sha.c context->state[1] = 0xefcdab89;
state 213 hash/hash_sha.c context->state[2] = 0x98badcfe;
state 214 hash/hash_sha.c context->state[3] = 0x10325476;
state 215 hash/hash_sha.c context->state[4] = 0xc3d2e1f0;
state 224 hash/hash_sha.c php_hash_uint32 a = state[0], b = state[1], c = state[2];
state 225 hash/hash_sha.c php_hash_uint32 d = state[3], e = state[4], x[16], tmp;
state 317 hash/hash_sha.c state[0] += a;
state 318 hash/hash_sha.c state[1] += b;
state 319 hash/hash_sha.c state[2] += c;
state 320 hash/hash_sha.c state[3] += d;
state 321 hash/hash_sha.c state[4] += e;
state 354 hash/hash_sha.c SHA1Transform(context->state, context->buffer);
state 357 hash/hash_sha.c SHA1Transform(context->state, &input[i]);
state 399 hash/hash_sha.c SHAEncode32(digest, context->state, 20);
state 466 hash/hash_sha.c context->state[0] = 0x6a09e667;
state 467 hash/hash_sha.c context->state[1] = 0xbb67ae85;
state 468 hash/hash_sha.c context->state[2] = 0x3c6ef372;
state 469 hash/hash_sha.c context->state[3] = 0xa54ff53a;
state 470 hash/hash_sha.c context->state[4] = 0x510e527f;
state 471 hash/hash_sha.c context->state[5] = 0x9b05688c;
state 472 hash/hash_sha.c context->state[6] = 0x1f83d9ab;
state 473 hash/hash_sha.c context->state[7] = 0x5be0cd19;
state 482 hash/hash_sha.c php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3];
state 483 hash/hash_sha.c php_hash_uint32 e = state[4], f = state[5], g = state[6], h = state[7];
state 504 hash/hash_sha.c state[0] += a;
state 505 hash/hash_sha.c state[1] += b;
state 506 hash/hash_sha.c state[2] += c;
state 507 hash/hash_sha.c state[3] += d;
state 508 hash/hash_sha.c state[4] += e;
state 509 hash/hash_sha.c state[5] += f;
state 510 hash/hash_sha.c state[6] += g;
state 511 hash/hash_sha.c state[7] += h;
state 526 hash/hash_sha.c context->state[0] = 0xc1059ed8;
state 527 hash/hash_sha.c context->state[1] = 0x367cd507;
state 528 hash/hash_sha.c context->state[2] = 0x3070dd17;
state 529 hash/hash_sha.c context->state[3] = 0xf70e5939;
state 530 hash/hash_sha.c context->state[4] = 0xffc00b31;
state 531 hash/hash_sha.c context->state[5] = 0x68581511;
state 532 hash/hash_sha.c context->state[6] = 0x64f98fa7;
state 533 hash/hash_sha.c context->state[7] = 0xbefa4fa4;
state 561 hash/hash_sha.c SHA256Transform(context->state, context->buffer);
state 564 hash/hash_sha.c SHA256Transform(context->state, &input[i]);
state 606 hash/hash_sha.c SHAEncode32(digest, context->state, 28);
state 638 hash/hash_sha.c SHA256Transform(context->state, context->buffer);
state 641 hash/hash_sha.c SHA256Transform(context->state, &input[i]);
state 683 hash/hash_sha.c SHAEncode32(digest, context->state, 32);
state 775 hash/hash_sha.c context->state[0] = L64(0xcbbb9d5dc1059ed8);
state 776 hash/hash_sha.c context->state[1] = L64(0x629a292a367cd507);
state 777 hash/hash_sha.c context->state[2] = L64(0x9159015a3070dd17);
state 778 hash/hash_sha.c context->state[3] = L64(0x152fecd8f70e5939);
state 779 hash/hash_sha.c context->state[4] = L64(0x67332667ffc00b31);
state 780 hash/hash_sha.c context->state[5] = L64(0x8eb44a8768581511);
state 781 hash/hash_sha.c context->state[6] = L64(0xdb0c2e0d64f98fa7);
state 782 hash/hash_sha.c context->state[7] = L64(0x47b5481dbefa4fa4);
state 792 hash/hash_sha.c php_hash_uint64 a = state[0], b = state[1], c = state[2], d = state[3];
state 793 hash/hash_sha.c php_hash_uint64 e = state[4], f = state[5], g = state[6], h = state[7];
state 814 hash/hash_sha.c state[0] += a;
state 815 hash/hash_sha.c state[1] += b;
state 816 hash/hash_sha.c state[2] += c;
state 817 hash/hash_sha.c state[3] += d;
state 818 hash/hash_sha.c state[4] += e;
state 819 hash/hash_sha.c state[5] += f;
state 820 hash/hash_sha.c state[6] += g;
state 821 hash/hash_sha.c state[7] += h;
state 852 hash/hash_sha.c SHA512Transform(context->state, context->buffer);
state 855 hash/hash_sha.c SHA512Transform(context->state, &input[i]);
state 905 hash/hash_sha.c SHAEncode64(digest, context->state, 48);
state 931 hash/hash_sha.c context->state[0] = L64(0x6a09e667f3bcc908);
state 932 hash/hash_sha.c context->state[1] = L64(0xbb67ae8584caa73b);
state 933 hash/hash_sha.c context->state[2] = L64(0x3c6ef372fe94f82b);
state 934 hash/hash_sha.c context->state[3] = L64(0xa54ff53a5f1d36f1);
state 935 hash/hash_sha.c context->state[4] = L64(0x510e527fade682d1);
state 936 hash/hash_sha.c context->state[5] = L64(0x9b05688c2b3e6c1f);
state 937 hash/hash_sha.c context->state[6] = L64(0x1f83d9abfb41bd6b);
state 938 hash/hash_sha.c context->state[7] = L64(0x5be0cd19137e2179);
state 966 hash/hash_sha.c SHA512Transform(context->state, context->buffer);
state 969 hash/hash_sha.c SHA512Transform(context->state, &input[i]);
state 1019 hash/hash_sha.c SHAEncode64(digest, context->state, 64);
state 128 hash/hash_snefru.c context->state[8+j] = ((input[i] & 0xff) << 24) | ((input[i+1] & 0xff) << 16) |
state 131 hash/hash_snefru.c Snefru(context->state);
state 132 hash/hash_snefru.c memset(&context->state[8], 0, sizeof(php_hash_uint32) * 8);
state 182 hash/hash_snefru.c context->state[14] = context->count[0];
state 183 hash/hash_snefru.c context->state[15] = context->count[1];
state 184 hash/hash_snefru.c Snefru(context->state);
state 187 hash/hash_snefru.c digest[j] = (unsigned char) ((context->state[i] >> 24) & 0xff);
state 188 hash/hash_snefru.c digest[j + 1] = (unsigned char) ((context->state[i] >> 16) & 0xff);
state 189 hash/hash_snefru.c digest[j + 2] = (unsigned char) ((context->state[i] >> 8) & 0xff);
state 190 hash/hash_snefru.c digest[j + 3] = (unsigned char) (context->state[i] & 0xff);
state 125 hash/hash_tiger.c a = state[0]; \
state 126 hash/hash_tiger.c b = state[1]; \
state 127 hash/hash_tiger.c c = state[2]; \
state 133 hash/hash_tiger.c state[0] = a; \
state 134 hash/hash_tiger.c state[1] = b; \
state 135 hash/hash_tiger.c state[2] = c; \
state 151 hash/hash_tiger.c tiger_compress(context->passes, ((php_hash_uint64 *) context->buffer), context->state);
state 169 hash/hash_tiger.c tiger_compress(context->passes, ((php_hash_uint64 *) context->buffer), context->state);
state 177 hash/hash_tiger.c digest_str[i] = (unsigned char) ((context->state[i/8] >> (8 * (i%8))) & 0xff);
state 184 hash/hash_tiger.c context->state[0] = L64(0x0123456789ABCDEF);
state 185 hash/hash_tiger.c context->state[1] = L64(0xFEDCBA9876543210);
state 186 hash/hash_tiger.c context->state[2] = L64(0xF096A5B4C3B2E187);
state 193 hash/hash_tiger.c context->state[0] = L64(0x0123456789ABCDEF);
state 194 hash/hash_tiger.c context->state[1] = L64(0xFEDCBA9876543210);
state 195 hash/hash_tiger.c context->state[2] = L64(0xF096A5B4C3B2E187);
state 209 hash/hash_tiger.c tiger_compress(context->passes, ((const php_hash_uint64 *) context->buffer), context->state);
state 216 hash/hash_tiger.c tiger_compress(context->passes, ((const php_hash_uint64 *) context->buffer), context->state);
state 46 hash/hash_whirlpool.c php_hash_uint64 state[8]; /* the cipher state */
state 67 hash/hash_whirlpool.c state[0] = block[0] ^ (K[0] = context->state[0]);
state 68 hash/hash_whirlpool.c state[1] = block[1] ^ (K[1] = context->state[1]);
state 69 hash/hash_whirlpool.c state[2] = block[2] ^ (K[2] = context->state[2]);
state 70 hash/hash_whirlpool.c state[3] = block[3] ^ (K[3] = context->state[3]);
state 71 hash/hash_whirlpool.c state[4] = block[4] ^ (K[4] = context->state[4]);
state 72 hash/hash_whirlpool.c state[5] = block[5] ^ (K[5] = context->state[5]);
state 73 hash/hash_whirlpool.c state[6] = block[6] ^ (K[6] = context->state[6]);
state 74 hash/hash_whirlpool.c state[7] = block[7] ^ (K[7] = context->state[7]);
state 167 hash/hash_whirlpool.c C0[(int)(state[0] >> 56) ] ^
state 168 hash/hash_whirlpool.c C1[(int)(state[7] >> 48) & 0xff] ^
state 169 hash/hash_whirlpool.c C2[(int)(state[6] >> 40) & 0xff] ^
state 170 hash/hash_whirlpool.c C3[(int)(state[5] >> 32) & 0xff] ^
state 171 hash/hash_whirlpool.c C4[(int)(state[4] >> 24) & 0xff] ^
state 172 hash/hash_whirlpool.c C5[(int)(state[3] >> 16) & 0xff] ^
state 173 hash/hash_whirlpool.c C6[(int)(state[2] >> 8) & 0xff] ^
state 174 hash/hash_whirlpool.c C7[(int)(state[1] ) & 0xff] ^
state 177 hash/hash_whirlpool.c C0[(int)(state[1] >> 56) ] ^
state 178 hash/hash_whirlpool.c C1[(int)(state[0] >> 48) & 0xff] ^
state 179 hash/hash_whirlpool.c C2[(int)(state[7] >> 40) & 0xff] ^
state 180 hash/hash_whirlpool.c C3[(int)(state[6] >> 32) & 0xff] ^
state 181 hash/hash_whirlpool.c C4[(int)(state[5] >> 24) & 0xff] ^
state 182 hash/hash_whirlpool.c C5[(int)(state[4] >> 16) & 0xff] ^
state 183 hash/hash_whirlpool.c C6[(int)(state[3] >> 8) & 0xff] ^
state 184 hash/hash_whirlpool.c C7[(int)(state[2] ) & 0xff] ^
state 187 hash/hash_whirlpool.c C0[(int)(state[2] >> 56) ] ^
state 188 hash/hash_whirlpool.c C1[(int)(state[1] >> 48) & 0xff] ^
state 189 hash/hash_whirlpool.c C2[(int)(state[0] >> 40) & 0xff] ^
state 190 hash/hash_whirlpool.c C3[(int)(state[7] >> 32) & 0xff] ^
state 191 hash/hash_whirlpool.c C4[(int)(state[6] >> 24) & 0xff] ^
state 192 hash/hash_whirlpool.c C5[(int)(state[5] >> 16) & 0xff] ^
state 193 hash/hash_whirlpool.c C6[(int)(state[4] >> 8) & 0xff] ^
state 194 hash/hash_whirlpool.c C7[(int)(state[3] ) & 0xff] ^
state 197 hash/hash_whirlpool.c C0[(int)(state[3] >> 56) ] ^
state 198 hash/hash_whirlpool.c C1[(int)(state[2] >> 48) & 0xff] ^
state 199 hash/hash_whirlpool.c C2[(int)(state[1] >> 40) & 0xff] ^
state 200 hash/hash_whirlpool.c C3[(int)(state[0] >> 32) & 0xff] ^
state 201 hash/hash_whirlpool.c C4[(int)(state[7] >> 24) & 0xff] ^
state 202 hash/hash_whirlpool.c C5[(int)(state[6] >> 16) & 0xff] ^
state 203 hash/hash_whirlpool.c C6[(int)(state[5] >> 8) & 0xff] ^
state 204 hash/hash_whirlpool.c C7[(int)(state[4] ) & 0xff] ^
state 207 hash/hash_whirlpool.c C0[(int)(state[4] >> 56) ] ^
state 208 hash/hash_whirlpool.c C1[(int)(state[3] >> 48) & 0xff] ^
state 209 hash/hash_whirlpool.c C2[(int)(state[2] >> 40) & 0xff] ^
state 210 hash/hash_whirlpool.c C3[(int)(state[1] >> 32) & 0xff] ^
state 211 hash/hash_whirlpool.c C4[(int)(state[0] >> 24) & 0xff] ^
state 212 hash/hash_whirlpool.c C5[(int)(state[7] >> 16) & 0xff] ^
state 213 hash/hash_whirlpool.c C6[(int)(state[6] >> 8) & 0xff] ^
state 214 hash/hash_whirlpool.c C7[(int)(state[5] ) & 0xff] ^
state 217 hash/hash_whirlpool.c C0[(int)(state[5] >> 56) ] ^
state 218 hash/hash_whirlpool.c C1[(int)(state[4] >> 48) & 0xff] ^
state 219 hash/hash_whirlpool.c C2[(int)(state[3] >> 40) & 0xff] ^
state 220 hash/hash_whirlpool.c C3[(int)(state[2] >> 32) & 0xff] ^
state 221 hash/hash_whirlpool.c C4[(int)(state[1] >> 24) & 0xff] ^
state 222 hash/hash_whirlpool.c C5[(int)(state[0] >> 16) & 0xff] ^
state 223 hash/hash_whirlpool.c C6[(int)(state[7] >> 8) & 0xff] ^
state 224 hash/hash_whirlpool.c C7[(int)(state[6] ) & 0xff] ^
state 227 hash/hash_whirlpool.c C0[(int)(state[6] >> 56) ] ^
state 228 hash/hash_whirlpool.c C1[(int)(state[5] >> 48) & 0xff] ^
state 229 hash/hash_whirlpool.c C2[(int)(state[4] >> 40) & 0xff] ^
state 230 hash/hash_whirlpool.c C3[(int)(state[3] >> 32) & 0xff] ^
state 231 hash/hash_whirlpool.c C4[(int)(state[2] >> 24) & 0xff] ^
state 232 hash/hash_whirlpool.c C5[(int)(state[1] >> 16) & 0xff] ^
state 233 hash/hash_whirlpool.c C6[(int)(state[0] >> 8) & 0xff] ^
state 234 hash/hash_whirlpool.c C7[(int)(state[7] ) & 0xff] ^
state 237 hash/hash_whirlpool.c C0[(int)(state[7] >> 56) ] ^
state 238 hash/hash_whirlpool.c C1[(int)(state[6] >> 48) & 0xff] ^
state 239 hash/hash_whirlpool.c C2[(int)(state[5] >> 40) & 0xff] ^
state 240 hash/hash_whirlpool.c C3[(int)(state[4] >> 32) & 0xff] ^
state 241 hash/hash_whirlpool.c C4[(int)(state[3] >> 24) & 0xff] ^
state 242 hash/hash_whirlpool.c C5[(int)(state[2] >> 16) & 0xff] ^
state 243 hash/hash_whirlpool.c C6[(int)(state[1] >> 8) & 0xff] ^
state 244 hash/hash_whirlpool.c C7[(int)(state[0] ) & 0xff] ^
state 246 hash/hash_whirlpool.c state[0] = L[0];
state 247 hash/hash_whirlpool.c state[1] = L[1];
state 248 hash/hash_whirlpool.c state[2] = L[2];
state 249 hash/hash_whirlpool.c state[3] = L[3];
state 250 hash/hash_whirlpool.c state[4] = L[4];
state 251 hash/hash_whirlpool.c state[5] = L[5];
state 252 hash/hash_whirlpool.c state[6] = L[6];
state 253 hash/hash_whirlpool.c state[7] = L[7];
state 258 hash/hash_whirlpool.c context->state[0] ^= state[0] ^ block[0];
state 259 hash/hash_whirlpool.c context->state[1] ^= state[1] ^ block[1];
state 260 hash/hash_whirlpool.c context->state[2] ^= state[2] ^ block[2];
state 261 hash/hash_whirlpool.c context->state[3] ^= state[3] ^ block[3];
state 262 hash/hash_whirlpool.c context->state[4] ^= state[4] ^ block[4];
state 263 hash/hash_whirlpool.c context->state[5] ^= state[5] ^ block[5];
state 264 hash/hash_whirlpool.c context->state[6] ^= state[6] ^ block[6];
state 265 hash/hash_whirlpool.c context->state[7] ^= state[7] ^ block[7];
state 267 hash/hash_whirlpool.c memset(state, 0, sizeof(state));
state 422 hash/hash_whirlpool.c digest[0] = (unsigned char)(context->state[i] >> 56);
state 423 hash/hash_whirlpool.c digest[1] = (unsigned char)(context->state[i] >> 48);
state 424 hash/hash_whirlpool.c digest[2] = (unsigned char)(context->state[i] >> 40);
state 425 hash/hash_whirlpool.c digest[3] = (unsigned char)(context->state[i] >> 32);
state 426 hash/hash_whirlpool.c digest[4] = (unsigned char)(context->state[i] >> 24);
state 427 hash/hash_whirlpool.c digest[5] = (unsigned char)(context->state[i] >> 16);
state 428 hash/hash_whirlpool.c digest[6] = (unsigned char)(context->state[i] >> 8);
state 429 hash/hash_whirlpool.c digest[7] = (unsigned char)(context->state[i] );
state 27 hash/php_hash_adler32.h php_hash_uint32 state;
state 27 hash/php_hash_crc32.h php_hash_uint32 state;
state 49 hash/php_hash_fnv.h php_hash_uint32 state;
state 53 hash/php_hash_fnv.h php_hash_uint64 state;
state 28 hash/php_hash_gost.h php_hash_uint32 state[16];
state 27 hash/php_hash_haval.h php_hash_uint32 state[8];
state 33 hash/php_hash_haval.h void (*Transform)(php_hash_uint32 state[8], const unsigned char block[128]);
state 25 hash/php_hash_joaat.h php_hash_uint32 state;
state 63 hash/php_hash_md.h php_hash_uint32 state[4]; /* state (ABCD) */
state 79 hash/php_hash_md.h php_hash_uint32 state[4];
state 90 hash/php_hash_md.h unsigned char state[48];
state 27 hash/php_hash_ripemd.h php_hash_uint32 state[4]; /* state (ABCD) */
state 33 hash/php_hash_ripemd.h php_hash_uint32 state[5]; /* state (ABCD) */
state 39 hash/php_hash_ripemd.h php_hash_uint32 state[8]; /* state (ABCD) */
state 45 hash/php_hash_ripemd.h php_hash_uint32 state[10]; /* state (ABCD) */
state 39 hash/php_hash_sha.h php_hash_uint32 state[5]; /* state (ABCD) */
state 55 hash/php_hash_sha.h php_hash_uint32 state[8]; /* state */
state 66 hash/php_hash_sha.h php_hash_uint32 state[8]; /* state */
state 77 hash/php_hash_sha.h php_hash_uint64 state[8]; /* state */
state 88 hash/php_hash_sha.h php_hash_uint64 state[8]; /* state */
state 32 hash/php_hash_snefru.h php_hash_uint32 state[16];
state 26 hash/php_hash_tiger.h php_hash_uint64 state[3];
state 26 hash/php_hash_whirlpool.h php_hash_uint64 state[8];
state 2754 imap/php_imap.c } state;
state 2765 imap/php_imap.c state = ST_NORMAL;
state 2767 imap/php_imap.c if (state == ST_NORMAL) {
state 2778 imap/php_imap.c state = ST_DECODE0;
state 2785 imap/php_imap.c if (state == ST_DECODE1) {
state 2789 imap/php_imap.c state = ST_NORMAL;
state 2794 imap/php_imap.c switch (state) {
state 2797 imap/php_imap.c state = ST_DECODE0;
state 2803 imap/php_imap.c state++;
state 2811 imap/php_imap.c if (state != ST_NORMAL) {
state 2821 imap/php_imap.c state = ST_NORMAL;
state 2823 imap/php_imap.c if (state == ST_NORMAL) {
state 2825 imap/php_imap.c state = ST_DECODE0;
state 2832 imap/php_imap.c state = ST_NORMAL;
state 2836 imap/php_imap.c switch (state) {
state 2839 imap/php_imap.c state = ST_DECODE1;
state 2846 imap/php_imap.c state = ST_DECODE2;
state 2853 imap/php_imap.c state = ST_DECODE3;
state 2857 imap/php_imap.c state = ST_DECODE0;
state 2892 imap/php_imap.c } state;
state 2903 imap/php_imap.c state = ST_NORMAL;
state 2906 imap/php_imap.c if (state == ST_NORMAL) {
state 2908 imap/php_imap.c state = ST_ENCODE0;
state 2915 imap/php_imap.c state = ST_NORMAL;
state 2921 imap/php_imap.c if (state == ST_ENCODE2) {
state 2922 imap/php_imap.c state = ST_ENCODE0;
state 2924 imap/php_imap.c else if (state++ == ST_ENCODE0) {
state 2937 imap/php_imap.c state = ST_NORMAL;
state 2939 imap/php_imap.c while (inp < endp || state != ST_NORMAL) {
state 2940 imap/php_imap.c if (state == ST_NORMAL) {
state 2944 imap/php_imap.c state = ST_ENCODE0;
state 2950 imap/php_imap.c if (state != ST_ENCODE0) {
state 2955 imap/php_imap.c state = ST_NORMAL;
state 2958 imap/php_imap.c switch (state) {
state 2962 imap/php_imap.c state = ST_ENCODE1;
state 2968 imap/php_imap.c state = ST_ENCODE2;
state 2974 imap/php_imap.c state = ST_ENCODE0;
state 45 interbase/ibase_events.c event->state = DEAD;
state 210 interbase/ibase_events.c switch (event->state) {
state 245 interbase/ibase_events.c event->state = DEAD;
state 255 interbase/ibase_events.c event->state = ACTIVE;
state 342 interbase/ibase_events.c event->state = NEW;
state 391 interbase/ibase_events.c event->state = DEAD;
state 108 interbase/php_ibase_includes.h enum event_state { NEW, ACTIVE, DEAD } state;
state 245 json/JSON_parser.c jp->state = GO;
state 470 json/JSON_parser.c next_state = state_transition_table[jp->state][next_class];
state 476 json/JSON_parser.c if (next_state == ST && jp->state != U4) {
state 477 json/JSON_parser.c if (jp->state != ES) {
state 507 json/JSON_parser.c } else if (next_state == ST && jp->state == U4) {
state 522 json/JSON_parser.c } else if (type < IS_BOOL && ((jp->state == T3 && next_state == OK) || (jp->state == F4 && next_state == OK))) {
state 524 json/JSON_parser.c } else if (type < IS_NULL && jp->state == N3 && next_state == OK) {
state 529 json/JSON_parser.c jp->state = next_state;
state 541 json/JSON_parser.c jp->state = OK;
state 568 json/JSON_parser.c jp->state = OK;
state 588 json/JSON_parser.c jp->state = OK;
state 598 json/JSON_parser.c jp->state = OB;
state 630 json/JSON_parser.c jp->state = AR;
state 657 json/JSON_parser.c jp->state = CO;
state 664 json/JSON_parser.c jp->state = OK;
state 670 json/JSON_parser.c jp->state = OK;
state 705 json/JSON_parser.c jp->state = KE;
state 712 json/JSON_parser.c jp->state = VA;
state 726 json/JSON_parser.c jp->state = VA;
state 743 json/JSON_parser.c if (jp->state == OK && pop(jp, MODE_DONE)) {
state 13 json/JSON_parser.h int state;
state 32 mbstring/libmbfl/tests/conv_encoding.c int state = 0;
state 70 mbstring/libmbfl/tests/conv_encoding.c if (state == 1) {
state 71 mbstring/libmbfl/tests/conv_encoding.c state = 0;
state 76 mbstring/libmbfl/tests/conv_encoding.c state = 1;
state 31 mbstring/libmbfl/tests/conv_kana.c int state = 0;
state 116 mbstring/libmbfl/tests/conv_kana.c if (state == 1) {
state 117 mbstring/libmbfl/tests/conv_kana.c state = 0;
state 122 mbstring/libmbfl/tests/conv_kana.c state = 1;
state 53 mbstring/libmbfl/tests/emoji.c int state = 0;
state 33 mbstring/libmbfl/tests/strcut.c int state = 0;
state 79 mbstring/libmbfl/tests/strcut.c if (state == 1) {
state 80 mbstring/libmbfl/tests/strcut.c state = 0;
state 85 mbstring/libmbfl/tests/strcut.c state = 1;
state 20 mbstring/libmbfl/tests/strwidth.c int state = 0;
state 50 mbstring/libmbfl/tests/strwidth.c if (state == 1) {
state 51 mbstring/libmbfl/tests/strwidth.c state = 0;
state 56 mbstring/libmbfl/tests/strwidth.c state = 1;
state 3852 mbstring/mbstring.c int state = 0;
state 3879 mbstring/mbstring.c if (state == 0 || state == 1) {
state 3882 mbstring/mbstring.c state = 2;
state 3907 mbstring/mbstring.c if (state == 3) {
state 3910 mbstring/mbstring.c state = 4;
state 3913 mbstring/mbstring.c state = 5;
state 3919 mbstring/mbstring.c if (state == 1 || state == 3) {
state 3927 mbstring/mbstring.c switch (state) {
state 3932 mbstring/mbstring.c state = 1;
state 3941 mbstring/mbstring.c state = 3;
state 3970 mbstring/mbstring.c state = 1;
state 3976 mbstring/mbstring.c state = 3;
state 3992 mbstring/mbstring.c if (state == 2) {
state 3997 mbstring/mbstring.c state = 3;
state 3999 mbstring/mbstring.c if (state == 3) {
state 4015 mbstring/mbstring.c return state;
state 148 mbstring/oniguruma/enc/gb18030.c enum state state = S_START;
state 152 mbstring/oniguruma/enc/gb18030.c DEBUG_GB18030(("state %d --(%02x)-->\n", state, *p));
state 153 mbstring/oniguruma/enc/gb18030.c switch (state) {
state 159 mbstring/oniguruma/enc/gb18030.c state = S_one_C2; /* C2 */
state 162 mbstring/oniguruma/enc/gb18030.c state = S_one_C4; /* C4 */
state 165 mbstring/oniguruma/enc/gb18030.c state = S_one_CM; /* CM */
state 176 mbstring/oniguruma/enc/gb18030.c state = S_odd_CM_one_CX; /* CM C2 */
state 187 mbstring/oniguruma/enc/gb18030.c state = S_one_CMC4;
state 197 mbstring/oniguruma/enc/gb18030.c state = S_odd_C4CM;
state 200 mbstring/oniguruma/enc/gb18030.c state = S_odd_CM_one_CX; /* CM CM */
state 212 mbstring/oniguruma/enc/gb18030.c state = S_even_CM_one_CX;
state 223 mbstring/oniguruma/enc/gb18030.c state = S_odd_CM_one_CX;
state 234 mbstring/oniguruma/enc/gb18030.c state = S_one_C4_odd_CMC4; /* C4 CM C4 */
state 237 mbstring/oniguruma/enc/gb18030.c state = S_even_CM_one_CX; /* CM CM C4 */
state 247 mbstring/oniguruma/enc/gb18030.c state = S_one_C4_odd_CMC4;
state 250 mbstring/oniguruma/enc/gb18030.c state = S_odd_CM_odd_CMC4;
state 261 mbstring/oniguruma/enc/gb18030.c state = S_even_CMC4; /* CM C4 CM C4 */
state 271 mbstring/oniguruma/enc/gb18030.c state = S_one_C4_even_CMC4;
state 274 mbstring/oniguruma/enc/gb18030.c state = S_odd_CM_even_CMC4;
state 285 mbstring/oniguruma/enc/gb18030.c state = S_odd_CMC4;
state 297 mbstring/oniguruma/enc/gb18030.c state = S_even_CM_odd_CMC4;
state 308 mbstring/oniguruma/enc/gb18030.c state = S_odd_CM_odd_CMC4;
state 320 mbstring/oniguruma/enc/gb18030.c state = S_even_CM_even_CMC4;
state 331 mbstring/oniguruma/enc/gb18030.c state = S_odd_CM_even_CMC4;
state 343 mbstring/oniguruma/enc/gb18030.c state = S_one_CM_odd_C4CM; /* CM C4 CM */
state 353 mbstring/oniguruma/enc/gb18030.c state = S_even_C4CM;
state 356 mbstring/oniguruma/enc/gb18030.c state = S_even_CM_odd_C4CM;
state 367 mbstring/oniguruma/enc/gb18030.c state = S_one_CM_even_C4CM;
state 377 mbstring/oniguruma/enc/gb18030.c state = S_odd_C4CM;
state 380 mbstring/oniguruma/enc/gb18030.c state = S_even_CM_even_C4CM;
state 392 mbstring/oniguruma/enc/gb18030.c state = S_odd_CM_odd_C4CM;
state 403 mbstring/oniguruma/enc/gb18030.c state = S_even_CM_odd_C4CM;
state 415 mbstring/oniguruma/enc/gb18030.c state = S_odd_CM_even_C4CM;
state 426 mbstring/oniguruma/enc/gb18030.c state = S_even_CM_even_C4CM;
state 433 mbstring/oniguruma/enc/gb18030.c DEBUG_GB18030(("state %d\n", state));
state 434 mbstring/oniguruma/enc/gb18030.c switch (state) {
state 737 mbstring/oniguruma/oniguruma.h ((reg)->state > 0 ? ONIG_STATE_SEARCHING : (reg)->state)
state 745 mbstring/oniguruma/oniguruma.h int state; /* normal, searching, compiling */
state 1265 mbstring/oniguruma/regcomp.c node->state |= NST_ADDR_FIXED;
state 2015 mbstring/oniguruma/regcomp.c if (br->state & NST_RECURSION) break;
state 2182 mbstring/oniguruma/regcomp.c if (br->state & NST_RECURSION) {
state 3304 mbstring/oniguruma/regcomp.c int r = state;
state 3322 mbstring/oniguruma/regcomp.c ret = setup_comb_exp_check(NCONS(node).left, state, env);
state 3330 mbstring/oniguruma/regcomp.c int child_state = state;
state 3352 mbstring/oniguruma/regcomp.c child_state = state;
state 3361 mbstring/oniguruma/regcomp.c if (state & CEC_IN_FINITE_REPEAT) {
state 3376 mbstring/oniguruma/regcomp.c if (((state & CEC_IN_INFINITE_REPEAT) != 0 && var_num != 0) ||
state 3377 mbstring/oniguruma/regcomp.c ((state & CEC_CONT_BIG_REPEAT) != 0 &&
state 3403 mbstring/oniguruma/regcomp.c r = setup_comb_exp_check(en->target, state, env);
state 3408 mbstring/oniguruma/regcomp.c r = setup_comb_exp_check(en->target, state, env);
state 3419 mbstring/oniguruma/regcomp.c r = setup_comb_exp_check(NCALL(node).target, state, env);
state 3456 mbstring/oniguruma/regcomp.c r = setup_tree(NCONS(node).left, reg, state, env);
state 3467 mbstring/oniguruma/regcomp.c r = setup_tree(NCONS(node).left, reg, (state | IN_ALT), env);
state 3516 mbstring/oniguruma/regcomp.c if ((state & IN_REPEAT) != 0) {
state 3517 mbstring/oniguruma/regcomp.c qn->state |= NST_IN_REPEAT;
state 3546 mbstring/oniguruma/regcomp.c state |= IN_REPEAT;
state 3548 mbstring/oniguruma/regcomp.c state |= IN_VAR_REPEAT;
state 3549 mbstring/oniguruma/regcomp.c r = setup_tree(target, reg, state, env);
state 3599 mbstring/oniguruma/regcomp.c r = setup_tree(NEFFECT(node).target, reg, state, env);
state 3605 mbstring/oniguruma/regcomp.c if ((state & (IN_ALT | IN_NOT | IN_VAR_REPEAT)) != 0) {
state 3609 mbstring/oniguruma/regcomp.c r = setup_tree(en->target, reg, state, env);
state 3615 mbstring/oniguruma/regcomp.c r = setup_tree(target, reg, state, env);
state 3637 mbstring/oniguruma/regcomp.c r = setup_tree(an->target, reg, state, env);
state 3640 mbstring/oniguruma/regcomp.c r = setup_tree(an->target, reg, (state | IN_NOT), env);
state 3664 mbstring/oniguruma/regcomp.c r = setup_tree(an->target, reg, state, env);
state 3676 mbstring/oniguruma/regcomp.c r = setup_tree(an->target, reg, (state | IN_NOT), env);
state 4530 mbstring/oniguruma/regcomp.c if (br->state & NST_RECURSION) {
state 4999 mbstring/oniguruma/regcomp.c (to)->state = ONIG_STATE_MODIFY;\
state 5036 mbstring/oniguruma/regcomp.c reg->state = ONIG_STATE_MODIFY;
state 5081 mbstring/oniguruma/regcomp.c reg->state = ONIG_STATE_NORMAL;
state 5144 mbstring/oniguruma/regcomp.c reg->state = ONIG_STATE_COMPILING;
state 5293 mbstring/oniguruma/regcomp.c reg->state = ONIG_STATE_NORMAL;
state 5357 mbstring/oniguruma/regcomp.c (*reg)->state = ONIG_STATE_MODIFY;
state 312 mbstring/oniguruma/regexec.c } state;
state 555 mbstring/oniguruma/regexec.c int x = STATE_CHECK_POS(stk->u.state.pstr, stk->u.state.state_check);\
state 562 mbstring/oniguruma/regexec.c stk->u.state.pcode = (pat);\
state 563 mbstring/oniguruma/regexec.c stk->u.state.pstr = (s);\
state 564 mbstring/oniguruma/regexec.c stk->u.state.pstr_prev = (sprev);\
state 565 mbstring/oniguruma/regexec.c stk->u.state.state_check = 0;\
state 571 mbstring/oniguruma/regexec.c stk->u.state.pcode = (pat);\
state 572 mbstring/oniguruma/regexec.c stk->u.state.state_check = 0;\
state 579 mbstring/oniguruma/regexec.c stk->u.state.pcode = (pat);\
state 580 mbstring/oniguruma/regexec.c stk->u.state.pstr = (s);\
state 581 mbstring/oniguruma/regexec.c stk->u.state.pstr_prev = (sprev);\
state 582 mbstring/oniguruma/regexec.c stk->u.state.state_check = ((state_check_buff != NULL) ? (snum) : 0);\
state 590 mbstring/oniguruma/regexec.c stk->u.state.pstr = (s);\
state 591 mbstring/oniguruma/regexec.c stk->u.state.state_check = (snum);\
state 603 mbstring/oniguruma/regexec.c stk->u.state.pcode = (pat);\
state 604 mbstring/oniguruma/regexec.c stk->u.state.pstr = (s);\
state 605 mbstring/oniguruma/regexec.c stk->u.state.pstr_prev = (sprev);\
state 611 mbstring/oniguruma/regexec.c stk->u.state.pcode = (pat);\
state 1201 mbstring/oniguruma/regexec.c int state;
state 1212 mbstring/oniguruma/regexec.c if (ta->state == 0) { /* trap_exec() is not normal return */
state 1231 mbstring/oniguruma/regexec.c ta->state = 1; /* normal return */
state 1241 mbstring/oniguruma/regexec.c ta.state = 0;
state 2789 mbstring/oniguruma/regexec.c s = stkp->u.state.pstr;
state 2790 mbstring/oniguruma/regexec.c sprev = stkp->u.state.pstr_prev;
state 2879 mbstring/oniguruma/regexec.c p = stk->u.state.pcode;
state 2880 mbstring/oniguruma/regexec.c s = stk->u.state.pstr;
state 2881 mbstring/oniguruma/regexec.c sprev = stk->u.state.pstr_prev;
state 2884 mbstring/oniguruma/regexec.c if (stk->u.state.state_check != 0) {
state 137 mbstring/oniguruma/regint.h #define ONIG_STATE_INC(reg) (reg)->state++
state 138 mbstring/oniguruma/regint.h #define ONIG_STATE_DEC(reg) (reg)->state--
state 142 mbstring/oniguruma/regint.h (reg)->state++;\
state 147 mbstring/oniguruma/regint.h (reg)->state--;\
state 1265 mbstring/oniguruma/regparse.c NBACKREF(node).state = 0;
state 1269 mbstring/oniguruma/regparse.c NBACKREF(node).state |= NST_NAME_REF;
state 1273 mbstring/oniguruma/regparse.c NBACKREF(node).state |= NST_NEST_LEVEL;
state 1281 mbstring/oniguruma/regparse.c NBACKREF(node).state |= NST_RECURSION; /* /...(\1).../ */
state 1311 mbstring/oniguruma/regparse.c NCALL(node).state = 0;
state 1326 mbstring/oniguruma/regparse.c NQUANTIFIER(node).state = 0;
state 1336 mbstring/oniguruma/regparse.c NQUANTIFIER(node).state |= NST_BY_NUMBER;
state 1352 mbstring/oniguruma/regparse.c NEFFECT(node).state = 0;
state 3945 mbstring/oniguruma/regparse.c if (*state == CCS_RANGE)
state 3948 mbstring/oniguruma/regparse.c if (*state == CCS_VALUE && *type != CCV_CLASS) {
state 3957 mbstring/oniguruma/regparse.c *state = CCS_VALUE;
state 3970 mbstring/oniguruma/regparse.c switch (*state) {
state 4019 mbstring/oniguruma/regparse.c *state = CCS_COMPLETE;
state 4024 mbstring/oniguruma/regparse.c *state = CCS_VALUE;
state 4071 mbstring/oniguruma/regparse.c enum CCSTATE state;
state 4101 mbstring/oniguruma/regparse.c state = CCS_START;
state 4187 mbstring/oniguruma/regparse.c &state, env);
state 4213 mbstring/oniguruma/regparse.c r = next_state_class(cc, &vs, &val_type, &state, env);
state 4230 mbstring/oniguruma/regparse.c if (state == CCS_VALUE) {
state 4244 mbstring/oniguruma/regparse.c state = CCS_RANGE;
state 4246 mbstring/oniguruma/regparse.c else if (state == CCS_START) {
state 4260 mbstring/oniguruma/regparse.c else if (state == CCS_RANGE) {
state 4301 mbstring/oniguruma/regparse.c if (state == CCS_VALUE) {
state 4303 mbstring/oniguruma/regparse.c &val_type, &state, env);
state 4308 mbstring/oniguruma/regparse.c state = CCS_START;
state 4341 mbstring/oniguruma/regparse.c if (state == CCS_VALUE) {
state 4343 mbstring/oniguruma/regparse.c &val_type, &state, env);
state 122 mbstring/oniguruma/regparse.h int state;
state 153 mbstring/oniguruma/regparse.h #define SET_EFFECT_STATUS(node,f) (node)->u.effect.state |= (f)
state 154 mbstring/oniguruma/regparse.h #define CLEAR_EFFECT_STATUS(node,f) (node)->u.effect.state &= ~(f)
state 156 mbstring/oniguruma/regparse.h #define IS_EFFECT_CALLED(en) (((en)->state & NST_CALLED) != 0)
state 157 mbstring/oniguruma/regparse.h #define IS_EFFECT_ADDR_FIXED(en) (((en)->state & NST_ADDR_FIXED) != 0)
state 158 mbstring/oniguruma/regparse.h #define IS_EFFECT_RECURSION(en) (((en)->state & NST_RECURSION) != 0)
state 159 mbstring/oniguruma/regparse.h #define IS_EFFECT_MARK1(en) (((en)->state & NST_MARK1) != 0)
state 160 mbstring/oniguruma/regparse.h #define IS_EFFECT_MARK2(en) (((en)->state & NST_MARK2) != 0)
state 161 mbstring/oniguruma/regparse.h #define IS_EFFECT_MIN_FIXED(en) (((en)->state & NST_MIN_FIXED) != 0)
state 162 mbstring/oniguruma/regparse.h #define IS_EFFECT_MAX_FIXED(en) (((en)->state & NST_MAX_FIXED) != 0)
state 163 mbstring/oniguruma/regparse.h #define IS_EFFECT_CLEN_FIXED(en) (((en)->state & NST_CLEN_FIXED) != 0)
state 165 mbstring/oniguruma/regparse.h (((en)->state & NST_STOP_BT_SIMPLE_REPEAT) != 0)
state 166 mbstring/oniguruma/regparse.h #define IS_EFFECT_NAMED_GROUP(en) (((en)->state & NST_NAMED_GROUP) != 0)
state 168 mbstring/oniguruma/regparse.h #define SET_CALL_RECURSION(node) (node)->u.call.state |= NST_RECURSION
state 169 mbstring/oniguruma/regparse.h #define IS_CALL_RECURSION(cn) (((cn)->state & NST_RECURSION) != 0)
state 170 mbstring/oniguruma/regparse.h #define IS_CALL_NAME_REF(cn) (((cn)->state & NST_NAME_REF) != 0)
state 171 mbstring/oniguruma/regparse.h #define IS_BACKREF_NAME_REF(bn) (((bn)->state & NST_NAME_REF) != 0)
state 172 mbstring/oniguruma/regparse.h #define IS_BACKREF_NEST_LEVEL(bn) (((bn)->state & NST_NEST_LEVEL) != 0)
state 173 mbstring/oniguruma/regparse.h #define IS_QUANTIFIER_IN_REPEAT(qn) (((qn)->state & NST_IN_REPEAT) != 0)
state 174 mbstring/oniguruma/regparse.h #define IS_QUANTIFIER_BY_NUMBER(qn) (((qn)->state & NST_BY_NUMBER) != 0)
state 177 mbstring/oniguruma/regparse.h int state;
state 206 mbstring/oniguruma/regparse.h int state;
state 217 mbstring/oniguruma/regparse.h int state;
state 1000 mysqli/mysqli_nonapi.c uint minlength, maxlength, number, state;
state 1021 mysqli/mysqli_nonapi.c state = cs.state;
state 1035 mysqli/mysqli_nonapi.c state = 1; /* all charsets are compiled in */
state 1045 mysqli/mysqli_nonapi.c add_property_long(return_value, "state", state);
state 1085 mysqlnd/mysqlnd.c enum_mysqlnd_connection_state state = CONN_GET_STATE(conn);
state 1091 mysqlnd/mysqlnd.c if (state <= CONN_READY || state == CONN_QUIT_SENT) {
state 1093 mysqlnd/mysqlnd.c DBG_ERR_FMT("Connection not opened, clear or has been closed. State=%u", state);
state 1820 mysqlnd/mysqlnd.c DBG_RETURN(conn->state);
state 1831 mysqlnd/mysqlnd.c conn->state = new_state;
state 520 mysqlnd/mysqlnd_debug.c enum mysqlnd_debug_parser_state state = PARSER_WAIT_MODIFIER;
state 566 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 570 mysqlnd/mysqlnd_debug.c if (state != PARSER_WAIT_COLON) {
state 574 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_MODIFIER;
state 612 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 628 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 632 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 636 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 640 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 644 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 665 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 669 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 675 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 679 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 683 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 686 mysqlnd/mysqlnd_debug.c if (state == PARSER_WAIT_MODIFIER) {
state 699 mysqlnd/mysqlnd_debug.c state = PARSER_WAIT_COLON;
state 700 mysqlnd/mysqlnd_debug.c } else if (state == PARSER_WAIT_COLON) {
state 215 mysqlnd/mysqlnd_driver.c stmt->state = MYSQLND_STMT_INITTED;
state 83 mysqlnd/mysqlnd_ps.c stmt->state != MYSQLND_STMT_WAITING_USE_OR_STORE)
state 110 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_USE_OR_STORE_CALLED;
state 116 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_PREPARED;
state 151 mysqlnd/mysqlnd_ps.c if (CONN_GET_STATE(conn) != CONN_FETCHING_DATA || stmt->state != MYSQLND_STMT_WAITING_USE_OR_STORE) {
state 176 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_PREPARED;
state 180 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_PREPARED;
state 342 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_INITTED;
state 347 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_PREPARED;
state 378 mysqlnd/mysqlnd_ps.c if (stmt->state > MYSQLND_STMT_INITTED) {
state 380 mysqlnd/mysqlnd_ps.c if (stmt->state == MYSQLND_STMT_WAITING_USE_OR_STORE) {
state 386 mysqlnd/mysqlnd_ps.c if (stmt->state > MYSQLND_STMT_WAITING_USE_OR_STORE && stmt->result) {
state 454 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_PREPARED;
state 462 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_INITTED;
state 492 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_PREPARED;
state 505 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_EXECUTED;
state 524 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_WAITING_USE_OR_STORE;
state 599 mysqlnd/mysqlnd_ps.c if (stmt->result && stmt->state >= MYSQLND_STMT_PREPARED && stmt->field_count) {
state 608 mysqlnd/mysqlnd_ps.c stmt->state >= MYSQLND_STMT_USER_FETCHING)
state 640 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_PREPARED;
state 641 mysqlnd/mysqlnd_ps.c } else if (stmt->state < MYSQLND_STMT_PREPARED) {
state 954 mysqlnd/mysqlnd_ps.c (stmt->state != MYSQLND_STMT_WAITING_USE_OR_STORE))
state 970 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_USE_OR_STORE_CALLED;
state 999 mysqlnd/mysqlnd_ps.c if (stmt->state < MYSQLND_STMT_USER_FETCHING) {
state 1139 mysqlnd/mysqlnd_ps.c stmt->state < MYSQLND_STMT_WAITING_USE_OR_STORE) {
state 1144 mysqlnd/mysqlnd_ps.c } else if (stmt->state == MYSQLND_STMT_WAITING_USE_OR_STORE) {
state 1149 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_USER_FETCHING;
state 1253 mysqlnd/mysqlnd_ps.c if (stmt->state == MYSQLND_STMT_WAITING_USE_OR_STORE) {
state 1256 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_USER_FETCHING;
state 1293 mysqlnd/mysqlnd_ps.c if (stmt->state < MYSQLND_STMT_PREPARED) {
state 1394 mysqlnd/mysqlnd_ps.c if (stmt->state < MYSQLND_STMT_PREPARED) {
state 1465 mysqlnd/mysqlnd_ps.c if (stmt->state < MYSQLND_STMT_PREPARED) {
state 1521 mysqlnd/mysqlnd_ps.c if (stmt->state < MYSQLND_STMT_PREPARED) {
state 1550 mysqlnd/mysqlnd_ps.c if (stmt->state < MYSQLND_STMT_PREPARED) {
state 1604 mysqlnd/mysqlnd_ps.c if (stmt->state < MYSQLND_STMT_PREPARED) {
state 1936 mysqlnd/mysqlnd_ps.c if (stmt->state == MYSQLND_STMT_WAITING_USE_OR_STORE) {
state 1943 mysqlnd/mysqlnd_ps.c if (stmt->state > MYSQLND_STMT_WAITING_USE_OR_STORE) {
state 1957 mysqlnd/mysqlnd_ps.c if (stmt->state > MYSQLND_STMT_PREPARED) {
state 1959 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_PREPARED;
state 2155 mysqlnd/mysqlnd_ps.c if (stmt->state == MYSQLND_STMT_WAITING_USE_OR_STORE) {
state 2158 mysqlnd/mysqlnd_ps.c stmt->state = MYSQLND_STMT_USER_FETCHING;
state 520 mysqlnd/mysqlnd_result.c stmt->state = MYSQLND_STMT_INITTED;
state 853 mysqlnd/mysqlnd_structs.h enum mysqlnd_connection_state state;
state 990 mysqlnd/mysqlnd_structs.h enum_mysqlnd_stmt_state state;
state 867 odbc/php_odbc.c char state[6];
state 889 odbc/php_odbc.c rc = SQLError(henv, conn, stmt, state, &error, errormsg, sizeof(errormsg)-1, &errormsgsize);
state 891 odbc/php_odbc.c snprintf(state, sizeof(state), "HY000");
state 895 odbc/php_odbc.c memcpy(conn_resource->laststate, state, sizeof(state));
state 898 odbc/php_odbc.c memcpy(ODBCG(laststate), state, sizeof(state));
state 901 odbc/php_odbc.c php_error_docref(NULL TSRMLS_CC, E_WARNING, "SQL error: %s, SQL state %s in %s", errormsg, state, func);
state 903 odbc/php_odbc.c php_error_docref(NULL TSRMLS_CC, E_WARNING, "SQL error: %s, SQL state %s", errormsg, state);
state 1478 odbc/php_odbc.c char state[6]; /* Not used */
state 1484 odbc/php_odbc.c result->stmt, state, &error, errormsg,
state 1486 odbc/php_odbc.c if (!strncmp(state,"S1015",5)) {
state 1495 odbc/php_odbc.c php_error_docref(NULL TSRMLS_CC, E_WARNING, "SQL error: %s, SQL state %s", errormsg, state);
state 32 pdo/pdo_sqlstate.c const char state[5];
state 325 pdo/pdo_sqlstate.c zend_hash_add(&err_hash, info->state, sizeof(info->state), &info, sizeof(info), NULL);
state 334 pdo/pdo_sqlstate.c if (SUCCESS == zend_hash_find(&err_hash, state, sizeof(err_initializer[0].state),
state 93 pdo_dblib/pdo_dblib.c char *state = "HY000";
state 121 pdo_dblib/pdo_dblib.c case SYBEFCON: state = "01002"; break;
state 122 pdo_dblib/pdo_dblib.c case SYBEMEM: state = "HY001"; break;
state 123 pdo_dblib/pdo_dblib.c case SYBEPWD: state = "28000"; break;
state 125 pdo_dblib/pdo_dblib.c strcpy(einfo->sqlstate, state);
state 4119 pgsql/pgsql.c unsigned int state = 0;
state 4128 pgsql/pgsql.c switch (state)
state 4132 pgsql/pgsql.c state = 1;
state 4141 pgsql/pgsql.c state = 0;
state 4148 pgsql/pgsql.c state = 0;
state 4153 pgsql/pgsql.c state = 2;
state 4155 pgsql/pgsql.c state = 0;
state 4161 pgsql/pgsql.c state = 3;
state 4163 pgsql/pgsql.c state = 0;
state 4177 pgsql/pgsql.c state = 0;
state 4182 pgsql/pgsql.c state = 0;
state 431 readline/readline.c if (!state) {
state 411 readline/readline_cli.c if (!(*state % 2)) {
state 413 readline/readline_cli.c (*state)++;
state 428 readline/readline_cli.c (*state)++;
state 436 readline/readline_cli.c tmp = retval = cli_completion_generator_ht(text + 1, textlen - 1, state, EG(active_symbol_table), NULL TSRMLS_CC);
state 450 readline/readline_cli.c tmp = retval = cli_completion_generator_ht(text + 1, textlen - 1, state, EG(ini_directives), NULL TSRMLS_CC);
state 463 readline/readline_cli.c char *retval = cli_completion_generator_ht(text, textlen, state, ht, (void**)&func TSRMLS_CC);
state 475 readline/readline_cli.c char *retval = cli_completion_generator_ht(text, textlen, state, EG(class_table), (void**)&pce TSRMLS_CC);
state 487 readline/readline_cli.c char *retval = cli_completion_generator_ht(text, textlen, state, ht, (void**)&pce TSRMLS_CC);
state 100 spl/spl_iterators.c RecursiveIteratorState state;
state 218 spl/spl_iterators.c switch (object->iterators[object->level].state) {
state 233 spl/spl_iterators.c object->iterators[object->level].state = RS_TEST;
state 245 spl/spl_iterators.c object->iterators[object->level].state = RS_NEXT;
state 259 spl/spl_iterators.c object->iterators[object->level].state = RS_CHILD;
state 262 spl/spl_iterators.c object->iterators[object->level].state = RS_SELF;
state 269 spl/spl_iterators.c object->iterators[object->level].state = RS_NEXT;
state 278 spl/spl_iterators.c object->iterators[object->level].state = RS_NEXT;
state 292 spl/spl_iterators.c object->iterators[object->level].state = RS_CHILD;
state 294 spl/spl_iterators.c object->iterators[object->level].state = RS_NEXT;
state 314 spl/spl_iterators.c object->iterators[object->level].state = RS_NEXT;
state 328 spl/spl_iterators.c object->iterators[object->level].state = RS_SELF;
state 330 spl/spl_iterators.c object->iterators[object->level].state = RS_NEXT;
state 337 spl/spl_iterators.c object->iterators[object->level].state = RS_START;
state 391 spl/spl_iterators.c object->iterators[0].state = RS_START;
state 558 spl/spl_iterators.c intern->iterators[0].state = RS_START;
state 41310 sqlite3/libsqlite/sqlite3.c assert( pPager->state == (tempFile ? PAGER_EXCLUSIVE : PAGER_UNLOCK) );
state 43363 sqlite3/libsqlite/sqlite3.c int state = pPager->eState;
state 43364 sqlite3/libsqlite/sqlite3.c assert( state==PAGER_OPEN || state==PAGER_READER );
state 43365 sqlite3/libsqlite/sqlite3.c if( state==PAGER_OPEN ){
state 43375 sqlite3/libsqlite/sqlite3.c if( rc==SQLITE_OK && state==PAGER_READER ){
state 43377 sqlite3/libsqlite/sqlite3.c }else if( state==PAGER_OPEN ){
state 43380 sqlite3/libsqlite/sqlite3.c assert( state==pPager->eState );
state 107654 sqlite3/libsqlite/sqlite3.c u8 state = 0; /* Current state, using numbers defined in header comment */
state 107718 sqlite3/libsqlite/sqlite3.c if( *zSql==0 ) return state==1;
state 107799 sqlite3/libsqlite/sqlite3.c state = trans[state][token];
state 107802 sqlite3/libsqlite/sqlite3.c return state==1;
state 193 standard/basic_functions.h php_uint32 state[MT_N+1]; /* state vector + 1 extra to not violate ANSI C */
state 356 standard/dns.c struct __res_state state;
state 357 standard/dns.c struct __res_state *handle = &state;
state 394 standard/dns.c memset(&state, 0, sizeof(state));
state 726 standard/dns.c struct __res_state state;
state 727 standard/dns.c struct __res_state *handle = &state;
state 847 standard/dns.c memset(&state, 0, sizeof(state));
state 943 standard/dns.c struct __res_state state;
state 944 standard/dns.c struct __res_state *handle = &state;
state 965 standard/dns.c memset(&state, 0, sizeof(state));
state 2070 standard/file.c int state = 0;
state 2079 standard/file.c switch (state) {
state 2134 standard/file.c state = 0;
state 2146 standard/file.c switch (state) {
state 2149 standard/file.c state = 0;
state 2163 standard/file.c state = 0;
state 2167 standard/file.c state = 2;
state 2169 standard/file.c state = 1;
state 2177 standard/file.c switch (state) {
state 175 standard/filters.c int state;
state 190 standard/filters.c inst->state = 0;
state 220 standard/filters.c bucket->buflen = php_strip_tags(bucket->buf, bucket->buflen, &(inst->state), (char *)inst->allowed_tags, inst->allowed_tags_len);
state 1911 standard/filters.c php_chunked_filter_state state;
state 1924 standard/filters.c switch (data->state) {
state 1935 standard/filters.c } else if (data->state == CHUNK_SIZE_START) {
state 1936 standard/filters.c data->state = CHUNK_ERROR;
state 1939 standard/filters.c data->state = CHUNK_SIZE_EXT;
state 1942 standard/filters.c data->state = CHUNK_SIZE;
state 1945 standard/filters.c if (data->state == CHUNK_ERROR) {
state 1962 standard/filters.c data->state = CHUNK_SIZE_LF;
state 1971 standard/filters.c data->state = CHUNK_TRAILER;
state 1974 standard/filters.c data->state = CHUNK_BODY;
state 1978 standard/filters.c data->state = CHUNK_ERROR;
state 1990 standard/filters.c data->state = CHUNK_BODY_CR;
state 1998 standard/filters.c data->state=CHUNK_BODY;
state 2006 standard/filters.c data->state = CHUNK_BODY_LF;
state 2013 standard/filters.c data->state = CHUNK_SIZE_START;
state 2016 standard/filters.c data->state = CHUNK_ERROR;
state 2090 standard/filters.c data->state = CHUNK_SIZE_START;
state 161 standard/rand.c register php_uint32 *s = state;
state 162 standard/rand.c register php_uint32 *r = state;
state 180 standard/rand.c register php_uint32 *state = BG(state);
state 181 standard/rand.c register php_uint32 *p = state;
state 188 standard/rand.c *p = twist(p[M-N], p[0], state[0]);
state 190 standard/rand.c BG(next) = state;
state 199 standard/rand.c php_mt_initialize(seed, BG(state));
state 170 standard/sha1.c context->state[0] = 0x67452301;
state 171 standard/sha1.c context->state[1] = 0xefcdab89;
state 172 standard/sha1.c context->state[2] = 0x98badcfe;
state 173 standard/sha1.c context->state[3] = 0x10325476;
state 174 standard/sha1.c context->state[4] = 0xc3d2e1f0;
state 204 standard/sha1.c SHA1Transform(context->state, context->buffer);
state 207 standard/sha1.c SHA1Transform(context->state, &input[i]);
state 249 standard/sha1.c SHA1Encode(digest, context->state, 20);
state 264 standard/sha1.c php_uint32 a = state[0], b = state[1], c = state[2];
state 265 standard/sha1.c php_uint32 d = state[3], e = state[4], x[16], tmp;
state 357 standard/sha1.c state[0] += a;
state 358 standard/sha1.c state[1] += b;
state 359 standard/sha1.c state[2] += c;
state 360 standard/sha1.c state[3] += d;
state 361 standard/sha1.c state[4] += e;
state 28 standard/sha1.h php_uint32 state[5]; /* state (ABCD) */
state 1412 standard/string.c int state;
state 1416 standard/string.c state = 0;
state 1434 standard/string.c if (state == 1) {
state 1435 standard/string.c state = 0;
state 1439 standard/string.c if (state == 0) {
state 1441 standard/string.c state = 1;
state 1446 standard/string.c if (state == 0) {
state 1448 standard/string.c state = 1;
state 1457 standard/string.c if (state == 1) {
state 4255 standard/string.c int state=0, done=0;
state 4282 standard/string.c if (state == 0) {
state 4283 standard/string.c state=1;
state 4289 standard/string.c if (state == 1)
state 4338 standard/string.c int state = 0, pos;
state 4342 standard/string.c state = *stateptr;
state 4374 standard/string.c if (state == 0) {
state 4376 standard/string.c state = 1;
state 4385 standard/string.c } else if (state == 1) {
state 4391 standard/string.c if (state == 2) {
state 4396 standard/string.c } else if (allow && state == 1) {
state 4403 standard/string.c } else if (state == 0) {
state 4409 standard/string.c if (state == 2) {
state 4414 standard/string.c } else if (allow && state == 1) {
state 4421 standard/string.c } else if (state == 0) {
state 4436 standard/string.c switch (state) {
state 4439 standard/string.c in_q = state = 0;
state 4458 standard/string.c in_q = state = 0;
state 4464 standard/string.c in_q = state = 0;
state 4470 standard/string.c in_q = state = 0;
state 4483 standard/string.c if (state == 4) {
state 4486 standard/string.c } else if (state == 2 && *(p-1) != '\\') {
state 4492 standard/string.c } else if (state == 0) {
state 4494 standard/string.c } else if (allow && state == 1) {
state 4502 standard/string.c if (state && p != buf && (state == 1 || *(p-1) != '\\') && (!in_q || *p == in_q)) {
state 4513 standard/string.c if (state == 1 && *(p-1) == '<') {
state 4514 standard/string.c state = 3;
state 4517 standard/string.c if (state == 0) {
state 4519 standard/string.c } else if (allow && state == 1) {
state 4531 standard/string.c if (state == 3 && p >= buf + 2 && *(p-1) == '-' && *(p-2) == '!') {
state 4532 standard/string.c state = 4;
state 4540 standard/string.c if (state == 1 && *(p-1) == '<') {
state 4542 standard/string.c state=2;
state 4549 standard/string.c if (state==3 && p > buf+6
state 4556 standard/string.c state = 1;
state 4568 standard/string.c if (state == 2 && p > buf+2 && strncasecmp(p-2, "xm", 2) == 0) {
state 4569 standard/string.c state = 1;
state 4576 standard/string.c if (state == 0) {
state 4578 standard/string.c } else if (allow && state == 1) {
state 4602 standard/string.c *stateptr = state;
state 236 standard/url_scanner_ex.c #define STATE ctx->state
state 52 standard/url_scanner_ex.h int state;
state 414 sybase_ct/php_sybase_ct.c zval *msgnumber, *severity, *state, *line, *text, *retval = NULL;
state 429 sybase_ct/php_sybase_ct.c MAKE_STD_ZVAL(state);
state 430 sybase_ct/php_sybase_ct.c ZVAL_LONG(state, srvmsg->state);
state 431 sybase_ct/php_sybase_ct.c args[2] = &state;
state 459 sybase_ct/php_sybase_ct.c zval_ptr_dtor(&state);
state 149 zip/lib/zip_close.c if (za->entry[i].state == ZIP_ST_DELETED)
state 179 zip/lib/zip_close.c if (za->entry[i].state == ZIP_ST_ADDED) {
state 583 zip/lib/zip_close.c if ((za->entry[i].state != ZIP_ST_UNCHANGED)
state 587 zip/lib/zip_close.c if (za->entry[i].state != ZIP_ST_DELETED)
state 58 zip/lib/zip_delete.c za->entry[idx].state = ZIP_ST_DELETED;
state 68 zip/lib/zip_entry_new.c ze->state = ZIP_ST_UNCHANGED;
state 58 zip/lib/zip_get_name.c if (za->entry[idx].state == ZIP_ST_DELETED) {
state 80 zip/lib/zip_replace.c za->entry[idx].state = ((za->cdir == NULL || idx >= za->cdir->nentry)
state 68 zip/lib/zip_set_name.c if (za->entry[idx].state == ZIP_ST_UNCHANGED)
state 69 zip/lib/zip_set_name.c za->entry[idx].state = ZIP_ST_RENAMED;
state 92 zip/lib/zip_source_buffer.c z = (struct read_data *)state;
state 130 zip/lib/zip_source_filep.c z = (struct read_file *)state;
state 127 zip/lib/zip_source_zip.c z = (struct read_zip *)state;
state 50 zip/lib/zip_unchange_data.c ze->state = ze->ch_filename ? ZIP_ST_RENAMED : ZIP_ST_UNCHANGED;
state 265 zip/lib/zipint.h enum zip_state state;
state 283 zip/lib/zipint.h ((x)->state == ZIP_ST_REPLACED \
state 284 zip/lib/zipint.h || (x)->state == ZIP_ST_ADDED)