HomeSort by relevance Sort by last modified time
    Searched refs:features_ (Results 1 - 25 of 35) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_processing/vad/
voice_activity_detector.cc 58 audio_processing_.ExtractFeatures(resampled_ptr, length, &features_);
60 chunkwise_voice_probabilities_.resize(features_.num_frames);
61 chunkwise_rms_.resize(features_.num_frames);
62 std::copy(features_.rms, features_.rms + chunkwise_rms_.size(),
64 if (features_.num_frames > 0) {
65 if (features_.silence) {
78 features_, &chunkwise_voice_probabilities_[0]),
voice_activity_detector.h 65 AudioFeatures features_; member in class:webrtc::VoiceActivityDetector
  /external/vixl/src/
cpu-features.cc 51 : features_(0) {
59 all.features_ = (UINT64_C(1) << kNumberOfFeatures) - 1;
69 features_ |= other.features_;
76 features_ |= MakeFeatureMask(feature0);
77 features_ |= MakeFeatureMask(feature1);
78 features_ |= MakeFeatureMask(feature2);
79 features_ |= MakeFeatureMask(feature3);
83 features_ &= ~other.features_;
    [all...]
cpu-features.h 179 CPUFeatures() : features_(0) {}
261 uint64_t features_; member in class:vixl::CPUFeatures
  /external/libtextclassifier/lang_id/common/fel/
feature-descriptors.h 125 int feature_size() const { return features_.size(); }
128 features_.emplace_back(new FeatureFunctionDescriptor());
129 return features_.back().get();
134 return *(features_[i].get());
141 std::vector<std::unique_ptr<FeatureFunctionDescriptor>> features_; member in class:libtextclassifier3::mobile::FeatureExtractorDescriptor
feature-extractor.h 83 features_.emplace_back(type, value);
87 void clear() { features_.clear(); }
90 int size() const { return features_.size(); }
93 void reserve(int n) { features_.reserve(n); }
96 FeatureType *type(int index) const { return features_[index].type; }
99 FeatureValue value(int index) const { return features_[index].value; }
112 std::vector<Element> features_; member in class:libtextclassifier3::mobile::FeatureVector
  /art/compiler/optimizing/
intrinsics_arm_vixl.h 52 const ArmInstructionSetFeatures& features_; member in class:art::arm::final
intrinsics_arm_vixl.cc 248 features_(codegen->GetInstructionSetFeatures()) {}
441 if (features_.HasARMv8AInstructions()) {
453 if (features_.HasARMv8AInstructions()) {
781 allocator_, features_, DataType::Type::kInt32, /* is_volatile= */ false, invoke);
785 allocator_, features_, DataType::Type::kInt32, /* is_volatile= */ false, invoke);
789 allocator_, features_, DataType::Type::kInt32, /* is_volatile= */ true, invoke);
793 allocator_, features_, DataType::Type::kReference, /* is_volatile= */ false, invoke);
    [all...]
  /external/libtextclassifier/annotator/
cached-features.cc 76 cached_features->features_ = std::move(features);
144 features_->begin() + copy_span.first * NumFeaturesPerToken(),
145 features_->begin() + copy_span.second * NumFeaturesPerToken());
164 (*features_)[i * NumFeaturesPerToken() + j] / TokenSpanSize(bag_span);
cached-features.h 77 std::unique_ptr<std::vector<float>> features_; member in class:libtextclassifier3::CachedFeatures
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
candidate_graph_runner.h 67 std::unique_ptr<Tensor> features_; member in class:tensorflow::tensorforest::CandidateGraphRunner
candidate_graph_runner.cc 61 features_.reset(new Tensor(tensorflow::DT_INT32, TensorShape({feat_size})));
62 auto feat = features_->flat<int32>();
89 inputs.emplace_back(kFeaturesName, *features_);
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_compiler.h 66 const string& features() const { return features_; }
75 const string features_; member in class:xla::cpu::CpuAotCompilationOptions
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
validation_state.cpp 185 features_.env_relaxed_block_layout = true;
191 features_.bans_op_undef = true;
365 features_.group_ops_reduce_and_scans = true;
368 features_.use_int8_type = true;
369 features_.declare_int8_type = true;
374 features_.declare_int8_type = true;
377 features_.declare_int16_type = true;
381 features_.declare_float16_type = true;
387 features_.declare_int16_type = true;
388 features_.declare_float16_type = true
    [all...]
