Searched refs:amount_ (Results 1 – 8 of 8) sorted by relevance
/external/vixl/src/aarch32/ |
D | operands-aarch32.h | 60 amount_(0), in Operand() 66 amount_(0), in Operand() 77 amount_(0), in Operand() 86 : imm_(0), rm_(rm), shift_(shift), amount_(0), rs_(NoReg) { in Operand() 96 : imm_(0), rm_(rm), shift_(shift), amount_(amount), rs_(NoReg) { in Operand() 102 VIXL_ASSERT(amount_ <= 31); in Operand() 105 VIXL_ASSERT(amount_ <= 31); in Operand() 109 VIXL_ASSERT(amount_ <= 32); in Operand() 124 : imm_(0), rm_(rm), shift_(shift), amount_(0), rs_(rs) { in Operand() 157 return rm_.IsValid() && !shift_.IsRRX() && !rs_.IsValid() && (amount_ == 0); in IsPlainRegister() [all …]
|
D | instructions-aarch32.cc | 586 amount_ = amount_value; in ImmediateShiftOperand() 590 amount_ = (amount_value == 0) ? 32 : amount_value; in ImmediateShiftOperand() 593 amount_ = amount_value; in ImmediateShiftOperand() 599 amount_ = 0; in ImmediateShiftOperand()
|
D | assembler-aarch32.cc | 1974 uint32_t amount_ = amount % 32; in adc() local 1977 ((amount_ & 0x3) << 6) | ((amount_ & 0x1c) << 10)); in adc() 1984 uint32_t amount_ = amount % 32; in adc() local 1987 (operand.GetTypeEncodingValue() << 5) | (amount_ << 7)); in adc() 2062 uint32_t amount_ = amount % 32; in adcs() local 2065 ((amount_ & 0x3) << 6) | ((amount_ & 0x1c) << 10)); in adcs() 2072 uint32_t amount_ = amount % 32; in adcs() local 2075 (operand.GetTypeEncodingValue() << 5) | (amount_ << 7)); in adcs() 2261 uint32_t amount_ = amount % 32; in add() local 2264 ((amount_ & 0x3) << 6) | ((amount_ & 0x1c) << 10)); in add() [all …]
|
D | instructions-aarch32.h | 1087 : Shift(shift), amount_(amount) { in ImmediateShiftOperand() 1113 uint32_t GetAmount() const { return amount_; } in GetAmount() 1115 return amount_ == (rhs.amount_) && Shift::Is(*this); in Is() 1119 uint32_t amount_;
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Image.h | 807 void cycleColormap(const ::ssize_t amount_); 1370 void spread(const double amount_=3.0); 1457 const double amount_,const double threshold_); 1459 const double sigma_,const double amount_,const double threshold_);
|
D | STL.h | 325 cycleColormapImage( const ::ssize_t amount_ ); 1099 spreadImage( const size_t amount_ = 3 );
|
/external/ImageMagick/Magick++/lib/ |
D | STL.cpp | 281 Magick::cycleColormapImage::cycleColormapImage( const ssize_t amount_ ) in cycleColormapImage() argument 282 : _amount( amount_ ) in cycleColormapImage() 1025 Magick::spreadImage::spreadImage( const size_t amount_ ) in spreadImage() argument 1026 : _amount( amount_ ) in spreadImage()
|
D | Image.cpp | 2668 void Magick::Image::cycleColormap(const ssize_t amount_) in cycleColormap() argument 2672 CycleColormapImage(image(),amount_,exceptionInfo); in cycleColormap() 4539 void Magick::Image::spread(const double amount_) in spread() argument 4545 newImage=SpreadImage(constImage(),image()->interpolate,amount_,exceptionInfo); in spread() 4796 const double amount_,const double threshold_) in unsharpmask() argument 4802 newImage=UnsharpMaskImage(constImage(),radius_,sigma_,amount_,threshold_, in unsharpmask() 4809 const double radius_,const double sigma_,const double amount_, in unsharpmaskChannel() argument 4817 newImage=UnsharpMaskImage(constImage(),radius_,sigma_,amount_,threshold_, in unsharpmaskChannel()
|