Home
last modified time | relevance | path

Searched refs:field (Results 576 - 600 of 1878) sorted by relevance

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

/third_party/ffmpeg/libavformat/
H A Dwestwood_aud.c47 int field; in wsaud_probe() local
63 field = AV_RL16(&p->buf[0]); in wsaud_probe()
64 if ((field < 8000) || (field > 48000)) in wsaud_probe()
67 /* enforce the rule that the top 6 bits of this flags field are reserved (0); in wsaud_probe()
/third_party/backends/backend/
H A Depsonds.h57 #define XtOffset(p_type, field) ((size_t)&(((p_type)NULL)->field))
58 #define XtOffsetOf(s_type, field) XtOffset(s_type*, field)
/third_party/node/test/parallel/
H A Dtest-http-incoming-matchKnownFields.js6 function checkDest(field, result, value) {
9 const incomingMessage = new IncomingMessage(field);
12 incomingMessage._addHeaderLine(field, 'test', dest);
13 incomingMessage._addHeaderLine(field, value, dest);
/third_party/toybox/toys/other/
H A Dmodinfo.c13 usage: modinfo [-0] [-b basedir] [-k kernel] [-F field] [module|file...]
17 -F Only show the given field
33 static void output_field(char *field, char *value) in output_field() argument
35 if (!TT.F) xprintf("%s:%*c", field, 15-(int)strlen(field), ' '); in output_field()
36 else if (strcmp(TT.F, field)) return; in output_field()
/third_party/skia/third_party/externals/freetype/
H A Dautogen.sh92 # $5: option field index used to extract the tool version from the
97 field=$5
99 if test "$field"x = x; then
100 field=3 # default to 3 for all GNU autotools, after filtering enclosed string
102 version=`$1 --version | head -1 | sed 's/([^)]*)/()/g' | cut -d ' ' -f $field`
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_oneof.cc81 const FieldDescriptor* field = descriptor_->field(j); in GenerateCaseEnum() local
82 string field_name = FieldNameCapitalized(field); in GenerateCaseEnum()
87 "field_number", StrCat(field->number())); in GenerateCaseEnum()
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyOneofDescriptor.java71 * OneofDescriptor.add_field(field) => nil
73 * Adds a field to this oneof. The field may have been added to this oneof in
99 for (RubyFieldDescriptor field : fields) { in each()
100 block.yieldSpecific(context, field); in each()
106 for (RubyFieldDescriptor field: fields) { in build()
107 field.setOneofIndex(index); in build()
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_nist.c351 int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_192() argument
370 field = &ossl_bignum_nist_p_192; /* just to make sure */ in BN_nist_mod_192()
373 return BN_nnmod(r, a, field, ctx); in BN_nist_mod_192()
375 i = BN_ucmp(field, a); in BN_nist_mod_192()
487 int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_224() argument
507 field = &ossl_bignum_nist_p_224; /* just to make sure */ in BN_nist_mod_224()
510 return BN_nnmod(r, a, field, ctx); in BN_nist_mod_224()
512 i = BN_ucmp(field, a); in BN_nist_mod_224()
659 int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_256() argument
679 field in BN_nist_mod_256()
896 BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, BN_CTX *ctx) BN_nist_mod_384() argument
1156 BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, BN_CTX *ctx) BN_nist_mod_521() argument
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_nist.c329 int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_192() argument
348 field = &ossl_bignum_nist_p_192; /* just to make sure */ in BN_nist_mod_192()
351 return BN_nnmod(r, a, field, ctx); in BN_nist_mod_192()
353 i = BN_ucmp(field, a); in BN_nist_mod_192()
465 int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_224() argument
485 field = &ossl_bignum_nist_p_224; /* just to make sure */ in BN_nist_mod_224()
488 return BN_nnmod(r, a, field, ctx); in BN_nist_mod_224()
490 i = BN_ucmp(field, a); in BN_nist_mod_224()
637 int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, in BN_nist_mod_256() argument
657 field in BN_nist_mod_256()
874 BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, BN_CTX *ctx) BN_nist_mod_384() argument
1134 BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, BN_CTX *ctx) BN_nist_mod_521() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DDecimalFormatProperties.java614 // 2) Read each field by its name and value in readObjectImpl()
619 // Get the field reference in readObjectImpl()
620 Field field = null; in readObjectImpl()
622 field = DecimalFormatProperties.class.getDeclaredField(name); in readObjectImpl()
624 // The field name does not exist! Possibly corrupted serialization. Ignore this entry. in readObjectImpl()
631 // NOTE: If the type of a field were changed in the future, this would be the place to check: in readObjectImpl()
634 // Save value into the field in readObjectImpl()
636 field.set(this, value); in readObjectImpl()
936 * The minimum number of digits to display in the exponent field.
1391 for (Field field in toStringBare()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DDecimalFormatProperties.java610 // 2) Read each field by its name and value in readObjectImpl()
615 // Get the field reference in readObjectImpl()
616 Field field = null; in readObjectImpl()
618 field = DecimalFormatProperties.class.getDeclaredField(name); in readObjectImpl()
620 // The field name does not exist! Possibly corrupted serialization. Ignore this entry. in readObjectImpl()
627 // NOTE: If the type of a field were changed in the future, this would be the place to check: in readObjectImpl()
630 // Save value into the field in readObjectImpl()
632 field.set(this, value); in readObjectImpl()
920 * The minimum number of digits to display in the exponent field.
1375 for (Field field in toStringBare()
[all...]
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec2_smpl.c30 group->field = BN_new(); in ossl_ec_GF2m_simple_group_init()
34 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ossl_ec_GF2m_simple_group_init()
35 BN_free(group->field); in ossl_ec_GF2m_simple_group_init()
49 BN_free(group->field); in ossl_ec_GF2m_simple_group_finish()
60 BN_clear_free(group->field); in ossl_ec_GF2m_simple_group_clear_finish()
77 if (!BN_copy(dest->field, src->field)) in ossl_ec_GF2m_simple_group_copy()
107 /* group->field */ in ossl_ec_GF2m_simple_group_set_curve()
108 if (!BN_copy(group->field, p)) in ossl_ec_GF2m_simple_group_set_curve()
110 i = BN_GF2m_poly2arr(group->field, grou in ossl_ec_GF2m_simple_group_set_curve()
[all...]
/third_party/openssl/crypto/ec/
H A Dec2_smpl.c30 group->field = BN_new(); in ossl_ec_GF2m_simple_group_init()
34 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ossl_ec_GF2m_simple_group_init()
35 BN_free(group->field); in ossl_ec_GF2m_simple_group_init()
49 BN_free(group->field); in ossl_ec_GF2m_simple_group_finish()
60 BN_clear_free(group->field); in ossl_ec_GF2m_simple_group_clear_finish()
77 if (!BN_copy(dest->field, src->field)) in ossl_ec_GF2m_simple_group_copy()
107 /* group->field */ in ossl_ec_GF2m_simple_group_set_curve()
108 if (!BN_copy(group->field, p)) in ossl_ec_GF2m_simple_group_set_curve()
110 i = BN_GF2m_poly2arr(group->field, grou in ossl_ec_GF2m_simple_group_set_curve()
[all...]
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/
H A Dmod.rs633 .field("d_fileno", &self.d_fileno) in fmt()
634 .field("d_off", &self.d_off) in fmt()
635 .field("d_reclen", &self.d_reclen) in fmt()
636 .field("d_type", &self.d_type) in fmt()
637 .field("d_namlen", &self.d_namlen) in fmt()
638 // FIXME: .field("d_name", &self.d_name) in fmt()
666 .field("ss_len", &self.ss_len) in fmt()
667 .field("ss_family", &self.ss_family) in fmt()
693 .field("si_signo", &self.si_signo) in fmt()
694 .field("si_cod in fmt()
[all...]
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dcomp.rs82 /// This is tricky and probably this field should be renamed.
135 /// Methods common to the various field types.
137 /// Get the name of this field.
140 /// Get the type of this field.
143 /// Get the comment for this field.
152 /// Get the annotations for this field.
155 /// The offset of the field (in bits)
172 /// struct. Useful for generating a Rust struct's field name for this unit
189 /// A struct representing a C++ field.
200 /// Get this field'
[all...]
/base/security/crypto_framework/common/src/
H A Dasy_key_params.c156 static void FreeEcFieldMem(HcfECField **field) in FreeEcFieldMem() argument
158 HcfFree((*field)->fieldType); in FreeEcFieldMem()
159 (*field)->fieldType = NULL; in FreeEcFieldMem()
160 HcfFree(((HcfECFieldFp *)(*field))->p.data); in FreeEcFieldMem()
161 ((HcfECFieldFp *)(*field))->p.data = NULL; in FreeEcFieldMem()
162 HcfFree(*field); in FreeEcFieldMem()
163 *field = NULL; in FreeEcFieldMem()
190 FreeEcFieldMem(&(spec->field)); in FreeEccCommParamsSpec()
191 spec->field = NULL; in FreeEccCommParamsSpec()
/base/security/device_security_level/test/dslm_unit_test/
H A Ddslm_baselib_utils_test.cpp487 const char *field = "test"; in HWTEST_F() local
495 DslmAddFieldBoolToJson(nullptr, field, true); in HWTEST_F()
496 DslmAddFieldIntToJson(nullptr, field, 0); in HWTEST_F()
497 DslmAddFieldIntArrayToJson(nullptr, field, arr, sizeof(arr)); in HWTEST_F()
498 DslmAddFieldStringToJson(nullptr, field, value); in HWTEST_F()
499 DslmAddFieldJsonToJson(handle, field, nullptr); in HWTEST_F()
547 const char *field = "test"; in HWTEST_F() local
556 DslmAddFieldIntArrayToJson(handle, field, nullptr, sizeof(arr)); in HWTEST_F()
558 DslmAddFieldStringToJson(handle, field, nullptr); in HWTEST_F()
/third_party/ffmpeg/libavfilter/
H A Dbuffersink.c211 #define MAKE_AVFILTERLINK_ACCESSOR(type, field) \
212 type av_buffersink_get_##field(const AVFilterContext *ctx) { \
214 return ctx->inputs[0]->field; \
254 #define CHECK_LIST_SIZE(field) \
255 if (buf->field ## _size % sizeof(*buf->field)) { \
256 av_log(ctx, AV_LOG_ERROR, "Invalid size for " #field ": %d, " \
258 buf->field ## _size, (int)sizeof(*buf->field)); \
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
H A DCalendarCalc.java239 if (kRollAddFields[i].field == Calendar.MONTH) { in buildGUI()
378 * in the "Millis" text field.
417 * This function is called when users select a new time field
421 int field = kRollAddFields[dateMenu.getSelectedIndex()].field; in dateFieldChanged()
431 c.add(field, isUp ? 1 : -1); in dateFieldChanged()
433 c.roll(field, isUp); in dateFieldChanged()
591 RollAddField(int field, String name) { in RollAddField() argument
592 this.field = field; in RollAddField()
595 int field; global() field in RollAddField
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dunumberformattertst.c113 // field position test: in TestSkeletonFormatToFields()
119 // field position iterator test: in TestSkeletonFormatToFields()
139 actual.field = ufieldpositer_next(ufpositer, &actual.beginIndex, &actual.endIndex); in TestSkeletonFormatToFields()
140 assertTrue("Should not return a negative index yet", actual.field >= 0); in TestSkeletonFormatToFields()
141 if (expected.field != actual.field) { in TestSkeletonFormatToFields()
143 "FAIL: iteration %d; expected field %d; got %d\n", i, expected.field, actual.field); in TestSkeletonFormatToFields()
160 actual.field in TestSkeletonFormatToFields()
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dlink_varyings.cpp526 glsl_struct_field *field = &type_without_array->fields.structure[i]; in validate_explicit_variable_location() local
527 unsigned field_location = field->location - in validate_explicit_variable_location()
528 (field->patch ? VARYING_SLOT_PATCH0 : VARYING_SLOT_VAR0); in validate_explicit_variable_location()
529 unsigned field_slots = field->type->count_attribute_slots(false); in validate_explicit_variable_location()
534 field->type, in validate_explicit_variable_location()
535 field->interpolation, in validate_explicit_variable_location()
536 field->centroid, in validate_explicit_variable_location()
537 field->sample, in validate_explicit_variable_location()
538 field->patch, in validate_explicit_variable_location()
/third_party/mesa3d/src/mesa/main/
H A Dformat_parser.py523 for field in fields:
524 if not field:
527 type = field[0] if field[0] else 'x'
529 if field[1] == 'n':
531 size = int(field[2:])
534 size = int(field[1:])
559 fields = [field.strip() for field in line.split(',')]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DStructureHLSL.cpp41 for (const TField *field : fields) in Define()
44 const TType &fieldType = *field->type(); in Define()
59 string += " " + fieldTypeString + " " + DecorateField(field->name(), structure) + in Define()
141 // no padding needed, HLSL will align the field to a new register in prePadding()
161 // no padding needed, HLSL will align the field to a new register in prePadding()
178 // no padding needed, HLSL will align the field to a new register in prePadding()
315 for (const TField *field : structure.fields()) in defineVariants()
317 const TType *fieldType = field->type(); in defineVariants()
397 for (const TField *field : fields) in addStructConstructor()
399 const TType *fieldType = field in addStructConstructor()
[all...]
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_map_field.cc60 std::string TypeName(const FieldDescriptor* field, in TypeName() argument
62 if (GetJavaType(field) == JAVATYPE_MESSAGE) { in TypeName()
63 return name_resolver->GetImmutableClassName(field->message_type()); in TypeName()
64 } else if (GetJavaType(field) == JAVATYPE_ENUM) { in TypeName()
65 return name_resolver->GetImmutableClassName(field->enum_type()); in TypeName()
67 return boxed ? BoxedPrimitiveTypeName(GetJavaType(field)) in TypeName()
68 : PrimitiveTypeName(GetJavaType(field)); in TypeName()
72 std::string WireType(const FieldDescriptor* field) { in WireType() argument
74 std::string(FieldTypeName(field->type())); in WireType()
H A Djava_map_field_lite.cc60 std::string TypeName(const FieldDescriptor* field, in TypeName() argument
62 if (GetJavaType(field) == JAVATYPE_MESSAGE) { in TypeName()
63 return name_resolver->GetImmutableClassName(field->message_type()); in TypeName()
64 } else if (GetJavaType(field) == JAVATYPE_ENUM) { in TypeName()
65 return name_resolver->GetImmutableClassName(field->enum_type()); in TypeName()
67 return boxed ? BoxedPrimitiveTypeName(GetJavaType(field)) in TypeName()
68 : PrimitiveTypeName(GetJavaType(field)); in TypeName()
72 std::string WireType(const FieldDescriptor* field) { in WireType() argument
74 std::string(FieldTypeName(field->type())); in WireType()

Completed in 24 milliseconds

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