Searched refs:lbound (Results 1 – 3 of 3) sorted by relevance
/PHP-8.1/ext/com_dotnet/ |
H A D | com_misc.c | 97 LONG lbound, ubound; in php_com_safearray_get_elem() local 119 SafeArrayGetLBound(V_ARRAY(array), 1, &lbound); in php_com_safearray_get_elem() 123 if (dim1 < lbound || dim1 > ubound) { in php_com_safearray_get_elem()
|
H A D | com_saproxy.c | 89 LONG ubound, lbound; in saproxy_read_dimension() local 150 SafeArrayGetLBound(sa, proxy->dimensions, &lbound); in saproxy_read_dimension() 153 if (Z_LVAL_P(offset) < lbound || Z_LVAL_P(offset) > ubound) { in saproxy_read_dimension() 343 LONG ubound, lbound; in saproxy_count_elements() local 349 SafeArrayGetLBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &lbound); in saproxy_count_elements() 352 *count = ubound - lbound + 1; in saproxy_count_elements()
|
H A D | com_handlers.c | 497 LONG ubound = 0, lbound = 0; in com_object_count() local 505 SafeArrayGetLBound(V_ARRAY(&obj->v), 1, &lbound); in com_object_count() 508 *count = ubound - lbound + 1; in com_object_count()
|
Completed in 8 milliseconds