HomeSort by relevance Sort by last modified time
    Searched refs:UB (Results 1 - 25 of 39) sorted by null

1 2

  /external/libvpx/libvpx/third_party/libyuv/source/
row_common.cc 1238 int ub = -yuvconstants->kUVToRB[0]; local
    [all...]
  /external/libyuv/files/source/
row_common.cc 990 #define UB -128 /* max(-128, round(-2.018 * 64)) */
996 #define BB (UB * 128 + YGB)
1234 int ub = -yuvconstants->kUVToRB[0]; local
    [all...]
  /external/llvm/lib/Analysis/
ObjCARCAliasAnalysis.cpp 58 const Value *UB = GetUnderlyingObjCPtr(SB, DL);
59 if (UA != SA || UB != SB) {
60 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB));
DependenceAnalysis.cpp 860 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop());
861 if (!isa<SCEVCouldNotCompute>(UB)) {
863 SE->getTypeSizeInBits(UB->getType())) {
885 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop());
886 if (!isa<SCEVCouldNotCompute>(UB)) {
888 SE->getTypeSizeInBits(UB->getType())) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4def.h 47 /* You don't want to use ((x>UB)?UB:(x<LB)?LB:x) for the clipping */
50 #define CLIP_THE_RANGE(x,LB,UB) if ((x)<(LB)) (x) = (LB); else if ((x)>(UB)) (x) = (UB)
  /external/clang/test/CodeGen/
xcore-stringtype.c 150 // 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;
167 int unionTypeB(union UB ub) {return UnionAnon.A;}
  /toolchain/binutils/binutils-2.25/gold/
aarch64-reloc-property.cc 106 #define ARD(rname, type, class, is_implemented, group_index, LB, UB, BSL, BSH, RFLAGS, inst) \
118 rvalue_checkup<LB,UB>, \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
clast.h 103 struct clast_expr * UB;
145 struct clast_expr *LB, struct clast_expr *UB,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
clast.h 103 struct clast_expr * UB;
145 struct clast_expr *LB, struct clast_expr *UB,
  /external/mesa3d/src/mesa/main/
macros.h 150 #define UNCLAMPED_FLOAT_TO_UBYTE(UB, FLT) \
155 UB = (GLubyte) 0; \
157 UB = (GLubyte) 255; \
160 UB = (GLubyte) __tmp.i; \
163 #define CLAMPED_FLOAT_TO_UBYTE(UB, FLT) \
167 UB = (GLubyte) __tmp.i; \
170 #define UNCLAMPED_FLOAT_TO_UBYTE(ub, f) \
171 ub = ((GLubyte) _mesa_lroundevenf(CLAMP((f), 0.0F, 1.0F) * 255.0F))
172 #define CLAMPED_FLOAT_TO_UBYTE(ub, f) \
173 ub = ((GLubyte) _mesa_lroundevenf((f) * 255.0F)
    [all...]
  /system/bt/stack/smp/
p_256_multprecision.cc 333 uint8_t UB;
366 UB = UC;
368 UB += (B < a[12]);
372 UA = UB;
408 U -= UB;
465 U += UB;
  /external/llvm/tools/llvm-size/
llvm-size.cpp 557 } else if (MachOUniversalBinary *UB =
565 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
566 E = UB->end_objects();
657 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
658 E = UB->end_objects();
731 bool MoreThanOneArch = UB->getNumberOfObjects() > 1;
732 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
733 E = UB->end_objects();
    [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.h 641 llvm::Value *UB,
649 /// bounds \a LB and \a UB and stride \a ST.
661 /// \param UB Address of the output variable in which the upper iteration
671 Address IL, Address LB, Address UB, Address ST,
685 /// \param UB Address of the output variable in which the upper iteration
696 Address UB, Address ST,
    [all...]
CGStmtOpenMP.cpp     [all...]
  /external/clang/lib/AST/
StmtOpenMP.cpp 147 Dir->setUpperBoundVariable(Exprs.UB);
200 Dir->setUpperBoundVariable(Exprs.UB);
369 Dir->setUpperBoundVariable(Exprs.UB);
420 Dir->setUpperBoundVariable(Exprs.UB);
    [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 303 const CFGBlock *UB = I->getPossiblyUnreachableBlock();
304 if (!UB)
314 B = UB;
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp     [all...]
  /external/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 341 if (MachOUniversalBinary *UB = dyn_cast_or_null<MachOUniversalBinary>(Bin)) {
347 UB->getObjectForArch(ArchName);
  /external/clang/include/clang/AST/
StmtOpenMP.h 448 void setUpperBoundVariable(Expr *UB) {
453 *std::next(child_begin(), UpperBoundVariableOffset) = UB;
535 Expr *UB;
583 UB = nullptr;
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
StmtOpenMP.h 475 void setUpperBoundVariable(Expr *UB) {
480 *std::next(child_begin(), UpperBoundVariableOffset) = UB;
576 Expr *UB;
579 /// \brief EnsureUpperBound -- expression UB = min(UB, NumIterations).
597 /// when ensuring that the UB is either the calculated UB by the runtime or
599 /// expression UB = min (UB, PrevUB)
634 UB = nullptr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
StmtOpenMP.h 475 void setUpperBoundVariable(Expr *UB) {
480 *std::next(child_begin(), UpperBoundVariableOffset) = UB;
576 Expr *UB;
579 /// \brief EnsureUpperBound -- expression UB = min(UB, NumIterations).
597 /// when ensuring that the UB is either the calculated UB by the runtime or
599 /// expression UB = min (UB, PrevUB)
634 UB = nullptr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
StmtOpenMP.h 475 void setUpperBoundVariable(Expr *UB) {
480 *std::next(child_begin(), UpperBoundVariableOffset) = UB;
576 Expr *UB;
579 /// \brief EnsureUpperBound -- expression UB = min(UB, NumIterations).
597 /// when ensuring that the UB is either the calculated UB by the runtime or
599 /// expression UB = min (UB, PrevUB)
634 UB = nullptr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
StmtOpenMP.h 475 void setUpperBoundVariable(Expr *UB) {
480 *std::next(child_begin(), UpperBoundVariableOffset) = UB;
576 Expr *UB;
579 /// \brief EnsureUpperBound -- expression UB = min(UB, NumIterations).
597 /// when ensuring that the UB is either the calculated UB by the runtime or
599 /// expression UB = min (UB, PrevUB)
634 UB = nullptr
    [all...]

Completed in 924 milliseconds

1 2