Home
last modified time | relevance | path

Searched refs:field (Results 726 - 750 of 1878) sorted by relevance

1...<<21222324252627282930>>...76

/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
H A Dbcmdefs.h464 * Usage example, e.g. a three-bit field (bits 4-6):
469 * field = GFIELD(regval, <NAME>);
475 #define GFIELD(val, field) \
476 (((val) >> field ## _S) & field ## _M)
477 #define SFIELD(val, field, bits) \
478 (((val) & (~(field ## _M << field ## _S))) | \
479 ((unsigned)(bits) << field ## _S))
/third_party/ffmpeg/libavfilter/
H A Dvf_deinterlace_vaapi.c34 VAAPIVPPContext vpp_ctx; // must be the first field
192 int err, i, field, current_frame_index; in deint_vaapi_filter_frame() local
194 // NULL frame is used to flush the queue in field mode in deint_vaapi_filter_frame()
238 for (field = 0; field < ctx->field_rate; field++) { in deint_vaapi_filter_frame()
267 filter_params->flags |= field ? VA_DEINTERLACING_BOTTOM_FIELD : 0; in deint_vaapi_filter_frame()
270 filter_params->flags |= field ? 0 : VA_DEINTERLACING_BOTTOM_FIELD; in deint_vaapi_filter_frame()
298 if (field == 0) in deint_vaapi_filter_frame()
376 { "rate", "Generate output at frame rate or field rat
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DListFormatter.java119 * The concrete field used for spans in FormattedList.
631 SpanFieldPlaceholder field = new SpanFieldPlaceholder(); in appendElement()
632 field.spanField = SpanField.LIST_SPAN; in appendElement()
633 field.normalField = Field.ELEMENT; in appendElement()
634 field.value = position; in appendElement()
635 field.start = -1; in appendElement()
636 field.length = elementString.length(); in appendElement()
637 string.append(elementString, field); in appendElement()
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx509_vpm.c121 * The "inh_flags" field determines how this function behaves.
142 /* Macro to test if a field should be copied from src to dest */
144 #define test_x509_verify_param_copy(field, def) \
145 (to_overwrite || (src->field != def && (to_default || dest->field == def)))
147 /* Macro to test and copy a field if necessary */
149 #define x509_verify_param_copy(field, def) \
150 if (test_x509_verify_param_copy(field, def)) \
151 dest->field = src->field;
[all...]
H A Dx509name.c118 /* else we need to fixup the set field */ in X509_NAME_delete_entry()
170 int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, in X509_NAME_add_entry_by_txt() argument
176 ne = X509_NAME_ENTRY_create_by_txt(NULL, field, type, bytes, len); in X509_NAME_add_entry_by_txt()
243 const char *field, int type, in X509_NAME_ENTRY_create_by_txt()
250 obj = OBJ_txt2obj(field, 0); in X509_NAME_ENTRY_create_by_txt()
253 "name=%s", field); in X509_NAME_ENTRY_create_by_txt()
242 X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, const char *field, int type, const unsigned char *bytes, int len) X509_NAME_ENTRY_create_by_txt() argument
/third_party/rust/crates/clap/tests/derive/
H A Doptions.rs298 field: Option<Option<String>>, in two_option_option_types()
303 field: Some(Some("f".into())) in two_option_option_types()
305 Opt::try_parse_from(["test", "-a42", "--field", "f"]).unwrap() in two_option_option_types()
310 field: Some(None) in two_option_option_types()
312 Opt::try_parse_from(["test", "-a42", "--field"]).unwrap() in two_option_option_types()
317 field: Some(None) in two_option_option_types()
319 Opt::try_parse_from(["test", "-a", "--field"]).unwrap() in two_option_option_types()
324 field: Some(Some("f".into())) in two_option_option_types()
326 Opt::try_parse_from(["test", "-a", "--field", "f"]).unwrap() in two_option_option_types()
331 field in two_option_option_types()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DPipeline.cpp307 static int SaturateVectorOf(const TField &field) in SaturateVectorOf() argument
311 const TType &type = *field.type(); in SaturateVectorOf()
360 config.saturateScalarOrVector = [](const TField &field) { in externalStructModifyConfig()
361 if (field.type()->getQualifier() == TQualifier::EvqSampleMask) in externalStructModifyConfig()
365 if (int s = SaturateVectorOf<TBasicType::EbtInt, LT, 4, 4>(field)) in externalStructModifyConfig()
369 if (int s = SaturateVectorOf<TBasicType::EbtUInt, LT, 4, 4>(field)) in externalStructModifyConfig()
373 if (int s = SaturateVectorOf<TBasicType::EbtFloat, LT, 4, 4>(field)) in externalStructModifyConfig()
/third_party/openssl/crypto/x509/
H A Dx509_vpm.c121 * The "inh_flags" field determines how this function behaves.
142 /* Macro to test if a field should be copied from src to dest */
144 #define test_x509_verify_param_copy(field, def) \
145 (to_overwrite || (src->field != def && (to_default || dest->field == def)))
147 /* Macro to test and copy a field if necessary */
149 #define x509_verify_param_copy(field, def) \
150 if (test_x509_verify_param_copy(field, def)) \
151 dest->field = src->field;
[all...]
H A Dx509name.c118 /* else we need to fixup the set field */ in X509_NAME_delete_entry()
170 int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, in X509_NAME_add_entry_by_txt() argument
176 ne = X509_NAME_ENTRY_create_by_txt(NULL, field, type, bytes, len); in X509_NAME_add_entry_by_txt()
243 const char *field, int type, in X509_NAME_ENTRY_create_by_txt()
250 obj = OBJ_txt2obj(field, 0); in X509_NAME_ENTRY_create_by_txt()
253 "name=%s", field); in X509_NAME_ENTRY_create_by_txt()
242 X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, const char *field, int type, const unsigned char *bytes, int len) X509_NAME_ENTRY_create_by_txt() argument
/third_party/protobuf/php/ext/google/protobuf/
H A Darray.c169 "Wrong type for this repeated field."); in RepeatedField_GetUpbArray()
175 php_error_docref(NULL, E_USER_ERROR, "Must be a repeated field"); in RepeatedField_GetUpbArray()
215 * Append element to the end of the repeated field.
515 RepeatedField *field = (RepeatedField*)Z_OBJ_P(&intern->repeated_field); in PHP_METHOD() local
516 upb_array *array = field->array; in PHP_METHOD()
527 Convert_UpbToPhp(msgval, &ret, field->type, field->desc, &field->arena); in PHP_METHOD()
558 RepeatedField *field = (RepeatedField*)Z_OBJ_P(&intern->repeated_field); in PHP_METHOD() local
559 RETURN_BOOL(intern->position < upb_array_size(field in PHP_METHOD()
[all...]
H A Dphp-upb.c188 /* Maps descriptor type -> upb field type. */
242 /* Op: an action to be performed for a wire-type/field-type combination. */
252 -1, /* field not found */
274 /* For non-repeated field type. */
275 -1, /* field not found */
294 /* For repeated field type. */
320 uint32_t end_group; /* Set to field number of END_GROUP tag, if any. */
450 return &none; /* Unknown field. */ in upb_find_field()
454 const upb_msglayout_field *field) { in decode_newsubmsg()
455 const upb_msglayout *subl = layout->submsgs[field in decode_newsubmsg()
453 decode_newsubmsg(upb_decstate *d, const upb_msglayout *layout, const upb_msglayout_field *field) decode_newsubmsg() argument
459 decode_tosubmsg(upb_decstate *d, upb_msg *submsg, const upb_msglayout *layout, const upb_msglayout_field *field, upb_strview val) decode_tosubmsg() argument
483 decode_togroup(upb_decstate *d, const char *ptr, upb_msg *submsg, const upb_msglayout *layout, const upb_msglayout_field *field) decode_togroup() argument
490 decode_toarray(upb_decstate *d, const char *ptr, upb_msg *msg, const upb_msglayout *layout, const upb_msglayout_field *field, wireval val, int op) decode_toarray() argument
582 decode_tomap(upb_decstate *d, upb_msg *msg, const upb_msglayout *layout, const upb_msglayout_field *field, wireval val) decode_tomap() argument
618 decode_tomsg(upb_decstate *d, const char *ptr, upb_msg *msg, const upb_msglayout *layout, const upb_msglayout_field *field, wireval val, int op) decode_tomsg() argument
679 const upb_msglayout_field *field; decode_msg() local
4418 upb_msglayout_field *field = &fields[upb_fielddef_index(f)]; make_layout() local
5630 in_oneof(const upb_msglayout_field *field) in_oneof() argument
5635 const upb_msglayout_field *field = upb_fielddef_layout(f); _upb_msg_getraw() local
5643 const upb_msglayout_field *field = upb_fielddef_layout(f); upb_msg_has() local
5659 const upb_msglayout_field *field; upb_msg_whichoneof() local
5720 const upb_msglayout_field *field = upb_fielddef_layout(f); upb_msg_mutable() local
5754 const upb_msglayout_field *field = upb_fielddef_layout(f); upb_msg_set() local
5766 const upb_msglayout_field *field = upb_fielddef_layout(f); upb_msg_clearfield() local
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dtype_checkers.py35 VALUE_CHECKERS: A dictionary of field types and a value validation object.
36 TYPE_TO_BYTE_SIZE_FN: A dictionary with field types and a size computing
38 TYPE_TO_SERIALIZE_METHOD: A dictionary with field types and serialization
40 FIELD_TYPE_TO_WIRE_TYPE: A dictionary with field typed and their
42 TYPE_TO_DESERIALIZE_METHOD: A dictionary with field types and deserialization
98 def GetTypeChecker(field):
99 """Returns a type checker for a message field of the specified types.
102 field: FieldDescriptor object for this field.
106 of values assigned to a field o
[all...]
/third_party/gn/src/gn/
H A Dtool.h248 // field and return true, otherwise will return false. Must be called before
256 bool ReadBool(Scope* scope, const char* var, bool* field, Err* err);
257 bool ReadString(Scope* scope, const char* var, std::string* field, Err* err);
260 SubstitutionPattern* field,
264 SubstitutionList* field,
269 LabelPtrPair<Pool>* field,
/third_party/icu/icu4c/source/i18n/unicode/
H A Dsmpdtfmt.h84 * <a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#date-field-symbol-table">ICU
457 * <td>Milliseconds in day. This field behaves <i>exactly</i> like a composite of all time-related fields,
460 * reflects the fact that is must be combined with the offset field to obtain a unique local time value.</td>
481 * The format is equivalent to RFC 822 zone format (when optional seconds field is absent).
560 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field.
583 * (Note: The seconds field is not supported by the ISO8601 specification.)
592 * (Note: The seconds field is not supported by the ISO8601 specification.)
600 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field
[all...]
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Dprotocol_core.cc33 for (int field = static_cast<int>(field_path_.size()) - 1; field >= 0; in ErrorMessage()
34 --field) { in ErrorMessage()
36 msg.append(field_path_[field].begin(), field_path_[field].end()); in ErrorMessage()
117 // TODO(caseq): consider checking if the sought field is the one in DeserializeField()
125 // Unknown field is not an error -- we may be working against an in DeserializeField()
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dsmpdtfmt.h85 * <a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#date-field-symbol-table">ICU
458 * <td>Milliseconds in day. This field behaves <i>exactly</i> like a composite of all time-related fields,
461 * reflects the fact that is must be combined with the offset field to obtain a unique local time value.</td>
482 * The format is equivalent to RFC 822 zone format (when optional seconds field is absent).
561 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field.
584 * (Note: The seconds field is not supported by the ISO8601 specification.)
593 * (Note: The seconds field is not supported by the ISO8601 specification.)
601 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field
[all...]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_gpu_load.c72 #define UPDATE_COUNTER(field, mask) \
75 p_atomic_inc(&counters->named.field.busy); \
77 p_atomic_inc(&counters->named.field.idle); \
213 #define BUSY_INDEX(sscreen, field) \
214 (&sscreen->mmio_counters.named.field.busy - sscreen->mmio_counters.array)
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_extensions.py143 # get the field in zink_device_info that refers to the extension's
146 def field(self, suffix: str): member in Extension
289 for field in vkxml.findall("./types/type[@name='{}']/member".format(struct_name)):
290 field_name = field.find("name").text
307 for field in vkxml.findall("./types/type[@name='{}']/member".format(struct_name)):
308 field_name = field.find("name").text
/third_party/node/deps/openssl/openssl/crypto/txt_db/
H A Dtxt_db.c148 int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (OPENSSL_STRING *), in TXT_DB_create_index() argument
155 if (field >= db->num_fields) { in TXT_DB_create_index()
182 lh_OPENSSL_STRING_free(db->index[field]); in TXT_DB_create_index()
183 db->index[field] = idx; in TXT_DB_create_index()
184 db->qual[field] = qual; in TXT_DB_create_index()
/third_party/openssl/crypto/txt_db/
H A Dtxt_db.c148 int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (OPENSSL_STRING *), in TXT_DB_create_index() argument
155 if (field >= db->num_fields) { in TXT_DB_create_index()
182 lh_OPENSSL_STRING_free(db->index[field]); in TXT_DB_create_index()
183 db->index[field] = idx; in TXT_DB_create_index()
184 db->qual[field] = qual; in TXT_DB_create_index()
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dsmpdtfmt.h84 * <a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime/#date-field-symbol-table">ICU
457 * <td>Milliseconds in day. This field behaves <i>exactly</i> like a composite of all time-related fields,
460 * reflects the fact that is must be combined with the offset field to obtain a unique local time value.</td>
481 * The format is equivalent to RFC 822 zone format (when optional seconds field is absent).
560 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field.
583 * (Note: The seconds field is not supported by the ISO8601 specification.)
592 * (Note: The seconds field is not supported by the ISO8601 specification.)
600 * <td>The <i>ISO8601 basic format</i> with hours field and optional minutes field
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dmessage.cc293 const FieldDescriptor* field) const { in RepeatedFieldAccessor()
294 GOOGLE_CHECK(field->is_repeated()); in RepeatedFieldAccessor()
295 switch (field->cpp_type()) { in RepeatedFieldAccessor()
309 switch (field->options().ctype()) { in RepeatedFieldAccessor()
316 if (field->is_map()) { in RepeatedFieldAccessor()
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectwriter.h72 // numeric values are returned in double field "number_value" of
90 // the field name.
93 // If true, check if enum name in UPPER_CASE matches the field name.
100 // If true, accepts repeated key/value pair for a map proto field.
133 // Renders a DataPiece 'value' into a field whose wire type is determined
134 // from the given field 'name'.
167 // Before the "@type" field is encountered, we store all incoming data
168 // into this Event struct and replay them after we get the "@type" field.
233 // Any message a single time rather than every time we get a nested field.
252 // Store data before the "@type" field
[all...]
/base/security/crypto_framework/test/fuzztest/key/asykeygenerator_fuzzer/
H A Dasykeygenerator_fuzzer.cpp505 eccCommSpec->field = tmpField; in ConstructEcc224CommParamsSpec()
506 eccCommSpec->field->fieldType = const_cast<char *>(g_eccFieldType.c_str()); in ConstructEcc224CommParamsSpec()
507 (reinterpret_cast<HcfECFieldFp *>(eccCommSpec->field))->p.data = in ConstructEcc224CommParamsSpec()
509 (reinterpret_cast<HcfECFieldFp *>(eccCommSpec->field))->p.len = NID_secp224r1_len; in ConstructEcc224CommParamsSpec()
533 eccPubKeySpec->base.field = tmpField; in ConstructEcc224PubKeyParamsSpec()
534 eccPubKeySpec->base.field->fieldType = const_cast<char *>(g_eccFieldType.c_str()); in ConstructEcc224PubKeyParamsSpec()
535 (reinterpret_cast<HcfECFieldFp *>(eccPubKeySpec->base.field))->p.data = in ConstructEcc224PubKeyParamsSpec()
537 (reinterpret_cast<HcfECFieldFp *>(eccPubKeySpec->base.field))->p.len = NID_secp224r1_len; in ConstructEcc224PubKeyParamsSpec()
565 eccPriKeySpec->base.field = tmpField; in ConstructEcc224PriKeyParamsSpec()
566 eccPriKeySpec->base.field in ConstructEcc224PriKeyParamsSpec()
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dprotobuf.h382 VALUE field_type_class(const MessageLayout* layout, const upb_fielddef* field);
388 // safe because field numbers are used as case identifiers, and no field can
392 // These operate on a map field (i.e., a repeated field of submessages whose
394 bool is_map_field(const upb_fielddef* field);
395 const upb_fielddef* map_field_key(const upb_fielddef* field);
396 const upb_fielddef* map_field_value(const upb_fielddef* field);
403 // Repeated field container type.
539 const upb_fielddef* field);
[all...]

Completed in 26 milliseconds

1...<<21222324252627282930>>...76