Searched refs:ubound (Results 1 – 3 of 3) sorted by relevance
/PHP-5.6/ext/com_dotnet/ |
H A D | com_misc.c | 98 LONG lbound, ubound; in php_com_safearray_get_elem() local 120 SafeArrayGetUBound(V_ARRAY(array), 1, &ubound); in php_com_safearray_get_elem() 123 if (dim1 < lbound || dim1 > ubound) { in php_com_safearray_get_elem()
|
H A D | com_saproxy.c | 97 LONG ubound, lbound; in saproxy_read_dimension() local 155 SafeArrayGetUBound(sa, proxy->dimensions, &ubound); in saproxy_read_dimension() 157 if (Z_LVAL_P(offset) < lbound || Z_LVAL_P(offset) > ubound) { in saproxy_read_dimension() 366 LONG ubound, lbound; in saproxy_count_elements() local 373 SafeArrayGetUBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &ubound); in saproxy_count_elements() 375 *count = ubound - lbound + 1; in saproxy_count_elements()
|
H A D | com_handlers.c | 546 LONG ubound = 0, lbound = 0; in com_object_count() local 555 SafeArrayGetUBound(V_ARRAY(&obj->v), 1, &ubound); in com_object_count() 557 *count = ubound - lbound + 1; in com_object_count()
|
Completed in 8 milliseconds