Searched defs:right (Results 1 - 8 of 8) sorted by relevance

/PHP_TRUNK/ext/sqlite3/libsqlite/
H A Dsqlite3.c568 ** to experimental interfaces but reserve the right to make minor changes
4744 ** called right after sqlite3_open().
5345 ** expr on the right-hand side can be evaluated (and thus the constraint
5359 ** the right-hand side of the corresponding aConstraint[] is evaluated
9117 ** the incompatibility right away, even running a full regression test.
10203 ** Expr.pRight and Expr.pLeft are the left and right subexpressions of a
10283 i16 iRightJoinTable; /* If EP_FromJoin, the right table of the join */
18351 ** Allocate memory that is to be used and released right away.
20835 ** (decrease exponent by d to shift decimal right) */
22549 ** that syncs and fullsyncs are occuring at the right time
126131 float right = DCOORD(aCell[jj].aCoord[i*2+1]); local
126180 float right = cellGrowth(pRtree, pLeftBox, &aCell[ii]); local
126212 float right = cellArea(pRtree, &aCell[jj]); local
126420 RtreeCell right; local
[all...]
/PHP_TRUNK/scripts/dev/
H A Dcheck_parameters.php83 $right = $count = count($lines_offset)-1; variable
87 $mid = intval(($left + $right)/2);
102 $right = $mid; variable
/PHP_TRUNK/ext/mbstring/oniguruma/
H A Dregcomp.c4118 concat_opt_anc_info(OptAncInfo* to, OptAncInfo* left, OptAncInfo* right, argument
4125 to->left_anchor |= right->left_anchor;
4128 to->right_anchor = right->right_anchor;
6107 fprintf(f, "ERROR: list/alt right is not a cons. %d\n", NTYPE(node));
H A Dregparse.c1211 node_new_list(Node* left, Node* right) argument
1218 NCDR(node) = right;
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
1254 NCDR(node) = right;
/PHP_TRUNK/ext/bcmath/
H A Dbcmath.c208 char *left, *right; local
214 if (zend_parse_parameters(argc TSRMLS_CC, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) {
226 php_str2num(&second, right 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) {
265 php_str2num(&second, right 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) {
304 php_str2num(&second, right TSRMLS_CC);
325 char *left, *right; local
370 char *left, *right; local
406 char *left, *right, *modulous; local
449 char *left, *right; local
525 char *left, *right; local
[all...]
/PHP_TRUNK/ext/date/lib/
H A Dparse_tz.c261 int left = 0, right = tzdb->index_size - 1; local
273 int mid = ((unsigned)left + right) >> 1;
277 right = mid - 1;
289 } while (left <= right);
/PHP_TRUNK/main/streams/
H A Dfilter.c141 PHPAPI int php_stream_bucket_split(php_stream_bucket *in, php_stream_bucket **left, php_stream_bucket **right, size_t length TSRMLS_DC) argument
144 *right = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent);
146 if (*left == NULL || *right == NULL) {
157 (*right)->buflen = in->buflen - length;
158 (*right)->buf = pemalloc((*right)->buflen, in->is_persistent);
159 memcpy((*right)->buf, in->buf + length, (*right)->buflen);
160 (*right)->refcount = 1;
161 (*right)
[all...]
/PHP_TRUNK/ext/gd/libgd/
H A Dgd_interpolation.c974 const int right = contrib->ContribRow[x].Right; local
978 for (i = left; i <= right; i++) {

Completed in 141 milliseconds