Home
last modified time | relevance | path

Searched refs:feat (Results 1 – 25 of 111) sorted by relevance

12345

/third_party/node/deps/npm/node_modules/ci-info/
DCHANGELOG.md15 * feat: support Azure Pipelines ([#23](https://github.com/watson/ci-info/pull/23))
16 * feat: support Netlify CI ([#26](https://github.com/watson/ci-info/pull/26))
17 * feat: support Bitbucket pipelines PR detection ([#27](https://github.com/watson/ci-info/pull/27))
21 * feat: add Sail CI support
22 * feat: add Buddy support
23 * feat: add Bitrise support
24 * feat: detect Jenkins PRs
25 * feat: detect Drone PRs
33 * feat: add dsari detection ([#15](https://github.com/watson/ci-info/pull/15))
34 * feat: add ci.isPR ([#16](https://github.com/watson/ci-info/pull/16))
[all …]
/third_party/node/deps/npm/node_modules/is-ci/node_modules/ci-info/
DCHANGELOG.md5 * feat: add Sail CI support
6 * feat: add Buddy support
7 * feat: add Bitrise support
8 * feat: detect Jenkins PRs
9 * feat: detect Drone PRs
17 * feat: add dsari detection ([#15](https://github.com/watson/ci-info/pull/15))
18 * feat: add ci.isPR ([#16](https://github.com/watson/ci-info/pull/16))
22 * feat: add Cirrus CI detection ([#13](https://github.com/watson/ci-info/pull/13))
23 * feat: add Shippable CI detection ([#14](https://github.com/watson/ci-info/pull/14))
31 * feat: add support for Strider CD
[all …]
/third_party/ffmpeg/libavcodec/
Dvaapi_vp9.c146 .segment_reference_enabled = h->h.segmentation.feat[i].ref_enabled, in vaapi_vp9_decode_slice()
147 .segment_reference = h->h.segmentation.feat[i].ref_val, in vaapi_vp9_decode_slice()
148 .segment_reference_skipped = h->h.segmentation.feat[i].skip_enabled, in vaapi_vp9_decode_slice()
151 .luma_dc_quant_scale = h->h.segmentation.feat[i].qmul[0][0], in vaapi_vp9_decode_slice()
152 .luma_ac_quant_scale = h->h.segmentation.feat[i].qmul[0][1], in vaapi_vp9_decode_slice()
153 .chroma_dc_quant_scale = h->h.segmentation.feat[i].qmul[1][0], in vaapi_vp9_decode_slice()
154 .chroma_ac_quant_scale = h->h.segmentation.feat[i].qmul[1][1], in vaapi_vp9_decode_slice()
157 …memcpy(slice_param.seg_param[i].filter_level, h->h.segmentation.feat[i].lflvl, sizeof(slice_param.… in vaapi_vp9_decode_slice()
Dnvdec_vp9.c123 ppc->segmentFeatureEnable[i][0] = h->h.segmentation.feat[i].q_enabled; in nvdec_vp9_start_frame()
124 ppc->segmentFeatureEnable[i][1] = h->h.segmentation.feat[i].lf_enabled; in nvdec_vp9_start_frame()
125 ppc->segmentFeatureEnable[i][2] = h->h.segmentation.feat[i].ref_enabled; in nvdec_vp9_start_frame()
126 ppc->segmentFeatureEnable[i][3] = h->h.segmentation.feat[i].skip_enabled; in nvdec_vp9_start_frame()
128 ppc->segmentFeatureData[i][0] = h->h.segmentation.feat[i].q_val; in nvdec_vp9_start_frame()
129 ppc->segmentFeatureData[i][1] = h->h.segmentation.feat[i].lf_val; in nvdec_vp9_start_frame()
130 ppc->segmentFeatureData[i][2] = h->h.segmentation.feat[i].ref_val; in nvdec_vp9_start_frame()
Dvdpau_vp9.c122 info->segmentFeatureEnable[i][0] = h->h.segmentation.feat[i].q_enabled; in vdpau_vp9_start_frame()
123 info->segmentFeatureEnable[i][1] = h->h.segmentation.feat[i].lf_enabled; in vdpau_vp9_start_frame()
124 info->segmentFeatureEnable[i][2] = h->h.segmentation.feat[i].ref_enabled; in vdpau_vp9_start_frame()
125 info->segmentFeatureEnable[i][3] = h->h.segmentation.feat[i].skip_enabled; in vdpau_vp9_start_frame()
127 info->segmentFeatureData[i][0] = h->h.segmentation.feat[i].q_val; in vdpau_vp9_start_frame()
128 info->segmentFeatureData[i][1] = h->h.segmentation.feat[i].lf_val; in vdpau_vp9_start_frame()
129 info->segmentFeatureData[i][2] = h->h.segmentation.feat[i].ref_val; in vdpau_vp9_start_frame()
Ddxva2_vp9.c134 pp->stVP9Segments.feature_mask[i] = (h->h.segmentation.feat[i].q_enabled << 0) | in fill_picture_parameters()
135 (h->h.segmentation.feat[i].lf_enabled << 1) | in fill_picture_parameters()
136 (h->h.segmentation.feat[i].ref_enabled << 2) | in fill_picture_parameters()
137 (h->h.segmentation.feat[i].skip_enabled << 3); in fill_picture_parameters()
139 pp->stVP9Segments.feature_data[i][0] = h->h.segmentation.feat[i].q_val; in fill_picture_parameters()
140 pp->stVP9Segments.feature_data[i][1] = h->h.segmentation.feat[i].lf_val; in fill_picture_parameters()
141 pp->stVP9Segments.feature_data[i][2] = h->h.segmentation.feat[i].ref_val; in fill_picture_parameters()
Dvp9.c652 memset(s->s.h.segmentation.feat, 0, sizeof(s->s.h.segmentation.feat)); in decode_frame_header()
709 if ((s->s.h.segmentation.feat[i].q_enabled = get_bits1(&s->gb))) in decode_frame_header()
710 s->s.h.segmentation.feat[i].q_val = get_sbits_inv(&s->gb, 8); in decode_frame_header()
711 if ((s->s.h.segmentation.feat[i].lf_enabled = get_bits1(&s->gb))) in decode_frame_header()
712 s->s.h.segmentation.feat[i].lf_val = get_sbits_inv(&s->gb, 6); in decode_frame_header()
713 if ((s->s.h.segmentation.feat[i].ref_enabled = get_bits1(&s->gb))) in decode_frame_header()
714 s->s.h.segmentation.feat[i].ref_val = get_bits(&s->gb, 2); in decode_frame_header()
715 s->s.h.segmentation.feat[i].skip_enabled = get_bits1(&s->gb); in decode_frame_header()
724 if (s->s.h.segmentation.enabled && s->s.h.segmentation.feat[i].q_enabled) { in decode_frame_header()
726 qyac = av_clip_uintp2(s->s.h.segmentation.feat[i].q_val, 8); in decode_frame_header()
[all …]
/third_party/node/deps/npm/node_modules/agentkeepalive/
DHistory.md18 …odules/agentkeepalive/commit/16f5aeadfda57f1c602652f1472a63cc83cd05bf)] - feat: add typing define.…
37 …odules/agentkeepalive/commit/bc7cadb30ecd2071e2b341ac53ae1a2b8155c43d)] - feat: use socket custom …
45 * feat: add statusChanged getter (#51)
51 * feat: add expiring active sockets
57 * feat: timeout support humanize ms (#48)
66 * feat: merge _http_agent.js from 7.2.1
71 * feat: Add browser shim (noop) for isomorphic use. (#39)
114 * feat(getCurrentStatus): add getCurrentStatus
/third_party/flutter/skia/third_party/externals/freetype/src/gxvalid/
Dgxvfeat.c60 #define GXV_FEAT_DATA( field ) GXV_TABLE_DATA( feat, field )
281 GXV_feat_Data feat = &featrec; in gxv_feat_validate() local
293 gxvalid->table_data = feat; in gxv_feat_validate()
299 feat->reserved_size = 0; in gxv_feat_validate()
303 feat->reserved_size += 4 + 2 + 2 + 4; in gxv_feat_validate()
322 feat->reserved_size += featureNameCount * ( 2 + 2 + 4 + 2 + 2 ); in gxv_feat_validate()
Dgxvmod.c121 GXV_TABLE_DECL( feat ); in gxv_validate()
136 GXV_TABLE_LOAD( feat ); in gxv_validate()
148 GXV_TABLE_VALIDATE( feat ); in gxv_validate()
160 GXV_TABLE_SET( feat ); in gxv_validate()
174 FT_FREE( feat ); in gxv_validate()
/third_party/skia/third_party/externals/freetype/src/gxvalid/
Dgxvfeat.c60 #define GXV_FEAT_DATA( field ) GXV_TABLE_DATA( feat, field )
281 GXV_feat_Data feat = &featrec; in gxv_feat_validate() local
293 gxvalid->table_data = feat; in gxv_feat_validate()
299 feat->reserved_size = 0; in gxv_feat_validate()
303 feat->reserved_size += 4 + 2 + 2 + 4; in gxv_feat_validate()
322 feat->reserved_size += featureNameCount * ( 2 + 2 + 4 + 2 + 2 ); in gxv_feat_validate()
Dgxvmod.c124 GXV_TABLE_DECL( feat ); in gxv_validate()
139 GXV_TABLE_LOAD( feat ); in gxv_validate()
151 GXV_TABLE_VALIDATE( feat ); in gxv_validate()
163 GXV_TABLE_SET( feat ); in gxv_validate()
177 FT_FREE( feat ); in gxv_validate()
/third_party/freetype/src/gxvalid/
Dgxvfeat.c60 #define GXV_FEAT_DATA( field ) GXV_TABLE_DATA( feat, field )
281 GXV_feat_Data feat = &featrec; in gxv_feat_validate() local
293 gxvalid->table_data = feat; in gxv_feat_validate()
299 feat->reserved_size = 0; in gxv_feat_validate()
303 feat->reserved_size += 4 + 2 + 2 + 4; in gxv_feat_validate()
322 feat->reserved_size += featureNameCount * ( 2 + 2 + 4 + 2 + 2 ); in gxv_feat_validate()
Dgxvmod.c124 GXV_TABLE_DECL( feat ); in gxv_validate()
139 GXV_TABLE_LOAD( feat ); in gxv_validate()
151 GXV_TABLE_VALIDATE( feat ); in gxv_validate()
163 GXV_TABLE_SET( feat ); in gxv_validate()
177 FT_FREE( feat ); in gxv_validate()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-aat-map.cc41 if (!face->table.feat->has_data ()) return; in add_feature()
45 if (!face->table.feat->exposes_feature (HB_AAT_LAYOUT_FEATURE_TYPE_CHARACTER_ALTERNATIVES)) in add_feature()
58 const AAT::FeatureName* feature = &face->table.feat->get_feature (mapping->aatFeatureType); in add_feature()
67 feature = &face->table.feat->get_feature (HB_AAT_LAYOUT_FEATURE_TYPE_LETTER_CASE); in add_feature()
Dhb-ot-map.hh212 void add_feature (const hb_ot_map_feature_t &feat) in add_feature()
213 { add_feature (feat.tag, feat.flags); } in add_feature()
Dhb-aat-layout-feat-table.hh76 struct feat;
160 struct feat struct
/third_party/harfbuzz/src/
Dhb-aat-map.cc41 if (!face->table.feat->has_data ()) return; in add_feature()
45 if (!face->table.feat->exposes_feature (HB_AAT_LAYOUT_FEATURE_TYPE_CHARACTER_ALTERNATIVES)) in add_feature()
58 const AAT::FeatureName* feature = &face->table.feat->get_feature (mapping->aatFeatureType); in add_feature()
67 feature = &face->table.feat->get_feature (HB_AAT_LAYOUT_FEATURE_TYPE_LETTER_CASE); in add_feature()
Dhb-ot-map.hh212 void add_feature (const hb_ot_map_feature_t &feat) in add_feature()
213 { add_feature (feat.tag, feat.flags); } in add_feature()
Dhb-aat-layout-feat-table.hh76 struct feat;
160 struct feat struct
/third_party/gstreamer/gstplugins_base/ext/gl/
Dgstgloverlaycompositorelement.c161 GstCapsFeatures *feat = gst_caps_get_features (removed, i); in _oce_transform_internal_caps() local
163 if (feat && gst_caps_features_contains (feat, in _oce_transform_internal_caps()
165 feat = gst_caps_features_copy (feat); in _oce_transform_internal_caps()
167 gst_caps_features_remove (feat, in _oce_transform_internal_caps()
169 gst_caps_set_features (removed, i, feat); in _oce_transform_internal_caps()
/third_party/node/deps/npm/node_modules/humanize-ms/
DHistory.md10 * feat: warn with stack
20 * feat(index.js): warn when result is undefined
/third_party/libdrm/tests/etnaviv/
Detnaviv_2d_test.c185 uint64_t feat; in main() local
224 if (etna_gpu_get_param(gpu, ETNA_GPU_FEATURES_0, &feat)) { in main()
230 if ((feat & (1 << 9)) == 0) { in main()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-ot-map.hh212 void add_feature (const hb_ot_map_feature_t &feat) in add_feature()
213 { add_feature (feat.tag, feat.flags); } in add_feature()
/third_party/mesa3d/src/vulkan/runtime/
Dvk_physical_device_features.py199 feat = Feature(name=_type.attrib.get('name'), vk_type=s_type, vk_flags=flags)
200 features[_type.attrib.get('name')] = feat

12345