Home
last modified time | relevance | path

Searched refs:feature_id (Results 1 – 25 of 26) sorted by relevance

12

/external/libvpx/libvpx/vp9/common/
Dvp9_seg_common.c35 SEG_LVL_FEATURES feature_id) { in vp9_enable_segfeature() argument
36 seg->feature_mask[segment_id] |= 1 << feature_id; in vp9_enable_segfeature()
39 int vp9_seg_feature_data_max(SEG_LVL_FEATURES feature_id) { in vp9_seg_feature_data_max() argument
40 return seg_feature_data_max[feature_id]; in vp9_seg_feature_data_max()
43 int vp9_is_segfeature_signed(SEG_LVL_FEATURES feature_id) { in vp9_is_segfeature_signed() argument
44 return seg_feature_data_signed[feature_id]; in vp9_is_segfeature_signed()
48 SEG_LVL_FEATURES feature_id, int seg_data) { in vp9_set_segdata() argument
49 assert(seg_data <= seg_feature_data_max[feature_id]); in vp9_set_segdata()
51 assert(seg_feature_data_signed[feature_id]); in vp9_set_segdata()
52 assert(-seg_data <= seg_feature_data_max[feature_id]); in vp9_set_segdata()
[all …]
Dvp9_seg_common.h54 SEG_LVL_FEATURES feature_id) { in segfeature_active() argument
55 return seg->enabled && (seg->feature_mask[segment_id] & (1 << feature_id)); in segfeature_active()
61 SEG_LVL_FEATURES feature_id);
63 int vp9_seg_feature_data_max(SEG_LVL_FEATURES feature_id);
65 int vp9_is_segfeature_signed(SEG_LVL_FEATURES feature_id);
68 SEG_LVL_FEATURES feature_id, int seg_data);
71 SEG_LVL_FEATURES feature_id) { in get_segdata() argument
72 return seg->feature_data[segment_id][feature_id]; in get_segdata()
/external/libaom/libaom/av1/common/
Dseg_common.c56 SEG_LVL_FEATURES feature_id) { in av1_enable_segfeature() argument
57 seg->feature_mask[segment_id] |= 1 << feature_id; in av1_enable_segfeature()
60 int av1_seg_feature_data_max(SEG_LVL_FEATURES feature_id) { in av1_seg_feature_data_max() argument
61 return seg_feature_data_max[feature_id]; in av1_seg_feature_data_max()
64 int av1_is_segfeature_signed(SEG_LVL_FEATURES feature_id) { in av1_is_segfeature_signed() argument
65 return seg_feature_data_signed[feature_id]; in av1_is_segfeature_signed()
80 SEG_LVL_FEATURES feature_id, int seg_data) { in av1_set_segdata() argument
82 assert(seg_feature_data_signed[feature_id]); in av1_set_segdata()
83 assert(-seg_data <= seg_feature_data_max[feature_id]); in av1_set_segdata()
85 assert(seg_data <= seg_feature_data_max[feature_id]); in av1_set_segdata()
[all …]
Dseg_common.h64 SEG_LVL_FEATURES feature_id) { in segfeature_active() argument
65 return seg->enabled && (seg->feature_mask[segment_id] & (1 << feature_id)); in segfeature_active()
84 SEG_LVL_FEATURES feature_id);
88 int av1_seg_feature_data_max(SEG_LVL_FEATURES feature_id);
90 int av1_is_segfeature_signed(SEG_LVL_FEATURES feature_id);
93 SEG_LVL_FEATURES feature_id, int seg_data);
96 SEG_LVL_FEATURES feature_id) { in get_segdata() argument
97 return seg->feature_data[segment_id][feature_id]; in get_segdata()
/external/libtextclassifier/native/lang_id/common/
Dembedding-network.cc176 int feature_id; in ConcatEmbeddings() local
181 feature_id = float_feature_value.id; in ConcatEmbeddings()
185 feature_id = feature_value; in ConcatEmbeddings()
189 SAFTM_CHECK_GE(feature_id, 0); in ConcatEmbeddings()
190 SAFTM_CHECK_LT(feature_id, embedding_matrix.rows); in ConcatEmbeddings()
195 feature_id * embedding_row_size_in_bytes); in ConcatEmbeddings()
207 multiplier *= Float16To32(embedding_matrix.quant_scales[feature_id]); in ConcatEmbeddings()
219 multiplier *= Float16To32(embedding_matrix.quant_scales[feature_id]); in ConcatEmbeddings()
/external/tensorflow/tensorflow/core/kernels/boosted_trees/
Dtraining_ops.cc194 candidate.feature_id = feature_ids(feature_idx); in FindBestSplitsPerNode()
209 const int32 best_feature_id = best_candidate.feature_id; in FindBestSplitsPerNode()
210 const int32 feature_id = candidate.feature_id; in FindBestSplitsPerNode() local
213 if (feature_id < best_feature_id) { in FindBestSplitsPerNode()
415 const auto& feature_id = feature_ids(candidate_idx); in FindBestSplitsPerNode() local
421 candidate.feature_id = feature_id; in FindBestSplitsPerNode()
434 const int32 best_feature_id = best_candidate.feature_id; in FindBestSplitsPerNode()
435 const int32 feature_id = candidate.feature_id; in FindBestSplitsPerNode() local
438 if (feature_id < best_feature_id) { in FindBestSplitsPerNode()
Dprediction_ops.cc354 int32 feature_id; in Compute() local
369 feature_id = resource->feature_id(tree_id, node_id); in Compute()
370 example_debug_info.add_feature_ids(feature_id); in Compute()
Dresources.cc65 const auto bucketized_feature = bucketized_features[split.feature_id()]; in next_node()
73 const auto bucketized_feature = bucketized_features[split.feature_id()]; in next_node()
176 int32 BoostedTreesEnsembleResource::feature_id(const int32 tree_id, in feature_id() function in tensorflow::BoostedTreesEnsembleResource
180 return node.bucketized_split().feature_id(); in feature_id()
288 new_split->set_feature_id(candidate.feature_id); in AddBucketizedSplitNode()
313 new_split->set_feature_id(candidate.feature_id); in AddCategoricalSplitNode()
Dboosted_trees.proto63 int32 feature_id = 1; field
80 int32 feature_id = 1; field
96 int32 feature_id = 1; field
Dtree_helper.h36 int64 feature_id = 0; member
Dresources.h96 int32 feature_id(const int32 tree_id, const int32 node_id) const;
/external/libaom/libaom/av1/encoder/
Dsegmentation.h26 SEG_LVL_FEATURES feature_id);
28 SEG_LVL_FEATURES feature_id);
Dsegmentation.c37 SEG_LVL_FEATURES feature_id) { in av1_disable_segfeature() argument
38 seg->feature_mask[segment_id] &= ~(1 << feature_id); in av1_disable_segfeature()
42 SEG_LVL_FEATURES feature_id) { in av1_clear_segdata() argument
43 seg->feature_data[segment_id][feature_id] = 0; in av1_clear_segdata()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_segmentation.h25 SEG_LVL_FEATURES feature_id);
27 SEG_LVL_FEATURES feature_id);
Dvp9_segmentation.c41 SEG_LVL_FEATURES feature_id) { in vp9_disable_segfeature() argument
42 seg->feature_mask[segment_id] &= ~(1 << feature_id); in vp9_disable_segfeature()
46 SEG_LVL_FEATURES feature_id) { in vp9_clear_segdata() argument
47 seg->feature_data[segment_id][feature_id] = 0; in vp9_clear_segdata()
/external/libtextclassifier/native/utils/tflite/
Dstring_projection_base.cc79 int32_t feature_id = in GetFeatureWeights() local
81 ids.push_back(feature_id); in GetFeatureWeights()
84 int64_t feature_id = in GetFeatureWeights() local
86 ids.push_back(feature_id); in GetFeatureWeights()
/external/cpuinfo/test/dmesg/
Dalcatel-revvl.log2 [ 15.931649] (6)[460:cameraserver]OV13855_camera_sensor[feature_control] feature_id = 3003
3 [ 15.931662] (6)[460:cameraserver]OV13855_camera_sensor[feature_control] feature_id = 3002
16 [ 15.932024] (6)[460:cameraserver]feature_id = 3003
17 [ 15.932034] (6)[460:cameraserver]feature_id = 3002
30 [ 15.932280] (6)[460:cameraserver]OV13855_camera_sensor[feature_control] feature_id = 3003
31 [ 15.932291] (6)[460:cameraserver]OV13855_camera_sensor[feature_control] feature_id = 3002
32 [ 15.932353] (6)[460:cameraserver]OV13855_camera_sensor[feature_control] feature_id = 3058
34 [ 15.932374] (6)[460:cameraserver]OV13855_camera_sensor[feature_control] feature_id = 3058
36 [ 15.932391] (6)[460:cameraserver]OV13855_camera_sensor[feature_control] feature_id = 3058
38 [ 15.932409] (6)[460:cameraserver]OV13855_camera_sensor[feature_control] feature_id = 3058
[all …]
Doppo-r9.log1054 …6:mediaserver][S5K3L8_camera_sensor] [feature_control] feature_control:feature_id = 3040i2c write …
1080 <5>[ 7.682473] (7)[356:mediaserver][IMX258_camera_sensor] [feature_control] feature_id = 3040
1120 <5>[ 7.750397] (1)[356:mediaserver][S5K3P3SX_camera_sensor] [feature_control] feature_id = 3040
1182 <5>[ 7.784899] (6)[356:mediaserver][S5K3P3SP_camera_sensor] [feature_control] feature_id = 3040
1200 …ver][S5K3L8_camera_sensor] (6)[356:mediaserver][feature_control] feature_control:feature_id = 3003
1202 …366] (6)[356:mediaserver][S5K3L8_camera_sensor] [feature_control] feature_control:feature_id = 3002
1215 <5>[ 7.786578] (6)[356:mediaserver][S5K3P3SP_camera_sensor] [feature_control] feature_id = 3003
1217 <5>[ 7.786597] (6)[356:mediaserver][S5K3P3SP_camera_sensor] [feature_control] feature_id = 3002
1230 …ver][S5K3L8_camera_sensor] (6)[356:mediaserver][feature_control] feature_control:feature_id = 3003
1232 …815] (6)[356:mediaserver][S5K3L8_camera_sensor] [feature_control] feature_control:feature_id = 3002
[all …]
Dmeizu-pro-7-plus.log4791 [ 9.891756] (6)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control] feature_id = 3041
4805 [ 9.907343] (7)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control_stech] feature_id = 3041
4962 [ 10.195188] (7)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control_stech] feature_id = 3003
4964 [ 10.195204] (7)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control_stech] feature_id = 3002
4997 [ 10.195883] (7)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control_stech] feature_id = 3003
4999 [ 10.195901] (7)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control_stech] feature_id = 3002
5000 [ 10.195930] (7)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control_stech] feature_id = 3059
5002 [ 10.195947] (7)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control_stech] feature_id = 3059
5004 [ 10.195959] (7)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control_stech] feature_id = 3059
5006 [ 10.195971] (7)[419:cameraserver]s5k3p8sp_camera_sensor[feature_control_stech] feature_id = 3059
[all …]
Dmeizu-pro-6s.log4098 [ 5.990462] (1)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3040
4230 [ 6.210482] (2)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3040
4256 [ 6.273686] (0)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3003
4257 [ 6.273704] (0)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3002
4270 [ 6.274307] (0)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3003
4271 [ 6.274320] (0)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3002
4272 [ 6.274378] (0)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3058
4274 [ 6.274403] (0)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3058
4276 [ 6.274425] (0)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3058
4278 [ 6.274453] (0)[366:mediaserver]imx386_camera_primax[feature_control] feature_id = 3058
[all …]
/external/tensorflow/tensorflow/core/kernels/tensor_forest/
Dresources.cc53 if ((*dense_data)(example_id, split.feature_id()) <= split.threshold()) { in TraverseTree()
/external/tensorflow/tensorflow/core/protobuf/tpu/
Dtpu_embedding_output_layout.proto16 // "table(table_id).feature(feature_id).output_location" repeated fields within
/external/mesa3d/src/gallium/drivers/radeon/
Dradeon_vcn_dec.h686 unsigned int feature_id; member
/external/virglrenderer/src/
Dvrend_renderer.c359 static inline bool has_feature(enum features_id feature_id) in has_feature() argument
362 feature_list[feature_id].log_name, in has_feature()
363 vrend_state.features[feature_id]); in has_feature()
364 return vrend_state.features[feature_id]; in has_feature()
367 static inline void set_feature(enum features_id feature_id) in set_feature() argument
369 vrend_state.features[feature_id] = true; in set_feature()
/external/expat/tests/
Druntests.c3738 get_feature(enum XML_FeatureEnum feature_id, long *presult) { in get_feature() argument
3744 if (feature->feature == feature_id) { in get_feature()

12