Searched refs:mult (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_3/Zend/ |
| H A D | zend_strtod.c | 671 static Bigint * mult(Bigint *a, Bigint *b) function 810 b1 = mult(b, p5); 819 p51 = p5->next = mult(p5,p5); 1832 b1 = mult(mhi, b); 2364 bb1 = mult(bs, bb);
|
| /PHP_5_3/ext/standard/ |
| H A D | basic_functions.c | 2393 ZEND_ARG_INFO(0, mult)
|
| H A D | string.c | 4592 /* {{{ proto string str_repeat(string input, int mult) 4593 Returns the input string repeat mult times */ 4598 long mult; /* Multiplier */ local 4602 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl", &input_str, &input_len, &mult) == FAILURE) { 4606 if (mult < 0) { 4613 if (input_len == 0 || mult == 0) 4617 result_len = input_len * mult; 4618 result = (char *)safe_emalloc(input_len, mult, 1); 4622 memset(result, *(input_str), mult);
|
Completed in 20 milliseconds