/external/tensorflow/tensorflow/compiler/xla/pjrt/ |
D | semaphore.cc | 50 semaphore_->Release(amount_); in ~ScopedReservation() 57 amount_ = other.amount_; in ScopedReservation() 64 amount_ = other.amount_; in operator =()
|
D | semaphore.h | 37 : semaphore_(semaphore), amount_(amount) {} in ScopedReservation() 47 int64_t amount_; variable
|
/external/vixl/src/aarch32/ |
D | operands-aarch32.h | 57 : 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 …]
|
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 | 1089 : 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++/ |
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()
|