HomeSort by relevance Sort by last modified time
    Searched full:typewidth (Results 1 - 11 of 11) sorted by null

  /external/clang/lib/Frontend/
InitPreprocessor.cpp 182 /// named MacroName with the max value for a type with width 'TypeWidth' a
184 static void DefineTypeSize(const Twine &MacroName, unsigned TypeWidth,
187 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
188 : llvm::APInt::getMaxValue(TypeWidth);
229 int TypeWidth = TI.getTypeWidth(Ty);
234 if (TypeWidth == 64)
239 DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
240 DefineFmt(Prefix + Twine(TypeWidth), Ty, TI, Builder);
243 Builder.defineMacro(Prefix + Twine(TypeWidth) + "_C_SUFFIX__", ConstSuffix);
249 int TypeWidth = TI.getTypeWidth(Ty)
    [all...]
  /external/compiler-rt/lib/builtins/
fp_lib.h 216 #define typeWidth (sizeof(rep_t)*CHAR_BIT)
217 #define exponentBits (typeWidth - significandBits - 1)
248 *hi = *hi << count | *lo >> (typeWidth - count);
253 if (count < typeWidth) {
254 const bool sticky = *lo << (typeWidth - count);
255 *lo = *hi << (typeWidth - count) | *lo >> count | sticky;
258 else if (count < 2*typeWidth) {
259 const bool sticky = *hi << (2*typeWidth - count) | *lo;
260 *lo = *hi >> (count - typeWidth) | sticky;
fp_add_impl.inc 85 if (align < typeWidth) {
86 const bool sticky = bSignificand << (typeWidth - align);
124 const bool sticky = aSignificand << (typeWidth - shift);
floatsisf.c 50 rep_t round = (rep_t)a << (typeWidth - shift);
floatunsisf.c 42 rep_t round = (rep_t)a << (typeWidth - shift);
fp_mul_impl.inc 95 if (shift >= typeWidth) return fromRep(productSign);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 128 unsigned TypeWidth = I->getType()->getScalarSizeInBits();
133 unsigned LowBits = TypeWidth - CI->getZExtValue();
135 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits,
153 unsigned TypeWidth = I->getType()->getScalarSizeInBits();
157 if (CI->getValue().ult(TypeWidth) && CI->getZExtValue() > NumBits) {
160 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits,
220 unsigned TypeWidth = BO->getType()->getScalarSizeInBits();
229 if (NewShAmt >= TypeWidth)
241 APInt Mask(APInt::getLowBitsSet(TypeWidth, TypeWidth - NumBits))
    [all...]
  /external/vixl/test/
test-simulator-a64.cc     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 286 uint64_t TypeWidth = Ctx.getTypeSize(SymbolType);
288 if (ValWidth < TypeWidth) {
291 } else if (ValWidth == TypeWidth) {
    [all...]
  /external/opencv3/3rdparty/libtiff/
tif_dirread.c 4298 uint32 typewidth = TIFFDataWidth((TIFFDataType) dp->tdir_type); local
    [all...]
  /external/pdfium/third_party/libtiff/
tif_dirread.c 4295 uint32 typewidth = TIFFDataWidth((TIFFDataType) dp->tdir_type); local
    [all...]

Completed in 288 milliseconds