Home
last modified time | relevance | path

Searched refs:amount_ (Results 1 – 10 of 10) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/pjrt/
Dsemaphore.cc50 semaphore_->Release(amount_); in ~ScopedReservation()
57 amount_ = other.amount_; in ScopedReservation()
64 amount_ = other.amount_; in operator =()
Dsemaphore.h37 : semaphore_(semaphore), amount_(amount) {} in ScopedReservation()
47 int64_t amount_; variable
/external/vixl/src/aarch32/
Doperands-aarch32.h57 : imm_(immediate), rm_(NoReg), shift_(LSL), amount_(0), rs_(NoReg) {} in Operand()
59 : imm_(immediate), rm_(NoReg), shift_(LSL), amount_(0), rs_(NoReg) {} in Operand()
66 : imm_(0), rm_(rm), shift_(LSL), amount_(0), rs_(NoReg) { in Operand()
74 : imm_(0), rm_(rm), shift_(shift), amount_(0), rs_(NoReg) { in Operand()
84 : imm_(0), rm_(rm), shift_(shift), amount_(amount), rs_(NoReg) { in Operand()
90 VIXL_ASSERT(amount_ <= 31); in Operand()
93 VIXL_ASSERT(amount_ <= 31); in Operand()
97 VIXL_ASSERT(amount_ <= 32); in Operand()
112 : imm_(0), rm_(rm), shift_(shift), amount_(0), rs_(rs) { in Operand()
145 return rm_.IsValid() && !shift_.IsRRX() && !rs_.IsValid() && (amount_ == 0); in IsPlainRegister()
[all …]
Dinstructions-aarch32.cc586 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()
Dassembler-aarch32.cc1974 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 …]
Dinstructions-aarch32.h1089 : Shift(shift), amount_(amount) { in ImmediateShiftOperand()
1115 uint32_t GetAmount() const { return amount_; } in GetAmount()
1117 return amount_ == (rhs.amount_) && Shift::Is(*this); in Is()
1121 uint32_t amount_;
/external/ImageMagick/Magick++/lib/Magick++/
DImage.h807 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_);
DSTL.h325 cycleColormapImage( const ::ssize_t amount_ );
1099 spreadImage( const size_t amount_ = 3 );
/external/ImageMagick/Magick++/lib/
DSTL.cpp281 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()
DImage.cpp2668 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()