/external/libvpx/libvpx/vp9/common/ |
D | vp9_seg_common.c | 35 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 …]
|
D | vp9_seg_common.h | 54 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/ |
D | seg_common.c | 56 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 …]
|
D | seg_common.h | 64 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/ |
D | embedding-network.cc | 176 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/ |
D | training_ops.cc | 194 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()
|
D | prediction_ops.cc | 354 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()
|
D | resources.cc | 65 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()
|
D | boosted_trees.proto | 63 int32 feature_id = 1; field 80 int32 feature_id = 1; field 96 int32 feature_id = 1; field
|
D | tree_helper.h | 36 int64 feature_id = 0; member
|
D | resources.h | 96 int32 feature_id(const int32 tree_id, const int32 node_id) const;
|
/external/libaom/libaom/av1/encoder/ |
D | segmentation.h | 26 SEG_LVL_FEATURES feature_id); 28 SEG_LVL_FEATURES feature_id);
|
D | segmentation.c | 37 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/ |
D | vp9_segmentation.h | 25 SEG_LVL_FEATURES feature_id); 27 SEG_LVL_FEATURES feature_id);
|
D | vp9_segmentation.c | 41 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/ |
D | string_projection_base.cc | 79 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/ |
D | alcatel-revvl.log | 2 [ 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 …]
|
D | oppo-r9.log | 1054 …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 …]
|
D | meizu-pro-7-plus.log | 4791 [ 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 …]
|
D | meizu-pro-6s.log | 4098 [ 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/ |
D | resources.cc | 53 if ((*dense_data)(example_id, split.feature_id()) <= split.threshold()) { in TraverseTree()
|
/external/tensorflow/tensorflow/core/protobuf/tpu/ |
D | tpu_embedding_output_layout.proto | 16 // "table(table_id).feature(feature_id).output_location" repeated fields within
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | radeon_vcn_dec.h | 686 unsigned int feature_id; member
|
/external/virglrenderer/src/ |
D | vrend_renderer.c | 359 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/ |
D | runtests.c | 3738 get_feature(enum XML_FeatureEnum feature_id, long *presult) { in get_feature() argument 3744 if (feature->feature == feature_id) { in get_feature()
|