Searched defs:UB (Results 1 - 16 of 16) sorted by relevance

/external/llvm/lib/Analysis/
H A DObjCARCAliasAnalysis.cpp58 const Value *UB = GetUnderlyingObjCPtr(SB, DL); local
59 if (UA != SA || UB != SB) {
60 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB));
H A DDependenceAnalysis.cpp866 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); local
867 if (!isa<SCEVCouldNotCompute>(UB)) {
869 SE->getTypeSizeInBits(UB->getType())) {
892 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); local
893 if (!isa<SCEVCouldNotCompute>(UB)) {
895 SE->getTypeSizeInBits(UB->getType())) {
1001 const SCEV *UB = SE->getBackedgeTakenCount(L); local
1002 return SE->getTruncateOrZeroExtend(UB, T);
1013 if (const SCEV *UB = collectUpperBound(L, T))
1014 return dyn_cast<SCEVConstant>(UB);
[all...]
/external/clang/lib/Analysis/
H A DReachableCode.cpp303 const CFGBlock *UB = I->getPossiblyUnreachableBlock(); local
304 if (!UB)
314 B = UB;
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c150 // CHECK: !{{[0-9]+}} = !{i32 (%union.UB*)* @unionTypeB,
151 // CHECK: !"f{si}(u(UB){m(N2){b(2:si)},m(N4){b(4:si)},m(){b(2:si)},
164 union UB{int:4; int:2; int N4:4; int N2:2; unsigned int:4; signed int:4; union
167 int unionTypeB(union UB ub) {return UnionAnon.A;}
/external/clang/include/clang/AST/
H A DStmtOpenMP.h440 void setUpperBoundVariable(Expr *UB) { argument
445 *std::next(child_begin(), UpperBoundVariableOffset) = UB;
506 Expr *UB; member in struct:clang::OMPLoopDirective::HelperExprs
546 UB = nullptr;
/external/libvpx/libvpx/third_party/libyuv/source/
H A Drow_neon.cc121 "vshll.u16 q1, d16, #16 \n" /* Replicate u * UB */\
143 #define UB -128 /* -min(128, round(2.018 * 64)) */ macro
149 #define BB (UB * 128 - YGB)
162 #undef UB macro
1471 "vmov.u8 d24, #112 \n" // UB / VR 0.875 coefficient
1513 "vmov.s16 q10, #112 / 2 \n" // UB / VR 0.875 coefficient
1563 "vmov.s16 q10, #112 / 2 \n" // UB / VR 0.875 coefficient
1641 "vmov.s16 q10, #112 / 2 \n" // UB / VR 0.875 coefficient
1691 "vmov.s16 q10, #127 / 2 \n" // UB / VR 0.500 coefficient
1740 "vmov.s16 q10, #112 / 2 \n" // UB / V
[all...]
H A Drow_neon64.cc138 #define UB -128 /* -min(128, round(2.018 * 64)) */ macro
144 #define BB (UB * 128 - YGB)
153 #undef UB macro
162 "movi v20.8h, #56, lsl #0 \n" /* UB/VR coefficient (0.875) / 2 */ \
1491 "movi v24.8b, #112 \n" // UB / VR 0.875 coefficient
1691 "movi v20.8h, #63, lsl #0 \n" // UB/VR coeff (0.500) / 2
1943 "movi v22.8h, #56, lsl #0 \n" // UB / VR coeff (0.875) / 2
H A Drow_common.cc1008 #define UB -128 /* max(-128, round(-2.018 * 64)) */ macro
1014 #define BB (UB * 128 + YGB)
1022 *b = Clamp((int32)(-(u * UB) + y1 + BB) >> 6);
1037 #undef UB macro
H A Drow_gcc.cc1437 #define UB -128 /* max(-128, round(-2.018 * 64)) */ macro
1443 #define BB (UB * 128 + YGB)
1449 { UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB,
1477 #undef UB macro
[all...]
H A Drow_win.cc49 #define UB -128 /* max(-128, round(-2.018 * 64)) */ macro
55 #define BB (UB * 128 + YGB)
61 { UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB,
89 #undef UB macro
[all...]
/external/libyuv/files/source/
H A Drow_common.cc428 #define UB 127 /* min(63,static_cast<int8>(2.018 * 64)) */ macro
437 #define BB UB * 128 + VB * 128
453 uint32 b = Clip(static_cast<int32>((u * UB + v * VB) - (BB) + y1) >> 6);
465 *b = Clip(static_cast<int32>((u * UB + v * VB) - (BB) + y1) >> 6);
H A Drow_posix.cc1276 #define UB 127 /* min(63,static_cast<int8>(2.018 * 64)) */ macro
1285 #define BB UB * 128 + VB * 128
1304 { UB, VB, UB, VB, UB, VB, UB, VB, UB, VB, UB, VB, UB, VB, UB, V
[all...]
H A Drow_win.cc1478 #define UB 127 /* min(63,static_cast<int8>(2.018 * 64)) */ macro
1487 #define BB UB * 128 + VB * 128
1492 UB, VB, UB, VB, UB, VB, UB, VB, UB, VB, UB, VB, UB, VB, UB, V
[all...]
/external/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp1262 Address UB, Address ST,
1304 // while(__kmpc_dispatch_next(&LB, &UB)) {
1306 // while (idx <= UB) { BODY; ++idx;
1316 // while(UB = min(UB, GlobalUB), idx = LB, idx < UB) {
1317 // while (idx <= UB) { BODY; ++idx; } // inner loop
1319 // UB = UB + ST;
1333 IVSize, IVSigned, Ordered, IL, LB, UB, S
1258 EmitOMPForOuterLoop(OpenMPScheduleClauseKind ScheduleKind, const OMPLoopDirective &S, OMPPrivateScope &LoopScope, bool Ordered, Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk) argument
1504 LValue UB = local
[all...]
H A DCGOpenMPRuntime.cpp1782 bool Ordered, llvm::Value *UB,
1804 UB, // Upper
1816 Address UB, Address ST,
1847 UB.getPointer(), // &UB
1881 Address LB, Address UB,
1891 UB.getPointer(), // &Upper
1778 emitForDispatchInit(CodeGenFunction &CGF, SourceLocation Loc, OpenMPScheduleClauseKind ScheduleKind, unsigned IVSize, bool IVSigned, bool Ordered, llvm::Value *UB, llvm::Value *Chunk) argument
1811 emitForStaticInit(CodeGenFunction &CGF, SourceLocation Loc, OpenMPScheduleClauseKind ScheduleKind, unsigned IVSize, bool IVSigned, bool Ordered, Address IL, Address LB, Address UB, Address ST, llvm::Value *Chunk) argument
1878 emitForNext(CodeGenFunction &CGF, SourceLocation Loc, unsigned IVSize, bool IVSigned, Address IL, Address LB, Address UB, Address ST) argument
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp1319 static void printMachOUniversalHeaders(const object::MachOUniversalBinary *UB, argument
1327 uint32_t nfat_arch = UB->getNumberOfObjects();
1328 StringRef Buf = UB->getData();
1332 outs() << "nfat_arch " << UB->getNumberOfObjects();
1341 MachOUniversalBinary::ObjectForArch OFA(UB, i);
1346 MachOUniversalBinary::ObjectForArch other_OFA(UB, j);
1507 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin))
1508 printMachOUniversalHeaders(UB, !NonVerbose);
1510 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) {
1517 for (MachOUniversalBinary::object_iterator I = UB
[all...]

Completed in 648 milliseconds