Searched refs:tmp1 (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/ext/standard/ |
| H A D | crypt_blowfish.c | 463 tmp1 = L & 0xFF; \ 469 tmp1 = data.ctx.S[3][tmp1]; \ 475 tmp3 += tmp1; \ 482 tmp1 = L & 0xFF; \ 483 tmp1 <<= 2; \ 490 tmp1 = BF_INDEX(data.ctx.S[3], tmp1); \ 496 tmp3 += tmp1; \ 668 BF_word tmp1, tmp local [all...] |
| H A D | info.c | 657 char **env, *tmp1, *tmp2; local 955 tmp1 = estrdup(*env); 956 if (!(tmp2=strchr(tmp1,'='))) { /* malformed entry? */ 957 efree(tmp1); 962 php_info_print_table_row(2, tmp1, tmp2); 963 efree(tmp1);
|
| /PHP_5_3/ext/ldap/ |
| H A D | ldap.c | 920 zval *tmp1, *tmp2; local 955 MAKE_STD_ZVAL(tmp1); 956 array_init(tmp1); 974 zend_hash_update(Z_ARRVAL_P(tmp1), php_strtolower(attribute, attr_len), attr_len+1, (void *) &tmp2, sizeof(zval *), NULL); 975 add_index_string(tmp1, num_attrib, attribute, 1); 989 add_assoc_long(tmp1, "count", num_attrib); 991 add_assoc_string(tmp1, "dn", dn, 1); 998 zend_hash_index_update(Z_ARRVAL_P(return_value), num_entries, (void *) &tmp1, sizeof(zval *), NULL);
|
| /PHP_5_3/ext/mcrypt/ |
| H A D | mcrypt.c | 497 smart_str tmp1 = {0}; local 502 smart_str_appends(&tmp1, "none"); 505 smart_str_appends(&tmp1, modules[i]); 506 smart_str_appendc(&tmp1, ' '); 508 smart_str_0(&tmp1); 529 php_info_print_table_row(2, "Supported ciphers", tmp1.c); 531 smart_str_free(&tmp1);
|
| /PHP_5_3/sapi/apache2filter/ |
| H A D | php_functions.c | 327 smart_str tmp1 = {0}; local 334 smart_str_appendl(&tmp1, s, (p - s)); 336 smart_str_appends(&tmp1, s); 338 smart_str_appendc(&tmp1, ' '); 340 if ((tmp1.len - 1) >= 0) { 341 tmp1.c[tmp1.len - 1] = '\0'; 348 php_info_print_table_row(2, "Loaded Modules", tmp1.c); 349 smart_str_free(&tmp1);
|
| /PHP_5_3/sapi/apache2handler/ |
| H A D | php_functions.c | 369 smart_str tmp1 = {0}; local 385 smart_str_appendl(&tmp1, s, (p - s)); 387 smart_str_appends(&tmp1, s); 389 smart_str_appendc(&tmp1, ' '); 391 if ((tmp1.len - 1) >= 0) { 392 tmp1.c[tmp1.len - 1] = '\0'; 429 php_info_print_table_row(2, "Loaded Modules", tmp1.c); 431 smart_str_free(&tmp1);
|
Completed in 29 milliseconds