HomeSort by: relevance | last modified time | path
    Searched refs:intValue (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/external/bsd/elftosb/dist/elftosb2/
BootImageGenerator.cpp 69 const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(m_options->getOption(kDriveTagOption));
70 if (intValue)
72 image->setDriveTag(intValue->getValue());
EncoreBootImageGenerator.cpp 63 const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(m_options->getOption(kFlagsOption));
64 if (intValue)
66 image->setFlags(intValue->getValue());
92 const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(value);
93 if (intValue)
96 imageSection->setFlags(intValue->getValue());
108 const IntegerValue * intValue = dynamic_cast<const IntegerValue *>(value);
109 if (intValue)
112 if (intValue->getValue() < EncoreBootImage::BOOT_IMAGE_MINIMUM_SECTION_ALIGNMENT)
117 imageSection->setAlignment(intValue->getValue())
    [all...]
elftosb.cpp 427 uint32_t intValue = strtoul(value, NULL, 0);
443 intValue *= multiplier;
444 return intValue;
ConversionController.cpp 271 SizedIntegerValue * intValue = dynamic_cast<SizedIntegerValue*>(value);
272 if (!intValue)
279 // printIntConstExpr(ident, intValue);
283 m_context.setVariable(ident, intValue->getValue(), intValue->getWordSize());
1108 SizedIntegerValue intValue(intNode->getValue(), intNode->getSize());
1109 source = new PatternSource(intValue);
  /src/external/apache2/llvm/dist/llvm/include/llvm/WindowsResource/
ResourceScriptToken.h 42 uint32_t intValue() const;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptToken.h 54 uint32_t intValue() const;
ResourceScriptToken.cpp 48 uint32_t RCToken::intValue() const {
  /src/external/mpl/dhcp/dist/keama/
eval.c 549 off = intValue(offset);
550 len = intValue(length);
681 len = intValue(length);
936 val = (uint8_t)intValue(arg);
969 val = (uint16_t)intValue(arg);
1003 val = (uint32_t)intValue(arg);
1136 b = intValue(base);
1141 w = intValue(width);
1308 w = intValue(width);
1612 result = createInt(intValue(arg))
    [all...]
reduce.c 440 off = intValue(offset);
449 len = intValue(length);
502 len = intValue(length);
904 r = intValue(relay);
options.c 684 assert(intValue(scode) != 0);
706 if (intValue(scode) == intValue(code))
data.h 229 int64_t intValue(const struct element *e);
data.c 388 intValue(const struct element *e)
1129 result = createInt(intValue(e));
  /src/external/gpl3/gdb/dist/gdb/stubs/
i386-stub.c 716 hexToInt (char **ptr, int *intValue)
721 *intValue = 0;
728 *intValue = (*intValue << 4) | hexValue;
m68k-stub.c 789 hexToInt (char **ptr, int *intValue)
794 *intValue = 0;
801 *intValue = (*intValue << 4) | hexValue;
sparc-stub.c 524 hexToInt(char **ptr, int *intValue)
529 *intValue = 0;
537 *intValue = (*intValue << 4) | hexValue;
sh-stub.c 355 hexToInt (char **ptr, int *intValue)
360 *intValue = 0;
367 *intValue = (*intValue << 4) | hexValue;
m32r-stub.c 923 hexToInt (unsigned char **ptr, int *intValue)
928 *intValue = 0;
934 *intValue = (*intValue << 4) | hexValue;
  /src/external/gpl3/gdb.old/dist/gdb/stubs/
i386-stub.c 716 hexToInt (char **ptr, int *intValue)
721 *intValue = 0;
728 *intValue = (*intValue << 4) | hexValue;
m68k-stub.c 789 hexToInt (char **ptr, int *intValue)
794 *intValue = 0;
801 *intValue = (*intValue << 4) | hexValue;
sparc-stub.c 524 hexToInt(char **ptr, int *intValue)
529 *intValue = 0;
537 *intValue = (*intValue << 4) | hexValue;
sh-stub.c 355 hexToInt (char **ptr, int *intValue)
360 *intValue = 0;
367 *intValue = (*intValue << 4) | hexValue;
m32r-stub.c 923 hexToInt (unsigned char **ptr, int *intValue)
928 *intValue = 0;
934 *intValue = (*intValue << 4) | hexValue;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
typesem.d 2483 Expression intValue(dinteger_t i)
2600 case Tfloat32: return intValue(target.FloatProperties.dig);
2603 case Tfloat64: return intValue(target.DoubleProperties.dig);
2606 case Tfloat80: return intValue(target.RealProperties.dig);
2632 case Tfloat32: return intValue(target.FloatProperties.mant_dig);
2635 case Tfloat64: return intValue(target.DoubleProperties.mant_dig);
2638 case Tfloat80: return intValue(target.RealProperties.mant_dig);
2648 case Tfloat32: return intValue(target.FloatProperties.max_10_exp);
2651 case Tfloat64: return intValue(target.DoubleProperties.max_10_exp);
2654 case Tfloat80: return intValue(target.RealProperties.max_10_exp)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
bitmanip.d 2956 uint intValue;
2958 ulong intValue;
3311 es.intValue = swapEndian(es.intValue);
3317 uint intValue = *cast(const uint*) &val;
3319 ulong intValue = *cast(const ulong*) & val;
3321 intValue = swapEndian(intValue);
3322 return ctfeBytes(intValue);
3333 es.intValue = swapEndian(es.intValue)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGAtomic.cpp 2037 llvm::Value *intValue = atomics.convertRValueToInt(rvalue);
2042 intValue = Builder.CreateIntCast(
2043 intValue, addr.getElementType(), /*isSigned=*/false);
2044 llvm::StoreInst *store = Builder.CreateStore(intValue, addr);

Completed in 39 milliseconds

1 2