HomeSort by: relevance | last modified time | path
    Searched defs:hexValue (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/stubs/
i386-stub.c 719 int hexValue;
725 hexValue = hex (**ptr);
726 if (hexValue >= 0)
728 *intValue = (*intValue << 4) | hexValue;
m68k-stub.c 792 int hexValue;
798 hexValue = hex (**ptr);
799 if (hexValue >= 0)
801 *intValue = (*intValue << 4) | hexValue;
sparc-stub.c 527 int hexValue;
533 hexValue = hex(**ptr);
534 if (hexValue < 0)
537 *intValue = (*intValue << 4) | hexValue;
m32r-stub.c 926 int hexValue;
931 hexValue = hex (**ptr);
932 if (hexValue >= 0)
934 *intValue = (*intValue << 4) | hexValue;
sh-stub.c 358 int hexValue;
364 hexValue = hex (**ptr);
365 if (hexValue >= 0)
367 *intValue = (*intValue << 4) | hexValue;
  /src/external/gpl3/gdb.old/dist/gdb/stubs/
i386-stub.c 719 int hexValue;
725 hexValue = hex (**ptr);
726 if (hexValue >= 0)
728 *intValue = (*intValue << 4) | hexValue;
m68k-stub.c 792 int hexValue;
798 hexValue = hex (**ptr);
799 if (hexValue >= 0)
801 *intValue = (*intValue << 4) | hexValue;
sparc-stub.c 527 int hexValue;
533 hexValue = hex(**ptr);
534 if (hexValue < 0)
537 *intValue = (*intValue << 4) | hexValue;
m32r-stub.c 926 int hexValue;
931 hexValue = hex (**ptr);
932 if (hexValue >= 0)
934 *intValue = (*intValue << 4) | hexValue;
sh-stub.c 358 int hexValue;
364 hexValue = hex (**ptr);
365 if (hexValue >= 0)
367 *intValue = (*intValue << 4) | hexValue;

Completed in 35 milliseconds