Searched defs:Scale (Results 1 - 25 of 98) sorted by relevance

1234

/external/skia/include/core/
H A DSkUnPreMultiply.h20 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 Dzoom.cpp45 Scale, enumerator in enum:ResizeAlgorithm
110 resize_algorithm=Scale;
173 case Scale:
/external/webrtc/webrtc/modules/utility/source/
H A Daudio_frame_operations.cc77 int AudioFrameOperations::Scale(float left, float right, AudioFrame& frame) { function in class:webrtc::AudioFrameOperations
/external/clang/test/CodeGenCXX/
H A Dpragma-loop.cpp134 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 Desan_shadow.h118 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 DLocal.h225 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 DBranchProbability.cpp53 // 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 Dscaler.cc50 int Scaler::Scale(const VideoFrame& src_frame, VideoFrame* dst_frame) { function in class:webrtc::Scaler
/external/fonttools/Lib/fontTools/misc/
H A Dtransform.py16 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 Dtransform.py16 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 DBasicAliasAnalysis.h87 // 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 DProfileSummary.h61 static const int Scale = 1000000; member in class:llvm::ProfileSummary
/external/llvm/include/llvm/Transforms/
H A DInstrumentation.h178 /// \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 DX86ShuffleDecodeConstantPool.cpp57 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 DX86InstrBuilder.h20 // (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 DX86OptimizeLEAs.cpp69 MemOpKey(const MachineOperand *Base, const MachineOperand *Scale, argument
74 Operands[1] = Scale;
/external/clang/include/clang/AST/
H A DCharUnits.h208 inline clang::CharUnits operator* (clang::CharUnits::QuantityType Scale, argument
210 return CU * Scale;
/external/dng_sdk/source/
H A Ddng_matrix.cpp227 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 DSpillPlacement.cpp70 /// 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 DThumb1RegisterInfo.cpp143 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 DX86InstrBuilder.h20 // (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 DAddrModeMatcher.cpp48 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 Dmatrix.h148 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 DX86ShuffleDecode.cpp284 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 DInstCombineAddSub.cpp432 Constant *Scale = ConstantInt::get(IntPtrTy, Size); local
435 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
437 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");

Completed in 1150 milliseconds

1234