| /PHP_TRUNK/TSRM/ |
| H A D | TSRM.c | 717 TSRM_API int tsrm_sigmask(int how, const sigset_t *set, sigset_t *oldset) argument 722 return pthread_sigmask(how, set, oldset); 724 return sigprocmask(how, set, oldset);
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_atomic.h | 43 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /* {{{ */ argument 48 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); 69 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /* {{{ */ argument 74 "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "memory"); 112 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /* {{{ */ argument 114 return (atomic_cas_64(lock, old, set)==old); 129 static inline atomic_uint_t atomic_cmp_set(atomic_t *lock, atomic_uint_t old, atomic_uint_t set) /* {{{ */ argument 131 return (atomic_cas_32(lock, old, set)==old);
|
| /PHP_TRUNK/ext/gmp/ |
| H A D | gmp.c | 1464 zend_bool set = 1; local 1467 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Zl|b", &a_arg, &index, &set) == FAILURE) { 1478 if (set) { 1510 Tests if bit is set in a */
|
| /PHP_TRUNK/ext/pcntl/ |
| H A D | pcntl.c | 75 ZEND_ARG_INFO(0, set) 80 ZEND_ARG_INFO(0, set) 85 ZEND_ARG_INFO(0, set) 915 /* {{{ proto bool pcntl_sigprocmask(int how, array set[, array &oldset]) 921 sigset_t set, oldset; local 928 if (sigemptyset(&set) != 0 || sigemptyset(&oldset) != 0) { 942 if (sigaddset(&set, signo) != 0) { 950 if (sigprocmask(how, &set, &oldset) != 0) { 981 sigset_t set; local 997 if (sigemptyset(&set) ! [all...] |
| /PHP_TRUNK/sapi/aolserver/ |
| H A D | aolserver.c | 523 Ns_Set *set; local 526 set = Ns_ConfigGetSection(path); 528 for (i = 0; set && i < Ns_SetSize(set); i++) { 529 char *key = Ns_SetKey(set, i); 530 char *value = Ns_SetValue(set, i);
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_object_handlers.h | 45 /* Used to set property of the object */ 48 /* Used to set dimension of the object */ 55 /* Used to set object value. Can be used to override assignments and scalar 67 * 1 (set) whether property exists and is true 128 zend_object_set_t set; member in struct:_zend_object_handlers
|
| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcre_compile.c | 59 COMPILE_PCREx macro will already be appropriately set. */ 298 /* Table of substitutes for \d etc when PCRE_UCP is set. The POSIX class 438 "unknown option bit(s) set\0" 772 on error, errorcodeptr is set 1157 other alphanumeric following \ is an error if PCRE_EXTRA was set; 1181 /* If PCRE_UCP is set, we change the values for \d etc. */ 1205 negptr points to a boolean that is set TRUE for negation else FALSE 1206 ptypeptr points to an unsigned int that is set to the type value 1207 pdataptr points to an unsigned int that is set to the detailed property value 1307 current ptr on error, with errorcodeptr set no 5719 int i, set, unset, namelen; local [all...] |
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_ps.c | 416 Read metadata only if there is actual result set. 497 stmt->send_types_to_server has already been set to 0 in 516 a result set at prepare and thus a connection was missing 527 We need to set this because the user might not call 547 This is a single-row result set, a result set with no rows, EXPLAIN, 550 network or b) is more efficient if all (few) result set rows are 568 /* OUT params result set. Skip for now to retain compatibility */ 715 MYSQLND_RES_BUFFERED *set = result->stored_data; local 723 if (set [all...] |
| H A D | mysqlnd_result.c | 117 in result set buffers 180 MYSQLND_RES_BUFFERED *set = result->stored_data; local 185 DBG_INF_FMT("Freeing "MYSQLND_LLU_SPEC" row(s)", set->row_count); 187 if (set->data) { 191 for (row = set->row_count - 1; row >= 0; row--) { 192 zval **current_row = set->data + row * field_count; 193 MYSQLND_MEMORY_POOL_CHUNK *current_buffer = set->row_buffers[row]; 214 mnd_efree(set->data); 215 set->data = NULL; 218 if (set 565 MYSQLND_RES_BUFFERED *set = result->stored_data; local 913 MYSQLND_RES_BUFFERED *set = result->stored_data; local 985 MYSQLND_RES_BUFFERED *set = result->stored_data; local 1081 MYSQLND_RES_BUFFERED *set; local 1532 MYSQLND_RES_BUFFERED *set = result->stored_data; local [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | string.c | 123 int php_tag_find(char *tag, int len, char *set); 2262 /* if "length" position is negative, set it to the length 2369 /* if "length" position is negative, set it to the length 3304 Escapes all chars mentioned in charlist with backslash. It creates octal representations if asked to backslash characters with 8th bit set or with ASCII<32 (except '\n', '\r', '\t' etc...) */ 4473 * Check if tag is in a set of tags 4480 int php_tag_find(char *tag, int len, char *set) { argument 4525 if (strstr(set, norm)) { 5543 Search a string for any of a set of characters */
|
| /PHP_TRUNK/ext/date/ |
| H A D | php_date.c | 965 php_error_docref(NULL TSRMLS_CC, E_WARNING, DATE_TZ_ERRMSG "We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone."); 1722 Returns the results of the C system call localtime as an associative array if the associative_array argument is set to 1 other wise it is a regular array */ 4609 timelib_sll rise, set, transit; local 4661 rs = timelib_astro_rise_set_altitude(t, longitude, latitude, altitude, 1, &h_rise, &h_set, &rise, &set, &transit); 4669 RETURN_LONG(calc_sunset ? set : rise); 4706 Returns an array with information about sun set/rise and twilight begin/end */ 4714 timelib_sll rise, set, transit; local 4733 rs = timelib_astro_rise_set_altitude(t, longitude, latitude, -35.0/60, 1, &ddummy, &ddummy, &rise, &set, &transit); 4746 t2->sse = set; 4753 rs = timelib_astro_rise_set_altitude(t, longitude, latitude, -6.0, 0, &ddummy, &ddummy, &rise, &set, [all...] |