Searched refs:a_off (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-dump.cpp197 #define STARTS_WITH_1(a_off, a_uValue) \
198 ( pszObjId[a_off] == (a_uValue) + '0' && pszObjId[a_off + 1] == '.' )
199 #define STARTS_WITH_2(a_off, a_uValue) \
200 ( pszObjId[a_off] == (a_uValue) / 10 + '0' && pszObjId[a_off + 1] == (a_uValue) % 10 + '0' && pszObjId[a_off + 2] == '.' )
201 #define STARTS_WITH_3(a_off, a_uValue) \
202 ( pszObjId[a_off] == (a_uValue) / 100 + '0' \
203 && pszObjId[a_off
[all...]

Completed in 60 milliseconds