| /PHP_TRUNK/ext/pdo_mysql/ |
| H A D | get_error_codes.php | 20 foreach ($codes as $code => $state) { 22 printf(" case %-{$maxlen}s: return \"%s\";\n", $code, $state);
|
| /PHP_TRUNK/ext/sybase_ct/tests/ |
| H A D | test.inc | 13 // {{{ bool sybase_msg_handler(int msgnumber, int severity, int state, int line, string text) 15 function sybase_msg_handler($msgnumber, $severity, $state, $line, $text) { 17 "*** Caught Sybase Server Message #%d [Severity %d, state %d] at line %d\n '%s'\n", 20 $state, 30 // {{{ public static bool static_handler(int msgnumber, int severity, int state, int line, string text) 32 static function static_handler($msgnumber, $severity, $state, $line, $text) { 33 return sybase_msg_handler($msgnumber, $severity, $state, $line, $text); 37 // {{{ public bool static_handler(int msgnumber, int severity, int state, int line, string text) 39 function handler($msgnumber, $severity, $state, $line, $text) { 40 return sybase_msg_handler($msgnumber, $severity, $state, [all...] |
| /PHP_TRUNK/ext/tokenizer/ |
| H A D | tokenizer.php | 16 $state = 0; variable 20 if ($state == 1 && $token[0] == T_STRING) { 22 $state = 0; variable 24 $state = 1; variable
|
| /PHP_TRUNK/ext/zip/lib/ |
| H A D | zip_delete.c | 60 za->entry[idx].state = ZIP_ST_DELETED;
|
| H A D | zip_unchange_data.c | 51 ze->state = ze->ch_filename ? ZIP_ST_RENAMED : ZIP_ST_UNCHANGED;
|
| /PHP_TRUNK/sapi/cli/ |
| H A D | php_http_parser.c | 196 enum state enum 248 /* Important: 's_headers_almost_done' must be the last 'header' state. All 265 #define PARSING_HEADER(state) (state <= s_headers_almost_done && 0 == (parser->flags & F_TRAILING)) 332 enum state state = (enum state) parser->state; local 348 if (state == s_body_identity_eof) { 354 if (state [all...] |
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gdhelpers.c | 15 gd_strtok_r (char *s, char *sep, char **state) argument 29 s = *state; 35 *state = s; 49 *state = s; 60 *state = s; 74 *state = s;
|
| /PHP_TRUNK/ext/mbstring/oniguruma/enc/ |
| H A D | gb18030.c | 113 enum state { enum 151 enum state state = S_START; local 155 DEBUG_GB18030(("state %d --(%02x)-->\n", state, *p)); 156 switch (state) { 162 state = S_one_C2; /* C2 */ 165 state = S_one_C4; /* C4 */ 168 state = S_one_CM; /* CM */ 179 state [all...] |
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regparse.h | 135 #define SET_ENCLOSE_STATUS(node,f) (node)->u.enclose.state |= (f) 136 #define CLEAR_ENCLOSE_STATUS(node,f) (node)->u.enclose.state &= ~(f) 138 #define IS_ENCLOSE_CALLED(en) (((en)->state & NST_CALLED) != 0) 139 #define IS_ENCLOSE_ADDR_FIXED(en) (((en)->state & NST_ADDR_FIXED) != 0) 140 #define IS_ENCLOSE_RECURSION(en) (((en)->state & NST_RECURSION) != 0) 141 #define IS_ENCLOSE_MARK1(en) (((en)->state & NST_MARK1) != 0) 142 #define IS_ENCLOSE_MARK2(en) (((en)->state & NST_MARK2) != 0) 143 #define IS_ENCLOSE_MIN_FIXED(en) (((en)->state & NST_MIN_FIXED) != 0) 144 #define IS_ENCLOSE_MAX_FIXED(en) (((en)->state & NST_MAX_FIXED) != 0) 145 #define IS_ENCLOSE_CLEN_FIXED(en) (((en)->state 171 int state; member in struct:__anon264 187 int state; member in struct:__anon265 215 int state; member in struct:__anon268 227 int state; member in struct:__anon269 [all...] |
| /PHP_TRUNK/ext/hash/ |
| H A D | hash_adler32.c | 27 context->state = 1; 34 s[0] = context->state & 0xffff; 35 s[1] = (context->state >> 16) & 0xffff; 47 context->state = s[0] + (s[1] << 16); 52 digest[0] = (unsigned char) ((context->state >> 24) & 0xff); 53 digest[1] = (unsigned char) ((context->state >> 16) & 0xff); 54 digest[2] = (unsigned char) ((context->state >> 8) & 0xff); 55 digest[3] = (unsigned char) (context->state & 0xff); 56 context->state = 0; 61 copy_context->state [all...] |
| H A D | hash_crc32.c | 28 context->state = ~0; 36 context->state = (context->state << 8) ^ crc32_table[(context->state >> 24) ^ (input[i] & 0xff)]; 45 context->state = (context->state >> 8) ^ crc32b_table[(context->state ^ input[i]) & 0xff]; 51 context->state=~context->state; 52 digest[3] = (unsigned char) ((context->state >> 2 [all...] |
| H A D | hash_fnv.c | 72 context->state = PHP_FNV1_32_INIT; 79 context->state = fnv_32_buf((void *)input, inputLen, context->state, 0); 85 context->state = fnv_32_buf((void *)input, inputLen, context->state, 1); 91 memcpy(digest, &context->state, 4); 94 unsigned char *c = (unsigned char *) &context->state; 107 context->state = PHP_FNV1_64_INIT; 114 context->state = fnv_64_buf((void *)input, inputLen, context->state, [all...] |
| H A D | hash_haval.c | 144 static void PHP_3HAVALTransform(php_hash_uint32 state[8], const unsigned char block[128]) argument 153 E[i] = state[i]; 168 state[i] += E[i]; 178 static void PHP_4HAVALTransform(php_hash_uint32 state[8], const unsigned char block[128]) argument 187 E[i] = state[i]; 205 state[i] += E[i]; 215 static void PHP_5HAVALTransform(php_hash_uint32 state[8], const unsigned char block[128]) argument 224 E[i] = state[i]; 244 state[i] += E[i]; 261 for(i = 0; i < 8; i++) context->state[ [all...] |
| H A D | hash_joaat.c | 40 context->state = 0; 45 context->state = joaat_buf((void *)input, inputLen, context->state); 51 memcpy(digest, &context->state, 4); 54 unsigned char *c = (unsigned char *) &context->state; 60 context->state = 0;
|
| H A D | hash_ripemd.c | 76 context->state[0] = 0x67452301; 77 context->state[1] = 0xEFCDAB89; 78 context->state[2] = 0x98BADCFE; 79 context->state[3] = 0x10325476; 91 context->state[0] = 0x67452301; 92 context->state[1] = 0xEFCDAB89; 93 context->state[2] = 0x98BADCFE; 94 context->state[3] = 0x10325476; 95 context->state[4] = 0x76543210; 96 context->state[ 203 RIPEMD128Transform(php_hash_uint32 state[4], const unsigned char block[64]) argument 294 RIPEMD256Transform(php_hash_uint32 state[8], const unsigned char block[64]) argument 392 RIPEMD160Transform(php_hash_uint32 state[5], const unsigned char block[64]) argument 491 RIPEMD320Transform(php_hash_uint32 state[10], const unsigned char block[64]) argument [all...] |
| H A D | hash_sha.c | 211 context->state[0] = 0x67452301; 212 context->state[1] = 0xefcdab89; 213 context->state[2] = 0x98badcfe; 214 context->state[3] = 0x10325476; 215 context->state[4] = 0xc3d2e1f0; 220 * SHA1 basic transformation. Transforms state based on block. 222 static void SHA1Transform(php_hash_uint32 state[5], const unsigned char block[64]) argument 224 php_hash_uint32 a = state[0], b = state[1], c = state[ 480 SHA256Transform(php_hash_uint32 state[8], const unsigned char block[64]) argument 790 SHA512Transform(php_hash_uint64 state[8], const unsigned char block[128]) argument [all...] |
| H A D | hash_whirlpool.c | 46 php_hash_uint64 state[8]; /* the cipher state */ local 65 * compute and apply K^0 to the cipher state: 67 state[0] = block[0] ^ (K[0] = context->state[0]); 68 state[1] = block[1] ^ (K[1] = context->state[1]); 69 state[2] = block[2] ^ (K[2] = context->state[2]); 70 state[ [all...] |
| H A D | php_hash_gost.h | 28 php_hash_uint32 state[16]; member in struct:__anon82
|
| H A D | php_hash_haval.h | 27 php_hash_uint32 state[8]; member in struct:__anon83 33 void (*Transform)(php_hash_uint32 state[8], const unsigned char block[128]);
|
| H A D | php_hash_md.h | 63 php_hash_uint32 state[4]; /* state (ABCD) */ member in struct:__anon85 79 php_hash_uint32 state[4]; member in struct:__anon86 90 unsigned char state[48]; member in struct:__anon87
|
| H A D | php_hash_ripemd.h | 27 php_hash_uint32 state[4]; /* state (ABCD) */ member in struct:__anon88 33 php_hash_uint32 state[5]; /* state (ABCD) */ member in struct:__anon89 39 php_hash_uint32 state[8]; /* state (ABCD) */ member in struct:__anon90 45 php_hash_uint32 state[10]; /* state (ABCD) */ member in struct:__anon91
|
| H A D | php_hash_sha.h | 39 php_hash_uint32 state[5]; /* state (ABCD) */ member in struct:__anon92 55 php_hash_uint32 state[8]; /* state */ member in struct:__anon93 66 php_hash_uint32 state[8]; /* state */ member in struct:__anon94 77 php_hash_uint64 state[8]; /* state */ member in struct:__anon95 88 php_hash_uint64 state[8]; /* state */ member in struct:__anon96 [all...] |
| H A D | php_hash_snefru.h | 32 php_hash_uint32 state[16]; member in struct:__anon97
|
| H A D | php_hash_whirlpool.h | 26 php_hash_uint64 state[8]; member in struct:__anon99
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_sqlstate.c | 32 const char state[5]; member in struct:pdo_sqlstate_info 128 { "24000", "Invalid cursor state" }, 129 { "25000", "Invalid transaction state" }, 140 { "25S01", "Transaction state" }, 229 { "55000", "Object not in prerequisite state" }, 325 zend_hash_add(&err_hash, info->state, sizeof(info->state), &info, sizeof(info), NULL); 331 const char *pdo_sqlstate_state_to_description(char *state) argument 334 if (SUCCESS == zend_hash_find(&err_hash, state, sizeof(err_initializer[0].state), [all...] |