Home
last modified time | relevance | path

Searched refs:Radix (Results 1 – 25 of 218) sorted by relevance

123456789

/netbsd-src/external/gpl3/gcc.old/dist/contrib/
H A Dparanoia.cc952 FLOAT Radix, BInvrse, RadixD2, BMinusU2; member
1065 Radix = 1; in main()
1123 Radix = W + Y; in main()
1125 Radix = Radix - W; in main()
1127 while (Radix == Zero); in main()
1128 if (Radix < Two) in main()
1129 Radix = One; in main()
1130 printf ("Radix = %s .\n", Radix.str()); in main()
1131 if (Radix != One) in main()
1137 W = W * Radix; in main()
[all …]
/netbsd-src/external/gpl3/gcc/dist/contrib/
H A Dparanoia.cc952 FLOAT Radix, BInvrse, RadixD2, BMinusU2; member
1065 Radix = 1; in main()
1123 Radix = W + Y; in main()
1125 Radix = Radix - W; in main()
1127 while (Radix == Zero); in main()
1128 if (Radix < Two) in main()
1129 Radix = One; in main()
1130 printf ("Radix = %s .\n", Radix.str()); in main()
1131 if (Radix != One) in main()
1137 W = W * Radix; in main()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DStringRef.cpp410 bool llvm::consumeUnsignedInteger(StringRef &Str, unsigned Radix, in consumeUnsignedInteger() argument
413 if (Radix == 0) in consumeUnsignedInteger()
414 Radix = GetAutoSenseRadix(Str); in consumeUnsignedInteger()
435 if (CharVal >= Radix) in consumeUnsignedInteger()
440 Result = Result * Radix + CharVal; in consumeUnsignedInteger()
443 if (Result / Radix < PrevResult) in consumeUnsignedInteger()
458 bool llvm::consumeSignedInteger(StringRef &Str, unsigned Radix, in consumeSignedInteger() argument
464 if (consumeUnsignedInteger(Str, Radix, ULLVal) || in consumeSignedInteger()
474 if (consumeUnsignedInteger(Str2, Radix, ULLVal) || in consumeSignedInteger()
488 bool llvm::getAsUnsignedInteger(StringRef Str, unsigned Radix, in getAsUnsignedInteger() argument
[all …]
H A DAPInt.cpp2167 void APInt::toString(SmallVectorImpl<char> &Str, unsigned Radix, in toString() argument
2169 assert((Radix == 10 || Radix == 8 || Radix == 16 || Radix == 2 || in toString()
2170 Radix == 36) && in toString()
2175 switch (Radix) { in toString()
2229 *--BufPtr = Digits[N % Radix]; in toString()
2230 N /= Radix; in toString()
2257 if (Radix == 2 || Radix == 8 || Radix == 16) { in toString()
2259 unsigned ShiftAmt = (Radix == 16 ? 4 : (Radix == 8 ? 3 : 1)); in toString()
2260 unsigned MaskAmt = Radix - 1; in toString()
2270 udivrem(Tmp, Radix, Tmp, Digit); in toString()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp302 static std::string radixName(unsigned Radix) { in radixName() argument
303 switch (Radix) { in radixName()
313 return "base-" + std::to_string(Radix); in radixName()
372 unsigned Radix = 0; in LexDigit() local
376 Radix = 16; in LexDigit()
380 Radix = 10; in LexDigit()
385 Radix = 8; in LexDigit()
389 Radix = 2; in LexDigit()
393 Radix = 10; in LexDigit()
397 Radix = 2; in LexDigit()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringRef.h41 bool getAsUnsignedInteger(StringRef Str, unsigned Radix,
44 bool getAsSignedInteger(StringRef Str, unsigned Radix, long long &Result);
46 bool consumeUnsignedInteger(StringRef &Str, unsigned Radix,
48 bool consumeSignedInteger(StringRef &Str, unsigned Radix, long long &Result);
507 getAsInteger(unsigned Radix, T &Result) const { in getAsInteger() argument
509 if (getAsSignedInteger(*this, Radix, LLVal) || in getAsInteger()
518 getAsInteger(unsigned Radix, T &Result) const { in getAsInteger() argument
523 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger()
541 consumeInteger(unsigned Radix, T &Result) { in consumeInteger() argument
543 if (consumeSignedInteger(*this, Radix, LLVal) || in consumeInteger()
[all …]
H A DAPSInt.h82 void toString(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
83 APInt::toString(Str, Radix, isSigned());
87 std::string toString(unsigned Radix) const { in toString() argument
88 return APInt::toString(Radix, isSigned()); in toString()
H A DAPInt.h1741 void toString(SmallVectorImpl<char> &Str, unsigned Radix, bool Signed,
1746 void toStringUnsigned(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
1747 toString(Str, Radix, false, false);
1752 void toStringSigned(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
1753 toString(Str, Radix, true, false);
1761 std::string toString(unsigned Radix, bool Signed) const;
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp50 Radix("radix", cl::desc("print the offset within the file"), variable
55 static cl::alias RadixShort("t", cl::desc(""), cl::aliasopt(Radix));
66 switch (Radix) { in strings()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h169 void setMasmDefaultRadix(unsigned Radix) { DefaultRadix = Radix; } in setMasmDefaultRadix() argument
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-size/
H A Dllvm-size.cpp78 static cl::opt<RadixTy> Radix( variable
166 conv.toString(result, Radix, false, true); in getNumLengthAsString()
172 switch (Radix) { in getRadixFmt()
221 if (Radix == hexadecimal) in printDarwinSectionSizes()
505 << (Radix == octal ? "oct" : "dec") in printObjectSectionSizes()
518 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << "\t" in printObjectSectionSizes()
869 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << "\t" in printBerkeleyTotals()
884 Radix = RadixShort.getValue(); in main()
/netbsd-src/external/lgpl3/gmp/dist/doc/
H A Dgmp.info141 Node: Radix Conversion Algorithms326180
142 Node: Binary to Radix326556
143 Node: Radix to Binary330177
/netbsd-src/external/gpl3/gcc/dist/gcc/config/arc/
H A DarcEM.md88 ;; Radix-4 divider timing
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/arc/
H A DarcEM.md88 ;; Radix-4 divider timing
/netbsd-src/share/locale/numeric/
H A Dnb_NO.UTF-8.src29 # Decimal Delimiter/Radix Character (decimal_point)
H A Dfr_BE.UTF-8.src29 # Decimal Delimiter/Radix Character (decimal_point)
H A Dpl_PL.UTF-8.src29 # Decimal Delimiter/Radix Character (decimal_point)
H A Dsl_SI.UTF-8.src29 # Decimal Delimiter/Radix Character (decimal_point)
H A Duk_UA.UTF-8.src29 # Decimal Delimiter/Radix Character (decimal_point)
H A Den_CA.UTF-8.src29 # Decimal Delimiter/Radix Character (decimal_point)
/netbsd-src/share/locale/numeric/converted/
H A Dfi_FI.ISO8859-15.src29 # Decimal Delimiter/Radix Character (decimal_point)
H A Dde_CH.ISO8859-1.src29 # Decimal Delimiter/Radix Character (decimal_point)
H A Det_EE.ISO8859-15.src29 # Decimal Delimiter/Radix Character (decimal_point)
H A Dpl_PL.ISO8859-2.src29 # Decimal Delimiter/Radix Character (decimal_point)
H A Dfr_CH.ISO8859-1.src29 # Decimal Delimiter/Radix Character (decimal_point)

123456789