In drupal|menu.inc, I found the constant was defined in Hexadecimal :
define('MENU_IS_ROOT', 0x0001)
why not
define('MENU_IS_ROOT', 1)
==================================
there is another code snippet:
define('MENU_VISIBLE_IN_BREADCRUMB', 0x0004);
define('MENU_SUGGESTED_ITEM', MENU_VISIBLE_IN_BREADCRUMB | 0x0010);
is it equal MENU_SUGGESTED_ITEM = MENU_VISIBLE_IN_BREADCRUMB = 16 ?