/external/llvm/lib/Support/ |
D | StringRef.cpp | 322 bool llvm::getAsUnsignedInteger(StringRef Str, unsigned Radix, in getAsUnsignedInteger() argument 325 if (Radix == 0) in getAsUnsignedInteger() 326 Radix = GetAutoSenseRadix(Str); in getAsUnsignedInteger() 346 if (CharVal >= Radix) in getAsUnsignedInteger() 351 Result = Result*Radix+CharVal; in getAsUnsignedInteger() 363 bool llvm::getAsSignedInteger(StringRef Str, unsigned Radix, in getAsSignedInteger() argument 369 if (getAsUnsignedInteger(Str, Radix, ULLVal) || in getAsSignedInteger() 378 if (getAsUnsignedInteger(Str.substr(1), Radix, ULLVal) || in getAsSignedInteger() 389 bool StringRef::getAsInteger(unsigned Radix, APInt &Result) const { in getAsInteger() argument 393 if (Radix == 0) in getAsInteger() [all …]
|
D | APInt.cpp | 2084 void APInt::toString(SmallVectorImpl<char> &Str, unsigned Radix, in toString() argument 2086 assert((Radix == 10 || Radix == 8 || Radix == 16 || Radix == 2 || in toString() 2087 Radix == 36) && in toString() 2092 switch (Radix) { in toString() 2146 *--BufPtr = Digits[N % Radix]; in toString() 2147 N /= Radix; in toString() 2175 if (Radix == 2 || Radix == 8 || Radix == 16) { in toString() 2177 unsigned ShiftAmt = (Radix == 16 ? 4 : (Radix == 8 ? 3 : 1)); in toString() 2178 unsigned MaskAmt = Radix - 1; in toString() 2186 APInt divisor(Radix == 10? 4 : 8, Radix); in toString() [all …]
|
/external/llvm/tools/llvm-size/ |
D | llvm-size.cpp | 52 Radix("-radix", variable 84 conv.toString(result, Radix, false, true); in getNumLengthAsString() 97 switch (Radix) { in PrintObjectSectionSizes() 226 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " " in PrintObjectSectionSizes() 297 Radix = RadixShort; in main() 304 << (Radix == octal ? "oct" : "dec") in main()
|
/external/llvm/include/llvm/ADT/ |
D | StringRef.h | 30 bool getAsUnsignedInteger(StringRef Str, unsigned Radix, 33 bool getAsSignedInteger(StringRef Str, unsigned Radix, long long &Result); 333 getAsInteger(unsigned Radix, T &Result) const { in getAsInteger() argument 335 if (getAsSignedInteger(*this, Radix, LLVal) || in getAsInteger() 344 getAsInteger(unsigned Radix, T &Result) const { in getAsInteger() argument 346 if (getAsUnsignedInteger(*this, Radix, ULLVal) || in getAsInteger() 364 bool getAsInteger(unsigned Radix, APInt &Result) const;
|
D | APSInt.h | 61 void toString(SmallVectorImpl<char> &Str, unsigned Radix = 10) const { 62 APInt::toString(Str, Radix, isSigned()); 66 std::string toString(unsigned Radix) const { in toString() argument 67 return APInt::toString(Radix, isSigned()); in toString()
|
D | APInt.h | 1307 void toString(SmallVectorImpl<char> &Str, unsigned Radix, bool Signed, 1312 void toStringUnsigned(SmallVectorImpl<char> &Str, unsigned Radix = 10) const { 1313 toString(Str, Radix, false, false); 1318 void toStringSigned(SmallVectorImpl<char> &Str, unsigned Radix = 10) const { 1319 toString(Str, Radix, true, false); 1325 std::string toString(unsigned Radix, bool Signed) const;
|
/external/dropbear/libtommath/ |
D | tommath.out | 89 \BOOKMARK [2][-]{subsection.6.2.2}{Choosing a Radix Point}{section.6.2} 99 \BOOKMARK [1][-]{section.6.4}{The Diminished Radix Algorithm}{chapter.6} 102 \BOOKMARK [2][-]{subsection.6.4.3}{Restricted Diminished Radix Reduction}{section.6.4} 103 \BOOKMARK [2][-]{subsection.6.4.4}{Unrestricted Diminished Radix Reduction}{section.6.4} 118 \BOOKMARK [2][-]{subsection.8.1.3}{Radix- Division with Remainder}{section.8.1} 126 \BOOKMARK [2][-]{subsection.8.4.1}{Reading Radix-n Input}{section.8.4} 127 \BOOKMARK [2][-]{subsection.8.4.2}{Generating Radix-n Output}{section.8.4}
|
D | bn.tex | 1493 \section{Restricted Dimminished Radix} 1495 ``Dimminished Radix'' reduction refers to reduction with respect to moduli that are ameniable to si… 1526 \section{Unrestricted Dimminshed Radix} 1567 detect when Barrett, Montgomery, Restricted and Unrestricted Dimminished Radix based exponentiation…
|
/external/dropbear/libtommath/logs/ |
D | graphs.dem | 13 …od (Montgomery)", 'expt_dr.log' smooth bezier title "Exptmod (Dimminished Radix)", 'expt_2k.log' s…
|
/external/llvm/include/llvm-c/ |
D | Core.h | 1333 uint8_t Radix); 1342 unsigned SLen, uint8_t Radix);
|
/external/llvm/lib/VMCore/ |
D | Core.cpp | 616 uint8_t Radix) { in LLVMConstIntOfString() argument 618 Radix)); in LLVMConstIntOfString() 622 unsigned SLen, uint8_t Radix) { in LLVMConstIntOfStringAndSize() argument 624 Radix)); in LLVMConstIntOfStringAndSize()
|
/external/quake/quake/src/QW/ |
D | qwchangelog.txt | 23 telefrag, they both die (happens in deathmatch 4). Thanks to Nolan 'Radix'
|
D | qwrlnote.txt | 149 telefrag, they both die (happens in deathmatch 4). Thanks to Nolan 'Radix'
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 629 value Radix) { in llvm_const_int_of_string() argument 631 Int_val(Radix)); in llvm_const_int_of_string()
|