ubound            546 ext/com_dotnet/com_handlers.c 	LONG ubound = 0, lbound = 0;
ubound            555 ext/com_dotnet/com_handlers.c 	SafeArrayGetUBound(V_ARRAY(&obj->v), 1, &ubound);
ubound            557 ext/com_dotnet/com_handlers.c 	*count = ubound - lbound + 1;
ubound             98 ext/com_dotnet/com_misc.c 	LONG lbound, ubound;
ubound            120 ext/com_dotnet/com_misc.c 	SafeArrayGetUBound(V_ARRAY(array), 1, &ubound);
ubound            123 ext/com_dotnet/com_misc.c 	if (dim1 < lbound || dim1 > ubound) {
ubound             97 ext/com_dotnet/com_saproxy.c 	LONG ubound, lbound;
ubound            155 ext/com_dotnet/com_saproxy.c 	SafeArrayGetUBound(sa, proxy->dimensions, &ubound);
ubound            157 ext/com_dotnet/com_saproxy.c 	if (Z_LVAL_P(offset) < lbound || Z_LVAL_P(offset) > ubound) {
ubound            366 ext/com_dotnet/com_saproxy.c 	LONG ubound, lbound;
ubound            373 ext/com_dotnet/com_saproxy.c 	SafeArrayGetUBound(V_ARRAY(&proxy->obj->v), proxy->dimensions, &ubound);
ubound            375 ext/com_dotnet/com_saproxy.c 	*count = ubound - lbound + 1;