ubound            526 ext/com_dotnet/com_handlers.c 	LONG ubound = 0, lbound = 0;
ubound            535 ext/com_dotnet/com_handlers.c 	SafeArrayGetUBound(V_ARRAY(&obj->v), 1, &ubound);
ubound            537 ext/com_dotnet/com_handlers.c 	*count = ubound - lbound + 1;
ubound            101 ext/com_dotnet/com_misc.c 	LONG lbound, ubound;
ubound            123 ext/com_dotnet/com_misc.c 	SafeArrayGetUBound(V_ARRAY(array), 1, &ubound);
ubound            126 ext/com_dotnet/com_misc.c 	if (dim1 < lbound || dim1 > ubound) {
ubound             93 ext/com_dotnet/com_saproxy.c 	LONG ubound, lbound;
ubound            150 ext/com_dotnet/com_saproxy.c 	SafeArrayGetUBound(sa, proxy->dimensions, &ubound);
ubound            152 ext/com_dotnet/com_saproxy.c 	if (Z_LVAL_P(offset) < lbound || Z_LVAL_P(offset) > ubound) {
ubound            354 ext/com_dotnet/com_saproxy.c 	LONG ubound, lbound;
ubound            361 ext/com_dotnet/com_saproxy.c 	SafeArrayGetUBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &ubound);
ubound            363 ext/com_dotnet/com_saproxy.c 	*count = ubound - lbound + 1;