Home
last modified time | relevance | path

Searched refs:field (Results 501 - 525 of 2054) sorted by relevance

1...<<21222324252627282930>>...83

/third_party/ffmpeg/libavformat/
H A Drtpdec_rfc4175.c37 int field; member
210 if (!data->interlaced || data->field) { in rfc4175_finalize_packet()
218 data->field = 0; in rfc4175_finalize_packet()
228 int length, line, offset, cont, field; in rfc4175_handle_packet() local
237 if (data->frame && (!data->interlaced || data->field)) { in rfc4175_handle_packet()
242 * or the previous second field (interlace). Let's finalize the in rfc4175_handle_packet()
282 field = (headers[2] & 0x80) >> 7; in rfc4175_handle_packet()
287 data->field = field; in rfc4175_handle_packet()
296 line = 2 * line + field; in rfc4175_handle_packet()
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_radeon_winsys.h121 #define RADEON_SURF_GET(v, field) \
122 (((v) >> RADEON_SURF_##field##_SHIFT) & RADEON_SURF_##field##_MASK)
123 #define RADEON_SURF_SET(v, field) (((v)&RADEON_SURF_##field##_MASK) << RADEON_SURF_##field##_SHIFT)
124 #define RADEON_SURF_CLR(v, field) \
125 ((v) & ~(RADEON_SURF_##field##_MASK << RADEON_SURF_##field##_SHIFT))
/third_party/node/deps/v8/src/torque/
H A Dkythe-data.cc87 kythe_entity_t KytheData::AddClassFieldDefinition(const Field* field) { in AddClassFieldDefinition() argument
88 DCHECK(field); in AddClassFieldDefinition()
90 // Check if we know that field already. in AddClassFieldDefinition()
91 auto it = that->class_fields_.find(field); in AddClassFieldDefinition()
93 // Register this field. in AddClassFieldDefinition()
94 KythePosition pos = MakeKythePosition(field->pos); in AddClassFieldDefinition()
96 KytheConsumer::Kind::ClassField, field->name_and_type.name, pos); in AddClassFieldDefinition()
97 that->class_fields_.insert(it, std::make_pair(field, field_id)); in AddClassFieldDefinition()
102 const Field* field) { in AddClassFieldUse()
103 DCHECK(field); in AddClassFieldUse()
101 AddClassFieldUse(SourcePosition use_position, const Field* field) AddClassFieldUse() argument
[all...]
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dproto_writer.h118 // Renders a DataPiece 'value' into a field whose wire type is determined
119 // from the given field 'name'.
166 // Constructor for the root element. No parent nor field.
170 // Constructor for a field of an element.
171 ProtoElement(ProtoElement* parent, const google::protobuf::Field* field,
178 // - computes the space needed by the size field, and augment the
190 // Registers field for accounting required fields.
191 void RegisterField(const google::protobuf::Field* field);
214 // Describes the element as a field in the parent message.
265 // Lookup the field i
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DExtensionRegistry.java43 * A table of known extensions, searchable by name or field number. When parsing a protocol message
138 * Find an extension for immutable APIs by fully-qualified field name, in the proto namespace.
148 * Find an extension for mutable APIs by fully-qualified field name, in the proto namespace. i.e.
165 * Find an extension by containing type and field number for immutable APIs.
175 * Find an extension by containing type and field number for mutable APIs.
305 + "(non-extension) field."); in add()
330 final FieldDescriptor field = extension.descriptor; in add()
331 if (field.getContainingType().getOptions().getMessageSetWireFormat() in add()
332 && field.getType() == FieldDescriptor.Type.MESSAGE in add()
333 && field in add()
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/
H A Derror.rs293 builder.field("code", &self.code());
295 builder.field("library", &library);
298 builder.field("function", &function);
301 builder.field("reason", &reason);
303 builder.field("file", &self.file());
304 builder.field("line", &self.line());
306 builder.field("data", &data);
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
H A Drs_particle_noise_field.h89 void AddField(const std::shared_ptr<ParticleNoiseField>& field) in AddField() argument
91 fields_.push_back(field); in AddField()
117 for (auto& field : fields_) { in ApplyAllFields()
118 totalEffect += (field->ApplyField(position, deltaTime) + field->ApplyCurlNoise(position)); in ApplyAllFields()
/third_party/icu/icu4c/source/i18n/
H A Dchnsecal.h41 * <p>This class defines one addition field beyond those defined by
42 * <code>Calendar</code>: The <code>IS_LEAP_MONTH</code> field takes the
56 * <code>EXTENDED_YEAR</code> field contains the sequential year count.
57 * The <code>ERA</code> field contains the cycle number, and the
58 * <code>YEAR</code> field contains the year of the cycle, a value between
67 * <p>Because <code>ChineseCalendar</code> defines an additional field and
68 * redefines the way the <code>ERA</code> field is used, it requires a new
165 virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const override;
173 virtual void add(UCalendarDateFields field, int32_t amount, UErrorCode &status) override;
174 virtual void add(EDateFields field, int32_
[all...]
/third_party/libsnd/programs/
H A Dsndfile-metadata-get.c138 #define HANDLE_BEXT_ARG(cmd, name, field) \ in process_args()
140 { printf ("%-22s : %.*s\n", name, (int) sizeof (binfo->field), binfo->field) ; \ in process_args()
145 #define HANDLE_BEXT_ARG_INT(cmd, name, field) \ in process_args()
147 { printf ("%-22s : %6.2f\n", name, binfo->field / 100.0) ; \ in process_args()
/third_party/ltp/libs/libltpuinput/
H A Dtst_uinput.c49 static char *parse_field(char *line, char field) in parse_field() argument
53 switch (field) { in parse_field()
69 char *get_input_field_value(char field) in get_input_field_value() argument
84 if (line[0] == field) in get_input_field_value()
85 return parse_field(line, field); in get_input_field_value()
/third_party/rust/crates/cxx/gen/build/src/
H A Dcfg.rs275 /// /// documentation of the struct field
301 /// /// documentation of the struct field
330 .field("include_prefix", include_prefix) in fmt()
331 .field("exported_header_dirs", exported_header_dirs) in fmt()
332 .field("exported_header_prefixes", exported_header_prefixes) in fmt()
333 .field("exported_header_links", exported_header_links) in fmt()
334 .field("doxygen", doxygen) in fmt()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dchnsecal.h41 * <p>This class defines one addition field beyond those defined by
42 * <code>Calendar</code>: The <code>IS_LEAP_MONTH</code> field takes the
56 * <code>EXTENDED_YEAR</code> field contains the sequential year count.
57 * The <code>ERA</code> field contains the cycle number, and the
58 * <code>YEAR</code> field contains the year of the cycle, a value between
67 * <p>Because <code>ChineseCalendar</code> defines an additional field and
68 * redefines the way the <code>ERA</code> field is used, it requires a new
165 virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const;
173 virtual void add(UCalendarDateFields field, int32_t amount, UErrorCode &status);
174 virtual void add(EDateFields field, int32_
[all...]
/third_party/rust/crates/serde/serde_derive_internals/src/
H A Dast.rs39 /// A field of a struct.
53 /// One unnamed field.
85 for field in &mut variant.fields {
86 if field.attrs.flatten() {
89 field.attrs.rename_by_rules(
99 for field in fields {
100 if field.attrs.flatten() {
103 field.attrs.rename_by_rules(attrs.rename_all_rules());
206 .map(|(i, field)| Field { in fields_from_ast()
207 member: match &field in fields_from_ast()
[all...]
/third_party/rust/crates/serde/serde_derive/src/internals/
H A Dast.rs39 /// A field of a struct.
53 /// One unnamed field.
85 for field in &mut variant.fields {
86 if field.attrs.flatten() {
89 field.attrs.rename_by_rules(
99 for field in fields {
100 if field.attrs.flatten() {
103 field.attrs.rename_by_rules(attrs.rename_all_rules());
206 .map(|(i, field)| Field { in fields_from_ast()
207 member: match &field in fields_from_ast()
[all...]
/third_party/rust/crates/libc/src/unix/hermit/
H A Dmod.rs119 .field("d_ino", &self.d_ino) in fmt()
120 .field("d_off", &self.d_off) in fmt()
121 .field("d_reclen", &self.d_reclen) in fmt()
122 // FIXME: .field("d_name", &self.d_name) in fmt()
149 .field("sun_family", &self.sun_family) in fmt()
150 // FIXME: .field("sun_path", &self.sun_path) in fmt()
176 .field("sa_len", &self.sa_len) in fmt()
177 .field("sa_family", &self.sa_family) in fmt()
178 // FIXME: .field("sa_data", &self.sa_data) in fmt()
207 .field("sin_le in fmt()
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/metadata/
H A Dsecret_key_meta_data.cpp61 for (const auto &field : fields) { in GetPrefix()
62 prefix.append(Constant::KEY_SEPARATOR).append(field); in GetPrefix()
71 for (const auto &field : fields) { in GetBackupPrefix()
72 prefix.append(Constant::KEY_SEPARATOR).append(field); in GetBackupPrefix()
/third_party/ffmpeg/libavcodec/
H A Dcbs_bsf.h112 #define BSF_ELEMENT_OPTIONS_PIR(name, help, field, opt_flags) \
113 { name, help, OFFSET(field), AV_OPT_TYPE_INT, \
123 #define BSF_ELEMENT_OPTIONS_PIRE(name, help, field, opt_flags) \
124 { name, help, OFFSET(field), AV_OPT_TYPE_INT, \
/third_party/curl/tests/libtest/
H A Dlib1553.c52 curl_mimepart *field = NULL; in test() local
65 field = curl_mime_addpart(mime); in test()
66 curl_mime_name(field, "name"); in test()
67 curl_mime_data(field, "value", CURL_ZERO_TERMINATED); in test()
/third_party/node/deps/v8/src/wasm/baseline/
H A Dliftoff-compiler.h67 #define SETTER(field) \
69 LiftoffOptions& set_##field(T new_value) { \
70 return Set<decltype(field)>(&field, new_value); \
86 // The field must still have its default value. in Set()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
H A DForcePrecisionQualifier.cpp65 const TField *field = fields[i]; in visitDeclaration() local
66 const TType *fieldType = field->type(); in visitDeclaration()
74 for (const TField *field : fields) in visitDeclaration()
76 const TType *fieldType = field->type(); in visitDeclaration()
/third_party/skia/src/sksl/ir/
H A DSkSLConstructorStruct.cpp31 // Convert each constructor argument to the struct's field type. in Convert()
34 const Type::Field& field = type.fields()[index]; in Convert() local
36 argument = field.fType->coerceExpression(std::move(argument), context); in Convert()
51 const Type::Field& field = type.fields()[index]; in arguments_match_field_types() local
52 if (argument->type() != *field.fType) { in arguments_match_field_types()
/third_party/python/Lib/ctypes/test/
H A Dtest_struct_fields.py10 # 3. The type is used as field of another Structure/Union.
76 _fields_ = (("field", c_int),)
78 MyCStruct.field.__set__, 'wrong type self', 42)
81 _fields_ = (("field", c_int),)
83 MyCUnion.field.__set__, 'wrong type self', 42)
87 _fields_ = (("field", c_int),)
89 MyCStruct.field.__get__, 'wrong type self', 42)
92 _fields_ = (("field", c_int),)
94 MyCUnion.field.__get__, 'wrong type self', 42)
/third_party/rust/crates/rustix/src/fs/
H A Draw_dir.rs132 f.field("file_name", &self.file_name());
133 f.field("file_type", &self.file_type());
134 f.field("ino", &self.ino());
135 f.field("next_entry_cookie", &self.next_entry_cookie());
/third_party/vk-gl-cts/framework/platform/android/
H A DtcuAndroidJNI.cpp53 jfieldID field = getExecServiceField(env, obj); in getExecService() local
54 return (tcu::Android::ExecService*)(deIntptr)env->GetLongField(obj, field); in getExecService()
59 jfieldID field = getExecServiceField(env, obj); in setExecService() local
60 env->SetLongField(obj, field, (jlong)(deIntptr)service); in setExecService()
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc748 foo_ = message_->field(0); in SetUp()
749 bar_ = message_->field(1); in SetUp()
750 baz_ = message_->field(2); in SetUp()
751 qux_ = message_->field(3); in SetUp()
757 foo2_ = message2_->field(0); in SetUp()
758 bar2_ = message2_->field(1); in SetUp()
759 quux2_ = message2_->field(2); in SetUp()
765 map_ = message3_->field(0); in SetUp()
819 EXPECT_EQ(foo_, message_->field(0)); in TEST_F()
820 EXPECT_EQ(bar_, message_->field( in TEST_F()
2287 FieldDescriptorProto* field = AddField( GetFieldDescriptorOfType() local
2311 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetTypeNameForFieldType() local
2316 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetCppTypeForFieldType() local
2322 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetCppTypeNameForFieldType() local
2328 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetMessageDescriptorForFieldType() local
2334 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetEnumDescriptorForFieldType() local
3002 const FieldDescriptor* field = message->FindFieldByName("field1"); TEST() local
3445 const FieldDescriptor* field = msg->FindFieldByName("fieldname"); TEST() local
7070 FieldDescriptorProto* field = message->add_field(); PopulateFile() local
7875 const FieldDescriptor* field = desc->FindFieldByName("bar"); TEST_F() local
7911 const FieldDescriptor* field = desc->FindFieldByName("enum1"); TEST_F() local
7956 const FieldDescriptor* field = desc->FindFieldByName("message1"); TEST_F() local
[all...]

Completed in 17 milliseconds

1...<<21222324252627282930>>...83