| /PHP_5_5/ext/gd/libgd/ |
| H A D | gd_gif_in.c | 91 static int ReadColorMap (gdIOCtx *fd, int number, unsigned char (*buffer)[256]); 277 static int ReadColorMap(gdIOCtx *fd, int number, unsigned char (*buffer)[256]) /* {{{ */ argument 283 for (i = 0; i < number; ++i) {
|
| H A D | gdxpm.c | 22 int i, j, k, number; local 39 number = image.ncolors; 40 colors = (int *) safe_emalloc(number, sizeof(int), 0); 41 for (i = 0; i < number; i++) {
|
| /PHP_5_5/ext/intl/formatter/ |
| H A D | formatter_format.c | 29 * Format a number. }}} */ 31 * Format a number. 35 zval **number; local 44 &object, NumberFormatter_ce_ptr, &number, &type ) == FAILURE ) 56 if(Z_TYPE_PP(number) == IS_STRING) { 57 convert_scalar_to_number_ex(number); 60 if(Z_TYPE_PP(number) == IS_LONG) { 63 } else if(Z_TYPE_PP(number) == IS_DOUBLE) { 70 if(Z_TYPE_PP(number) != IS_DOUBLE && Z_TYPE_PP(number) ! 139 double number; local 176 unum_formatDoubleCurrency(FORMATTER_OBJECT(nfo), number, scurrency, formatted, formatted_len, NULL, &INTL_DATA_ERROR_CODE(nfo)); local [all...] |
| H A D | formatter_parse.c | 33 * Parse a number. }}} */ 35 * Parse a number. 118 * Parse a number as currency. }}} */ 120 * Parse a number as currency. 124 double number; local 160 number = unum_parseDoubleCurrency(FORMATTER_OBJECT(nfo), sstr, sstr_len, position_p, currency, &INTL_DATA_ERROR_CODE(nfo)); 176 RETVAL_DOUBLE( number );
|
| /PHP_5_5/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 61 * A header written to the output file with the byte-order-mark and the number 736 * Adds a number if it does not already exist and returns an index value 745 * Determine if the number already exists. 779 * Handle the case of the codes matching and simply replace the number 823 short wnum, neg, number[2], compat; local 1049 * Skip to the number field. 1057 * Scan the number in. 1059 number[0] = number[1] = 0; 1071 number[wnu [all...] |
| /PHP_5_5/ext/imap/ |
| H A D | php_imap.c | 595 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad message number"); \ 962 /* number of messages */ 964 /* number of recent messages */ 966 /* number of unseen messages */ 1360 Gives the number of messages in the current mailbox */ 1394 Gives the number of recent messages in current mailbox */ 1707 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad message number"); 2350 /* only perform the check if the msgno is a message number and not a UID */ 2390 /* only perform the check if the msgno is a message number and not a UID */ 3184 Get the unique message id associated with a standard sequential message number */ 4851 mm_searched(MAILSTREAM *stream, unsigned long number) argument 4871 mm_exists(MAILSTREAM *stream, unsigned long number) argument 4875 mm_expunged(MAILSTREAM *stream, unsigned long number) argument 4879 mm_flags(MAILSTREAM *stream, unsigned long number) argument [all...] |
| /PHP_5_5/ext/oci8/ |
| H A D | oci8_collection.c | 256 Return max number of elements in the collection */ 268 Trim collection to the given number of elements */ 340 int php_oci_collection_append_number(php_oci_collection *collection, char *number, int number_len TSRMLS_DC) argument 349 element_double = strtod(number, NULL); 352 element_double = zend_strtod(number, NULL); 628 int php_oci_collection_element_set_number(php_oci_collection *collection, long index, char *number, int number_len TSRMLS_DC) argument 637 element_double = strtod(number, NULL); 640 element_double = zend_strtod(number, NULL);
|
| /PHP_5_5/ext/readline/ |
| H A D | readline_cli.c | 409 ulong number; local 416 zend_hash_get_current_key(ht, &name, &number, 0);
|
| /PHP_5_5/ext/standard/ |
| H A D | formatted_print.c | 129 php_sprintf_appendint(char **buffer, int *pos, int *size, long number, argument 138 *buffer, pos, size, number, width, padding, alignment)); 139 if (number < 0) { 141 magn = ((unsigned long) -(number + 1)) + 1; 143 magn = (unsigned long) number; 164 number, &numbuf[i], i)); 174 unsigned long number, 182 *buffer, pos, size, number, width, padding, alignment)); 183 magn = (unsigned long) number; 197 PRINTF_DEBUG(("sprintf: appending %d as \"%s\", i=%d\n", number, 173 php_sprintf_appenduint(char **buffer, int *pos, int *size, unsigned long number, int width, char padding, int alignment) argument 205 php_sprintf_appenddouble(char **buffer, int *pos, int *size, double number, int width, char padding, int alignment, int precision, int adjust, char fmt, int always_sign TSRMLS_DC) argument 296 php_sprintf_append2n(char **buffer, int *pos, int *size, long number, int width, char padding, int alignment, int n, char *chartable, int expprec) argument [all...] |
| H A D | math.c | 136 * Rounds a number to a certain number of decimal places in a certain rounding 194 Instead, the number is converted to a string and back again using 275 /* {{{ proto int abs(int number) 276 Return the absolute value of the number */ 299 /* {{{ proto float ceil(float number) 300 Returns the next highest integer value of the number */ 320 /* {{{ proto float floor(float number) 321 Returns the next lowest integer value from the number */ 341 /* {{{ proto float round(float number [, in 1067 zval **number, temp; local [all...] |
| H A D | rand.c | 95 Mersenne Twister random number generator -- a C++ class MTRand 230 Seeds random number generator */ 246 Seeds Mersenne Twister random number generator */ 268 * Let n = the random number and n' = the mapped random number 280 # number of b+1 which would be bad. So we bump M up by one to make sure 289 Returns a random number */ 294 long number; local 300 number = php_rand(TSRMLS_C); 302 RAND_RANGE(number, mi 315 long number; local [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_operators.c | 138 ZEND_API double zend_string_to_double(const char *number, zend_uint length) /* {{{ */ argument 143 const char *end = number+length; 144 const char *digit = number;
|
| /PHP_5_5/ext/mysqli/ |
| H A D | mysqli_nonapi.c | 998 uint minlength, maxlength, number, state; local 1018 number = cs.number; 1031 number = cs->nr; 1042 add_property_long(return_value, "number", number);
|
| /PHP_5_5/ext/pcre/pcrelib/ |
| H A D | pcre_compile.c | 102 so this number is very generous. 113 kicks in at the same number of forward references in all cases. */ 220 the number of relocations when a shared library is dynamically linked. The 257 now all in a single string, to reduce the number of relocations when a shared 404 are passed to the outside world. Do not ever re-use any error number, because 407 the number of relocations needed when a shared library is loaded dynamically, 424 "number too big in {} quantifier\0" 449 "malformed number or name after (?(\0" 463 "number after (?C is > 255\0" 486 "\\g is not followed by a braced, angle-bracketed, or quoted name/number o 2068 find_bracket(const pcre_uchar *code, BOOL utf, int number) argument [all...] |
| H A D | pcre_exec.c | 84 /* Maximum number of ints of offset to save on the stack for recursive calls. 105 length number to print 131 the length passed is zero. Note that in caseless UTF-8 mode, the number of 132 subject bytes matched may be different to the number of reference bytes. 137 length length of reference to be matched (number of bytes) 141 Returns: >= 0 the number of subject bytes matched 184 /* Match characters up to the end of the reference. NOTE: the number of 275 provide a unique number for each call to RMATCH. There is no way of generating 579 #define number frame->Xnumber macro 635 unsigned int number; 6158 #undef number macro [all...] |
| H A D | pcre_internal.h | 571 changed in future to be a fixed number of bytes or to depend on LINK_SIZE. */ 683 /* Returns with the additional number of characters if IS_MULTICHAR(c) is TRUE. 820 /* Returns with the additional number of characters if IS_MULTICHAR(c) is TRUE. 1022 number of different values. Using a switch statement for this generates the 1190 /* Magic number to provide a small check against being handed junk. */ 2085 OP_CREF, /* 135 Used to hold a capture number as condition */ 2087 OP_RREF, /* 137 Used to hold a recursion number as condition */ 2265 easily be tracked. When a new number is added, the table called eint in 2381 pcre_uint16 number; /* Capture number */ member in struct:open_capitem [all...] |
| /PHP_5_5/ext/reflection/ |
| H A D | php_reflection.c | 970 int number = va_arg(args, int); local 973 if (number == ini_entry->module_number) { 2027 Gets the number of required parameters */ 2041 Gets the number of required parameters */ 5252 /* An extension does not necessarily have a version number */ 5305 int number = va_arg(args, int); local 5307 if (number == constant->module_number) { 5339 int number = va_arg(args, int); local 5341 if (number == ini_entry->module_number) {
|
| /PHP_5_5/ext/date/ |
| H A D | php_date.c | 1005 static char *english_suffix(timelib_sll number) argument 1007 if (number >= 10 && number <= 19) { 1010 switch (number % 10) { 4521 Returns the Olson database version number.
|