validation_state.h 464 return features_.env_relaxed_block_layout || options()->relax_block_layout;
488 const Feature& features() const { return features_; }
684 Feature features_; member in namespace:spvtools::val
  /external/deqp-deps/SPIRV-Tools/source/val/
validation_state.cpp 184 features_.env_relaxed_block_layout = true;
190 features_.bans_op_undef = true;
364 features_.group_ops_reduce_and_scans = true;
367 features_.use_int8_type = true;
368 features_.declare_int8_type = true;
373 features_.declare_int8_type = true;
376 features_.declare_int16_type = true;
380 features_.declare_float16_type = true;
386 features_.declare_int16_type = true;
387 features_.declare_float16_type = true
    [all...]
validation_state.h 448 return features_.env_relaxed_block_layout || options()->relax_block_layout;
472 const Feature& features() const { return features_; }
665 Feature features_; member in class:spvtools::val::ValidationState_t
  /external/jsoncpp/src/lib_json/
json_reader.cpp 81 lastValue_(), commentsBefore_(), features_(Features::all()),
86 lastValue_(), commentsBefore_(), features_(features), collectComments_() {
114 if (!features_.allowComments_) {
135 if (features_.strictRoot_) {
200 if (features_.allowDroppedNullPlaceholders_) {
225 if (features_.allowComments_) {
423 } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) {
  /external/jsoncpp/include/json/
reader.h 240 Features features_; member in class:Json::Reader
  /external/fonttools/Lib/fontTools/feaLib/
builder.py 68 self.features_ = {} # ('latn', 'DEU ', 'smcp') --> [LookupBuilder*]
163 self.features_.setdefault(key, []).append(lookup)
197 in self.features_.items()
216 self.features_ = {(script, lang, feature): lookups
218 in self.features_.items()
550 for key, lookups in sorted(self.features_.items(), key=sortFeatureTag):
708 lookups = self.features_.get((key[0], 'dflt', key[2]))
710 self.features_[key] = lookups[:]
712 self.features_[key] = []
    [all...]
  /external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
jsoncpp.cpp 261 lastValue_(), commentsBefore_(), features_(Features::all()),
266 lastValue_(), commentsBefore_(), features_(features), collectComments_() {
294 if (!features_.allowComments_) {
316 if (features_.strictRoot_) {
391 if (features_.allowDroppedNullPlaceholders_) {
417 if (features_.allowComments_) {
649 } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) {
    [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
jsoncpp.cpp 276 lastValue_(), commentsBefore_(), features_(Features::all()),
281 lastValue_(), commentsBefore_(), features_(features), collectComments_() {
309 if (!features_.allowComments_) {
331 if (features_.strictRoot_) {
406 if (features_.allowDroppedNullPlaceholders_) {
432 if (features_.allowComments_) {
664 } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) {
    [all...]
  /external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/
jsoncpp.cpp 261 lastValue_(), commentsBefore_(), features_(Features::all()),
266 lastValue_(), commentsBefore_(), features_(features), collectComments_() {
294 if (!features_.allowComments_) {
316 if (features_.strictRoot_) {
391 if (features_.allowDroppedNullPlaceholders_) {
417 if (features_.allowComments_) {
649 } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) {
    [all...]
  /external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
jsoncpp.cpp 261 lastValue_(), commentsBefore_(), features_(Features::all()),
266 lastValue_(), commentsBefore_(), features_(features), collectComments_() {
294 if (!features_.allowComments_) {
316 if (features_.strictRoot_) {
391 if (features_.allowDroppedNullPlaceholders_) {
417 if (features_.allowComments_) {
649 } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_) {
    [all...]
  /external/v8/src/compiler/
instruction-selector.h 372 return features_.Contains(feature);
744 Features features_; member in class:v8::internal::compiler::final

Completed in 563 milliseconds

1 2