/external/skia/include/core/ |
H A D | SkUnPreMultiply.h | 20 typedef uint32_t Scale; typedef in class:SkUnPreMultiply 23 static const Scale* GetScaleTable() { 27 static Scale GetScale(U8CPU alpha) { 34 const Scale* table = SkUnPreMultiply::GetScaleTable(); 38 SkUnPreMultiply::Scale scale = table[a]; 45 static U8CPU ApplyScale(Scale scale, U8CPU component) {
|
/external/ImageMagick/Magick++/demo/ |
H A D | zoom.cpp | 45 Scale, enumerator in enum:ResizeAlgorithm 110 resize_algorithm=Scale; 173 case Scale:
|
/external/webrtc/webrtc/modules/utility/source/ |
H A D | audio_frame_operations.cc | 77 int AudioFrameOperations::Scale(float left, float right, AudioFrame& frame) { function in class:webrtc::AudioFrameOperations
|
/external/clang/test/CodeGenCXX/ |
H A D | pragma-loop.cpp | 134 const int Scale = 4; local 135 #pragma clang loop vectorize_width(Scale * V) interleave_count(Scale * I) unroll_count(Scale * U) 141 #pragma clang loop vectorize_width((Scale * V) + 2)
|
/external/compiler-rt/lib/esan/ |
H A D | esan_shadow.h | 118 uptr Scale; member in class:__esan::ShadowMapping 126 Scale = ShadowScale; 127 if (Scale <= 2) 128 Offset = OffsetArray[Scale]; 130 Offset = OffsetArray[0] << Scale; 159 return (((App & ShadowMapping::Mask) + Mapping.Offset) >> Mapping.Scale);
|
/external/llvm/include/llvm/Transforms/Utils/ |
H A D | Local.h | 225 Constant *Scale = ConstantInt::get(IntPtrTy, Size); local 227 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/); 229 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
|
/external/llvm/lib/Support/ |
H A D | BranchProbability.cpp | 53 // Scale down Denominator to fit in a 32-bit integer. 54 int Scale = 0; local 57 Scale++; 59 return BranchProbability(Numerator >> Scale, Denominator);
|
/external/webrtc/webrtc/common_video/libyuv/ |
H A D | scaler.cc | 50 int Scaler::Scale(const VideoFrame& src_frame, VideoFrame* dst_frame) { function in class:webrtc::Scaler
|
/external/fonttools/Lib/fontTools/misc/ |
H A D | transform.py | 16 Scale -- Convenience function that returns a scaling transformation 23 >>> t = Scale(2, 3) 51 __all__ = ["Transform", "Identity", "Offset", "Scale"] 118 >>> t = Scale(2, 3) 300 >>> d = {Scale(12, 13): None} 340 def Scale(x, y=None): function 345 >>> Scale(2, 3)
|
/external/fonttools/Tools/fontTools/misc/ |
H A D | transform.py | 16 Scale -- Convenience function that returns a scaling transformation 23 >>> t = Scale(2, 3) 51 __all__ = ["Transform", "Identity", "Offset", "Scale"] 118 >>> t = Scale(2, 3) 300 >>> d = {Scale(12, 13): None} 340 def Scale(x, y=None): function 345 >>> Scale(2, 3)
|
/external/llvm/include/llvm/Analysis/ |
H A D | BasicAliasAnalysis.h | 87 // SExtBits), ZExtBits) * Scale + Offset. 100 int64_t Scale; member in struct:llvm::BasicAAResult::VariableGEPIndex 104 SExtBits == Other.SExtBits && Scale == Other.Scale; 151 GetLinearExpression(const Value *V, APInt &Scale, APInt &Offset,
|
/external/llvm/include/llvm/IR/ |
H A D | ProfileSummary.h | 61 static const int Scale = 1000000; member in class:llvm::ProfileSummary
|
/external/llvm/include/llvm/Transforms/ |
H A D | Instrumentation.h | 178 /// \brief Scale an individual branch count. 180 /// Scale a 64-bit weight down to 32-bits using \c Scale. 182 static inline uint32_t scaleBranchCount(uint64_t Count, uint64_t Scale) { argument 183 uint64_t Scaled = Count / Scale;
|
/external/llvm/lib/Target/X86/ |
H A D | X86ShuffleDecodeConstantPool.cpp | 57 int Scale = BitWidth / 8; local 58 int NumBytes = NumElts * Scale; 67 ShuffleMask.append(Scale, SM_SentinelUndef); 72 for (int j = 0; j != Scale; ++j) { 75 int Base = ((i * Scale) + j) & ~0xf; 252 int Scale = BitWidth / 8; local 253 int NumBytes = NumElts * Scale; 262 ShuffleMask.append(Scale, SM_SentinelUndef); 280 for (int j = 0; j != Scale; ++j) {
|
H A D | X86InstrBuilder.h | 20 // (Operand), Base, Scale, Index, Displacement. 48 unsigned Scale; member in struct:llvm::X86AddressMode 55 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(nullptr), 62 assert(Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8); 72 MO.push_back(MachineOperand::CreateImm(Scale)); 101 AM.Scale = Op.getImm(); 153 assert(AM.Scale [all...] |
H A D | X86OptimizeLEAs.cpp | 69 MemOpKey(const MachineOperand *Base, const MachineOperand *Scale, argument 74 Operands[1] = Scale;
|
/external/clang/include/clang/AST/ |
H A D | CharUnits.h | 208 inline clang::CharUnits operator* (clang::CharUnits::QuantityType Scale, argument 210 return CU * Scale;
|
/external/dng_sdk/source/ |
H A D | dng_matrix.cpp | 227 void dng_matrix::Scale (real64 factor) function in class:dng_matrix 571 void dng_vector::Scale (real64 factor) function in class:dng_vector 804 B.Scale (scale); 818 B.Scale (scale);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
H A D | SpillPlacement.cpp | 70 /// Scale - Inverse block frequency feeding into[0] or out of[1] the bundle. 74 float Scale[2]; member in struct:SpillPlacement::Node 110 Scale[0] = Scale[1] = 0; 124 w *= Scale[out]; 140 w *= Scale[out]; 185 nodes[bundles->getBundle(Num, 1)].Scale[0] += Freq; 186 nodes[bundles->getBundle(Num, 0)].Scale[1] += Freq; 192 if (nodes[i].Scale[d] > 0) 193 nodes[i].Scale[ [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
H A D | Thumb1RegisterInfo.cpp | 143 unsigned NumBits, unsigned Scale) { 145 unsigned Chunk = ((1 << NumBits) - 1) * Scale; 152 Scale = 1; // Followed by a number of tADDi8. 153 Chunk = ((1 << NumBits) - 1) * Scale; 180 unsigned Scale = 1; 188 Scale = 4; 201 Scale = 4; 214 Scale = 4; 223 unsigned NumMIs = calcNumMI(Opc, ExtraOpc, Bytes, NumBits, Scale); 253 unsigned Chunk = ((1 << NumBits) - 1) * Scale; 142 calcNumMI(int Opc, int ExtraOpc, unsigned Bytes, unsigned NumBits, unsigned Scale) argument 487 unsigned Scale = 4; variable [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
H A D | X86InstrBuilder.h | 20 // (Operand), Base, Scale, Index, Displacement. 49 unsigned Scale; member in struct:llvm::X86AddressMode 56 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0), GVOpFlags(0) { 62 assert(Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8); 72 MO.push_back(MachineOperand::CreateImm(Scale)); 125 assert(AM.Scale == 1 || AM.Scale [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
H A D | AddrModeMatcher.cpp | 48 if (Scale) { 50 << Scale << "*"; 64 /// MatchScaledValue - Try adding ScaleReg*Scale to the current addressing mode. 67 bool AddressingModeMatcher::MatchScaledValue(Value *ScaleReg, int64_t Scale, argument 69 // If Scale is 1, then this is the same as adding ScaleReg to the addressing 71 if (Scale == 1) 75 if (Scale == 0) 80 if (AddrMode.Scale != 0 && AddrMode.ScaledReg != ScaleReg) 87 TestAddrMode.Scale += Scale; [all...] |
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
H A D | matrix.h | 148 Matrix& Scale(const S& scalar) { function in class:webrtc::Matrix 157 Matrix& Scale(const Matrix& operand, const S& scalar) { function in class:webrtc::Matrix 159 return Scale(scalar);
|
/external/llvm/lib/Target/X86/Utils/ |
H A D | X86ShuffleDecode.cpp | 284 unsigned Scale = DstVT.getSizeInBits() / SrcVT.getSizeInBits(); local 286 for (unsigned i = 0; i != Scale; ++i) 412 unsigned Scale = DstScalarBits / SrcScalarBits; local 418 for (unsigned j = 1; j != Scale; j++)
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
H A D | InstCombineAddSub.cpp | 432 Constant *Scale = ConstantInt::get(IntPtrTy, Size); local 435 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/); 437 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
|