Home
last modified time | relevance | path

Searched refs:intValue (Results 1 – 9 of 9) sorted by relevance

/netbsd/src/external/bsd/elftosb/dist/elftosb2/
DEncoreBootImageGenerator.cpp63 …const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(m_options->getOption(kFlagsOpti… in processOptions() local
64 if (intValue) in processOptions()
66 image->setFlags(intValue->getValue()); in processOptions()
92 const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(value); in processSectionOptions() local
93 if (intValue) in processSectionOptions()
96 imageSection->setFlags(intValue->getValue()); in processSectionOptions()
108 const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(value); in processSectionOptions() local
109 if (intValue) in processSectionOptions()
112 … if (intValue->getValue() < EncoreBootImage::BOOT_IMAGE_MINIMUM_SECTION_ALIGNMENT) in processSectionOptions()
117 imageSection->setAlignment(intValue->getValue()); in processSectionOptions()
[all …]
DBootImageGenerator.cpp69 …const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(m_options->getOption(kDriveTagO… in processDriveTagOption() local
70 if (intValue) in processDriveTagOption()
72 image->setDriveTag(intValue->getValue()); in processDriveTagOption()
Delftosb.cpp427 uint32_t intValue = strtoul(value, NULL, 0); in parseIntValue() local
443 intValue *= multiplier; in parseIntValue()
444 return intValue; in parseIntValue()
DConversionController.cpp271 SizedIntegerValue * intValue = dynamic_cast<SizedIntegerValue*>(value); in processConstants() local
272 if (!intValue) in processConstants()
283 m_context.setVariable(ident, intValue->getValue(), intValue->getWordSize()); in processConstants()
1108 SizedIntegerValue intValue(intNode->getValue(), intNode->getSize()); in createSourceFromNode() local
1109 source = new PatternSource(intValue); in createSourceFromNode()
/netbsd/src/external/gpl3/gdb/dist/gdb/stubs/
Dsparc-stub.c524 hexToInt(char **ptr, int *intValue) in hexToInt() argument
529 *intValue = 0; in hexToInt()
537 *intValue = (*intValue << 4) | hexValue; in hexToInt()
Dm68k-stub.c788 hexToInt (char **ptr, int *intValue) in hexToInt() argument
793 *intValue = 0; in hexToInt()
800 *intValue = (*intValue << 4) | hexValue; in hexToInt()
Di386-stub.c716 hexToInt (char **ptr, int *intValue) in hexToInt() argument
721 *intValue = 0; in hexToInt()
728 *intValue = (*intValue << 4) | hexValue; in hexToInt()
Dsh-stub.c355 hexToInt (char **ptr, int *intValue) in hexToInt() argument
360 *intValue = 0; in hexToInt()
367 *intValue = (*intValue << 4) | hexValue; in hexToInt()
Dm32r-stub.c923 hexToInt (unsigned char **ptr, int *intValue) in hexToInt() argument
928 *intValue = 0; in hexToInt()
934 *intValue = (*intValue << 4) | hexValue; in hexToInt()