/external/webrtc/rtc_base/ |
D | socket_address.cc | 67 literal_ = false; in Clear() 85 literal_ = addr.literal_; in operator =() 92 literal_ = false; in SetIP() 99 literal_ = false; in SetIP() 106 literal_ = IPFromString(hostname, &ip_); in SetIP() 107 if (!literal_) { in SetIP() 142 if (!literal_ && !hostname_.empty()) in HostAsURIString() 154 if (!literal_ && !hostname_.empty()) in HostAsSensitiveURIString() 217 return IPIsUnspec(ip_) && !literal_ && !hostname_.empty(); in IsUnresolvedIP() 272 literal_ = false; in FromSockAddr()
|
D | socket_address.h | 194 bool literal_; // Indicates that 'hostname_' contains a literal IP string. variable
|
/external/webp/src/enc/ |
D | histogram_enc.c | 35 uint32_t* const literal = p->literal_; in HistogramClear() 40 p->literal_ = literal; in HistogramClear() 52 uint32_t* const dst_literal = dst->literal_; in HistogramCopy() 58 dst->literal_ = dst_literal; in HistogramCopy() 59 memcpy(dst->literal_, src->literal_, literal_size * sizeof(*dst->literal_)); in HistogramCopy() 118 histo->literal_ = (uint32_t*)(memory + sizeof(VP8LHistogram)); in VP8LAllocateHistogram() 134 set->histograms[i]->literal_ = (uint32_t*)(memory + sizeof(VP8LHistogram)); in HistogramSetResetPointers() 206 ++histo->literal_[PixOrCopyLiteral(v, 1)]; in VP8LHistogramAddSinglePixOrCopy() 212 ++histo->literal_[literal_ix]; in VP8LHistogramAddSinglePixOrCopy() 216 ++histo->literal_[NUM_LITERAL_CODES + code]; in VP8LHistogramAddSinglePixOrCopy() [all …]
|
D | backward_references_cost_enc.c | 37 double* literal_; member 79 histo->literal_, m->literal_); in CostModelBuild() 98 m->literal_[(v >> 8) & 0xff] + in GetLiteralCost() 104 return m->literal_[literal_idx]; in GetCacheCost() 111 return m->literal_[VALUES_IN_BYTE + code] + extra_bits; in GetLengthCost() 588 cost_model->literal_ = (double*)(cost_model + 1); in BackwardReferencesHashChainDistanceOnly()
|
D | histogram_enc.h | 34 uint32_t* literal_; // Pointer to the allocated buffer for literal. member
|
D | backward_references_enc.c | 771 ++histos[0]->literal_[g]; in CalculateBestCacheSize() 777 ++histos[i]->literal_[NUM_LITERAL_CODES + NUM_LENGTH_CODES + key]; in CalculateBestCacheSize() 781 ++histos[i]->literal_[g]; in CalculateBestCacheSize() 797 ++histos[i]->literal_[NUM_LITERAL_CODES + code]; in CalculateBestCacheSize()
|
D | vp8l_enc.c | 528 VP8LCreateHuffmanTree(histo->literal_, 15, buf_rle, huff_tree, codes + 0); in GetHuffBitLengthsAndCodes()
|
/external/tensorflow/tensorflow/compiler/xrt/ |
D | xrt_state.cc | 245 return literal_ == nullptr ? StoreToLiteral(backend, literal) in ToLiteral() 246 : literal->CopyFrom(*literal_); in ToLiteral() 267 if (literal_ != nullptr) { in WriteLiteral() 270 return literal_->CopyFrom(literal); in WriteLiteral() 282 if (literal_ == nullptr && (!IsPinned() || swap_pinned)) { in SwapOut() 286 literal_ = absl::make_unique<xla::Literal>(std::move(literal)); in SwapOut() 313 if (literal_ != nullptr) { in SwapIn() 315 stream.get(), *literal_, *scoped_buffer)); in SwapIn() 320 literal_ = nullptr; in SwapIn() 334 return literal_ != nullptr; in IsSwapped()
|
D | xrt_state.h | 291 std::unique_ptr<xla::Literal> literal_; variable
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | outfeed_receiver.cc | 109 literal_(nullptr), in OutfeedData() 116 CHECK(literal_); in literal() 117 return std::move(literal_); in literal() 130 std::unique_ptr<Literal> literal_; member in xla::OutfeedData 135 literal_ = std::move(literal); in SetLiteral() 136 shape_ = literal_->shape(); in SetLiteral()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | indexed_array_analysis.h | 96 const Literal* literal() const { return literal_; } in literal() 99 explicit ConstantArray(const Literal* literal) : literal_(literal) {} in ConstantArray() 100 const Literal* literal_; variable
|
D | hlo_instructions.cc | 1261 literal_(std::move(literal)) {} in HloConstantInstruction() 1266 literal_(std::move(literal)) {} in HloConstantInstruction() 1273 if (literal_.has_value()) { in ToProto() 1274 *proto.mutable_literal() = literal_->ToProto(); in ToProto() 1295 *literal_ = literal_->Relayout(new_layout, shape_index); in RelayoutConstant() 1312 CHECK(literal_.has_value()); in CloneWithNewOperandsImpl() 1315 CHECK(Shape::Equal().MinorToMajorOnlyInLayout()(literal_->shape(), in CloneWithNewOperandsImpl() 1317 return absl::make_unique<HloConstantInstruction>(literal_->Clone(), in CloneWithNewOperandsImpl() 1326 if (literal_.has_value() && in OperandsToStringWithCanonicalNameMap() 1331 operands = literal_->ToStringWithoutShapeOneline(); in OperandsToStringWithCanonicalNameMap() [all …]
|
D | hlo_instructions.h | 838 const Literal& literal() const { return *literal_; } in literal() 840 Literal* mutable_literal() { return &literal_.value(); } in mutable_literal() 842 bool HasLiteral() const { return literal_.has_value(); } in HasLiteral() 866 absl::optional<Literal> literal_; variable 873 string TracingTag() const { return literal_.GetR1U8AsString(); } in TracingTag() 886 Literal literal_; variable 1470 const Literal& literal() const { return *literal_; } in literal() 1472 void set_literal(Literal&& literal) { literal_.emplace(std::move(literal)); } in set_literal() 1474 bool HasLiteral() const { return literal_.has_value(); } in HasLiteral() 1542 absl::optional<Literal> literal_; variable
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | re2.h | 629 literal_(false), in Options() 656 bool literal() const { return literal_; } in literal() 657 void set_literal(bool b) { literal_ = b; } in set_literal() 692 bool literal_; variable
|
D | re2.cc | 51 literal_(false), in Options()
|
/external/webp/src/dsp/ |
D | lossless_enc.c | 682 ADD(0, literal_, literal_size); in VP8LHistogramAdd() 691 ADD_EQ(0, literal_, literal_size); in VP8LHistogramAdd()
|