| /PHP_5_5/scripts/dev/ |
| H A D | check_parameters.php | 82 $left = 0; variable 87 $mid = intval(($left + $right)/2); 95 $left = $mid; variable
|
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gd_gif_in.c | 185 int top, left; local 216 left = LM_to_uint(buf[0], buf[1]); 221 if (left + width > screen_width || top + height > screen_height) {
|
| H A D | gd_interpolation.c | 975 const int left = contrib->ContribRow[x].Left; local 980 for (i = left; i <= right; i++) { 981 const int left_channel = i - left;
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 4118 concat_opt_anc_info(OptAncInfo* to, OptAncInfo* left, OptAncInfo* right, argument 4123 to->left_anchor = left->left_anchor; 4130 to->right_anchor |= left->right_anchor;
|
| H A D | regparse.c | 1211 node_new_list(Node* left, Node* right) argument 1217 NCAR(node) = left; 1223 onig_node_new_list(Node* left, Node* right) argument 1225 return node_new_list(left, right); 1247 onig_node_new_alt(Node* left, Node* right) argument 1253 NCAR(node) = left;
|
| /PHP_5_5/ext/bcmath/ |
| H A D | bcmath.c | 208 char *left, *right; local 214 if (zend_parse_parameters(argc TSRMLS_CC, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) { 225 php_str2num(&first, left TSRMLS_CC); 247 char *left, *right; local 253 if (zend_parse_parameters(argc TSRMLS_CC, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) { 264 php_str2num(&first, left TSRMLS_CC); 286 char *left, *right; local 292 if (zend_parse_parameters(argc TSRMLS_CC, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) { 303 php_str2num(&first, left TSRMLS_CC); 325 char *left, *righ local 370 char *left, *right; local 406 char *left, *right, *modulous; local 449 char *left, *right; local 488 char *left; local 525 char *left, *right; local [all...] |
| /PHP_5_5/ext/date/lib/ |
| H A D | parse_tz.c | 261 int left = 0, right = tzdb->index_size - 1; local 273 int mid = ((unsigned)left + right) >> 1; 279 left = mid + 1; 289 } while (left <= right);
|
| /PHP_5_5/ext/standard/ |
| H A D | basic_functions.h | 195 int left; /* can *next++ this many times before reloading */ member in struct:_php_basic_globals
|
| /PHP_5_5/main/streams/ |
| H A D | filter.c | 141 PHPAPI int php_stream_bucket_split(php_stream_bucket *in, php_stream_bucket **left, php_stream_bucket **right, size_t length TSRMLS_DC) argument 143 *left = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); 146 if (*left == NULL || *right == NULL) { 150 (*left)->buf = pemalloc(length, in->is_persistent); 151 (*left)->buflen = length; 152 memcpy((*left)->buf, in->buf, length); 153 (*left)->refcount = 1; 154 (*left)->own_buf = 1; 155 (*left)->is_persistent = in->is_persistent; 173 if (*left) { [all...] |
| /PHP_5_5/sapi/litespeed/ |
| H A D | lsapilib.c | 231 int left = totalLen; local 233 while(( left > 0 )&&g_running ) { 236 left -= ret; 237 if (( left <= 0)||( !g_running )) { 238 return totalLen - left; 252 if ( totalLen - left > 0 ) { 253 return totalLen - left; 264 return totalLen - left; 816 int left; local 825 while( (left [all...] |
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_net.c | 344 size_t left = count; local 353 size_t comp_buf_size = MYSQLND_HEADER_SIZE + COMPRESSED_HEADER_SIZE + MYSQLND_HEADER_SIZE + MIN(left, MYSQLND_MAX_PACKET_SIZE); 359 to_be_sent = MIN(left, MYSQLND_MAX_PACKET_SIZE); 390 size_t decompressed_size = left + MYSQLND_HEADER_SIZE; 424 left -= to_be_sent; 427 if left is 0 then there is nothing more to send, but if the last packet was exactly 429 empty payload. Thus if left == 0 we check for to_be_sent being the max size. If it is 430 indeed it then loop once more, then to_be_sent will become 0, left will stay 0. Empty 433 } while (bytes_sent && (left > 0 || to_be_sent == MYSQLND_MAX_PACKET_SIZE)); 435 DBG_INF_FMT("packet_size="MYSQLND_SZ_T_SPEC" packet_no=%u", left, ne [all...] |
| H A D | mysqlnd_ps_codec.c | 526 size_t left = (*buf_len - (*p - *buf)); local 538 if (left < (null_count + 20)) { 600 if (left < ((stmt->param_count * 2) + 20)) { 738 left = (*buf_len - (*p - *buf)); 739 if (left < data_size) {
|
| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 297 /************** Continuing where we left off in sqliteInt.h ******************/ 2342 ** cache will be left in an inconsistent state and so the error 3327 ** compile the first statement in zSql, so *pzTail is left pointing to 3330 ** ^*ppStmt is left pointing to a compiled [prepared statement] that can be 3372 ** choice of query plan if the parameter is the left-hand side of a [LIKE] 3727 ** ^The left-most column is column 0 for these routines. 5147 ** cannot be found, an [error code] is returned and an error message left 5382 int iColumn; /* Column on left-hand side of constraint */ 6206 ** no space was left in the page cache.</dd>)^ 7281 /************** Continuing where we left of 126130 float left = DCOORD(aCell[jj].aCoord[i*2]); local 126179 float left = cellGrowth(pRtree, pLeftBox, &aCell[ii]); local 126419 RtreeCell left; local [all...] |
| /PHP_5_5/ext/zip/lib/ |
| H A D | zip_open.c | 180 zip_uint32_t left; 184 /* not enough bytes left for comment */ 269 left = cd->size; 271 while (i<cd->nentry && left > 0) { 272 if ((_zip_dirent_read(cd->entry+i, fp, bufp, &left, 0, error)) < 0) { 279 if (i == cd->nentry && left > 0) { 175 zip_uint32_t left; local
|