Searched defs:add (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_5/ext/standard/ |
| H A D | crypt_sha256.c | 267 size_t add = 128 - left_over > len ? len : 128 - left_over; local 269 memcpy(&ctx->buffer[left_over], buffer, add); 270 ctx->buflen += add; 276 memcpy(ctx->buffer, &ctx->buffer[(left_over + add) & ~63], ctx->buflen); 279 buffer = (const char *) buffer + add; 280 len -= add; 429 /* Now get result of this (32 bytes) and add it to the other 440 1 add the alternate sum, for every 0 the key. */ 455 /* For every character in the password add the entire password. */ 473 /* For every character in the password add th [all...] |
| H A D | crypt_sha512.c | 294 size_t add = (size_t)(256 - left_over > len ? len : 256 - left_over); local 296 memcpy(&ctx->buffer[left_over], buffer, add); 297 ctx->buflen += add; 304 memcpy(ctx->buffer, &ctx->buffer[(left_over + add) & ~127], 308 buffer = (const char *) buffer + add; 309 len -= add; 463 /* Now get result of this (64 bytes) and add it to the other 474 1 add the alternate sum, for every 0 the key. */ 489 /* For every character in the password add the entire password. */ 508 /* For every character in the password add th [all...] |
| H A D | formatted_print.c | 55 php_sprintf_appendchar(char **buffer, int *pos, int *size, char add TSRMLS_DC) 62 PRINTF_DEBUG(("sprintf: appending '%c', pos=\n", add, *pos)); 63 (*buffer)[(*pos)++] = add; 69 php_sprintf_appendstring(char **buffer, int *pos, int *size, char *add, argument 86 *buffer, *pos, *size, add, min_width, padding, alignment)); 108 add++; 116 PRINTF_DEBUG(("sprintf: appending \"%s\"\n", add)); 117 memcpy(&(*buffer)[*pos], add, copy_len + 1);
|
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_atomic.h | 34 static inline atomic_int_t atomic_fetch_add(atomic_t *value, atomic_int_t add) /* {{{ */ argument 37 "+r" (add) : "m" (*value) : "memory"); 39 return add; 60 static inline atomic_int_t atomic_fetch_add(atomic_t *value, atomic_int_t add) /* {{{ */ argument 63 "+r" (add) : "m" (*value) : "memory"); 65 return add;
|
| H A D | fpm_events.h | 38 int (*add)(struct fpm_event_s *ev); member in struct:fpm_event_module_s
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 4172 alt_merge_opt_anc_info(OptAncInfo* to, OptAncInfo* add) argument 4174 to->left_anchor &= add->left_anchor; 4175 to->right_anchor &= add->right_anchor; 4202 concat_opt_exact_info(OptExactInfo* to, OptExactInfo* add, OnigEncoding enc) argument 4208 if (! to->ignore_case && add->ignore_case) { 4209 if (to->len >= add->len) return ; /* avoid */ 4214 p = add->s; 4215 end = p + add->len; 4224 to->reach_end = (p == end ? add->reach_end : 0); 4226 concat_opt_anc_info(&tanc, &to->anc, &add 4249 alt_merge_opt_exact_info(OptExactInfo* to, OptExactInfo* add, OptEnv* env) argument 4413 alt_merge_opt_map_info(OnigEncoding enc, OptMapInfo* to, OptMapInfo* add) argument 4465 concat_left_node_opt_info(OnigEncoding enc, NodeOptInfo* to, NodeOptInfo* add) argument 4524 alt_merge_node_opt_info(NodeOptInfo* to, NodeOptInfo* add, OptEnv* env) argument 5229 onig_chain_link_add(regex_t* to, regex_t* add) argument 6086 int add = 3; local [all...] |
| /PHP_5_5/ext/date/ |
| H A D | php_date.c | 465 PHP_ME_MAPPING(add, date_add, arginfo_date_method_add, 0) 491 PHP_ME(DateTimeImmutable, add, arginfo_date_method_add, 0) 2191 /* first we add the date and time in ISO format */ 2196 /* then we add the timezone name (or similar) */ 2839 /* Helper function used to add an associative array of warnings and errors to a zval */ 3162 /* {{{ proto DateTimeImmutable::add() 3164 PHP_METHOD(DateTimeImmutable, add) 3896 #define add(i,ts) \ macro 3906 #define add_last() add(tzobj->tzi.tz->timecnt - 1, timestamp_begin) 3921 add(begi [all...] |
Completed in 42 milliseconds