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

  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 72 const Value *UB = GetUnderlyingObjCPtr(SB);
73 if (UA != SA || UB != SB) {
74 Result = AliasAnalysis::alias(Location(UA), Location(UB));
  /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/libyuv/files/source/
row_posix.cc     [all...]
row_win.cc     [all...]
row_common.cc 428 #define UB 127 /* min(63,static_cast<int8>(2.018 * 64)) */
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);
    [all...]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 927 const SCEV *UB = SE->getBackedgeTakenCount(L);
928 return SE->getNoopOrZeroExtend(UB, T);
939 if (const SCEV *UB = collectUpperBound(L, T))
940 return dyn_cast<SCEVConstant>(UB);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]

Completed in 272 milliseconds