Home
last modified time | relevance | path

Searched refs:field (Results 1001 - 1025 of 1878) sorted by relevance

1...<<41424344454647484950>>...76

/third_party/skia/third_party/externals/freetype/src/gxvalid/
H A Dgxvbsln.c62 #define GXV_BSLN_DATA( field ) GXV_TABLE_DATA( bsln, field )
H A Dgxvprop.c59 #define GXV_PROP_DATA( field ) GXV_TABLE_DATA( prop, field )
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_field.h47 static FieldGenerator* Make(const FieldDescriptor* field,
124 // Subclass with common support for when the field ends up as an ObjC Object.
169 const FieldGenerator& get(const FieldDescriptor* field) const;
177 // Check if any field of this message has a non zero default.
/third_party/protobuf/js/experimental/runtime/kernel/
H A Dbinary_storage_test.js9 const {Field} = goog.require('protobuf.binary.field');
38 it('sets and gets a field not greater than the pivot', () => {
49 it('sets and gets a field greater than the pivot', () => {
59 it('sets and gets a field when pivot is zero', () => {
70 it('sets and gets a field when pivot is undefined', () => {
103 it('deletes a field in delete() when values are only in array', () => {
112 it('deletes a field in delete() when values are both in array and map',
125 it('deletes a field in delete() when values are only in map', () => {
143 (field, fieldNumber) => void fields.set(fieldNumber, field));
[all...]
/third_party/rust/crates/cxx/gen/lib/src/gen/
H A Dcfg.rs31 .retain(|field| eval(cx, cfg_errors, cfg_evaluator, &field.cfg)),
/third_party/protobuf/python/google/protobuf/pyext/
H A Dmessage.cc63 #include <google/protobuf/pyext/field.h>
128 // For each field set: cls.<field>_FIELD_NUMBER = <number> in AddDescriptors()
130 const FieldDescriptor* field_descriptor = descriptor->field(i); in AddDescriptors()
182 const google::protobuf::FieldDescriptor* field = descriptor->extension(i); in AddDescriptors() local
183 ScopedPyObjectPtr extension_field(PyFieldDescriptor_FromDescriptor(field)); in AddDescriptors()
188 // Add the extension field to the message class. in AddDescriptors()
190 cls, field->name().c_str(), extension_field.get()) == -1) { in AddDescriptors()
466 // Try to find a field with the given name, without the suffix. in GetClassAttribute()
467 const FieldDescriptor* field in GetClassAttribute() local
750 AllowInvalidUTF8(const FieldDescriptor* field) AllowInvalidUTF8() argument
860 MaybeReleaseOverlappingOneofField( CMessage* cmessage, const FieldDescriptor* field) MaybeReleaseOverlappingOneofField() argument
2567 SetCompositeField(CMessage* self, const FieldDescriptor* field, ContainerBase* value) SetCompositeField() argument
[all...]
/third_party/mbedtls/scripts/
H A Dgenerate_ssl_debug_helpers.py195 for field in line.strip().split(','):
196 if not field.strip():
198 member = field.strip().split()[0]
/third_party/mesa3d/src/intel/genxml/
H A Dgen_bits_header.py113 % for _, field in sorted(container.fields.items(), key=itemgetter(0)):
114 % if field.allowed:
116 /* ${container.name}::${field.name} */
118 ${emit_per_gen_prop_func(field, 'bits', False)}
120 ${emit_per_gen_prop_func(field, 'start', False)}
268 elif name == 'field':
347 field = container.get_field(name_field[1])
348 assert field
349 field.allowed = True
/third_party/mesa3d/src/panfrost/bifrost/
H A Dgen_disasm.py102 lut_template_only = Template(""" static const char *${field}[] = {
108 lut_template = Template(""" static const char *${field}_table[] = {
112 const char *${field} = ${field}_table[_BITS(bits, ${pos}, ${width})];
278 output += lut_template_only.render(field = key + "_" + str(i), table = pretty_mods(options, default))
283 output += lut_template_only.render(field = key + "_table", table = pretty_mods(options, default))
308 body += lut_template.render(field = mod, table = pretty_mods(opts, default), pos = pos, width = width) + "\n"
/third_party/node/deps/undici/src/node_modules/@fastify/busboy/lib/types/
H A Dmultipart.js106 const field = curField
107 field.emit('end')
108 field.removeAllListeners('end')
155 // file/binary field
214 // non-file field
241 boy.emit('field', fieldname, buffer, false, truncated, encoding, contype)
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DVariablePacker.cpp38 const ShaderVariable &field = fields[fieldIndex]; in ExpandStructVariable() local
39 ExpandVariable(field, name + "." + field.name, expanded); in ExpandStructVariable()
H A DFlagStd140Structs.h24 TField *field; member
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/
H A DDeclarePerVertexBlocks.cpp159 for (const TField *field : type->getInterfaceBlock()->fields())
161 const TType &fieldType = *field->type();
163 GetPerVertexFieldIndex(fieldType.getQualifier(), field->name());
409 // Whether each field is invariant or precise.
/third_party/skia/src/sfnt/
H A DSkOTUtils.cpp234 if (SkToBool(fsType.field.Restricted) || SkToBool(fsType.field.Bitmap)) { in SetAdvancedTypefaceFlags()
237 if (SkToBool(fsType.field.NoSubsetting)) { in SetAdvancedTypefaceFlags()
/third_party/toybox/toys/pending/
H A Dcrontab.c51 char *field = (size == 12) ? months : days; in getindex() local
56 for (i = 0; field[i]; i += 3) { in getindex()
57 if (!strncasecmp(src, &field[i], 3)) in getindex()
/third_party/protobuf/js/
H A Dmap.js409 * Write this Map field in wire format to a BinaryWriter, using the given field
484 var field = reader.getFieldNumber();
486 if (field == 1) {
489 } else if (field == 2) {
/third_party/protobuf/src/google/protobuf/
H A Dunknown_field_set.h77 // to be updated every time a new field is added to the message definition.
129 // Get a field in the set, where 0 <= index < field_count(). The fields
131 inline const UnknownField& field(int index) const;
132 // Get a mutable pointer to a field in the set, where
146 // Adds an unknown field from another set.
147 void AddField(const UnknownField& field);
153 // Delete all fields with a specific field number. The order of left fields
155 // Caution: implementation moves all fields after the first deleted field.
169 // Merges this message's unknown field data (if any). This works whether
229 // Represents one field i
325 inline const UnknownField& UnknownFieldSet::field(int index) const { field() function in google::protobuf::UnknownFieldSet
[all...]
/third_party/typescript/tests/baselines/reference/
H A DprivateFieldAssignabilityFromUnknown.js3 #field: any
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/
H A Dconfig_file.h14 struct hostapd_bss_config *bss, const char *field,
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
H A Dconfig_file.h14 struct hostapd_bss_config *bss, const char *field,
/base/security/crypto_framework/plugin/openssl_plugin/key/asy_key_generator/src/
H A Dsm2_asy_key_generator_openssl.c72 HcfECFieldFp *field = (HcfECFieldFp *)(ecParams->field); in CheckParamsSpecToGetCurveId() local
73 if (BigIntegerToBigNum(&(field->p), &p) != HCF_SUCCESS || in CheckParamsSpecToGetCurveId()
1226 (((HcfEccCommParamsSpec *)params)->field == NULL)) { in EngineGenerateKeyPairBySpec()
1249 ret = CreateAndAssignKeyPair(impl, ((HcfEccCommParamsSpec *)params)->field->fieldType, ecKey, returnKeyPair); in EngineGenerateKeyPairBySpec()
1262 (((HcfEccCommParamsSpec *)params)->field == NULL)) { in EngineGeneratePubKeyBySpec()
1282 ret = PackAndAssignPubKey(impl, ((HcfEccCommParamsSpec *)params)->field->fieldType, ecKey, returnPubKey); in EngineGeneratePubKeyBySpec()
1295 (((HcfEccCommParamsSpec *)params)->field == NULL)) { in EngineGeneratePriKeyBySpec()
1317 ret = PackAndAssignPriKey(impl, ((HcfEccCommParamsSpec *)params)->field->fieldType, ecKey, returnPriKey); in EngineGeneratePriKeyBySpec()
/third_party/ffmpeg/libavcodec/
H A Dvc2enc.c122 int field; member
845 const int field = transform_dat->field; in dwt_plane() local
855 if (field == 1) { in dwt_plane()
858 } else if (field == 2) { in dwt_plane()
899 const char *aux_data, const int header_size, int field) in encode_frame()
907 s->transform_args[i].field = field; in encode_frame()
918 if (field < 2) { in encode_frame()
898 encode_frame(VC2EncContext *s, AVPacket *avpkt, const AVFrame *frame, const char *aux_data, const int header_size, int field) encode_frame() argument
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec_asn1.c187 static int ec_asn1_group2fieldid(const EC_GROUP *group, X9_62_FIELDID *field) in ec_asn1_group2fieldid() argument
192 if (group == NULL || field == NULL) in ec_asn1_group2fieldid()
196 ASN1_OBJECT_free(field->fieldType); in ec_asn1_group2fieldid()
197 ASN1_TYPE_free(field->p.other); in ec_asn1_group2fieldid()
200 /* set OID for the field */ in ec_asn1_group2fieldid()
201 if ((field->fieldType = OBJ_nid2obj(nid)) == NULL) { in ec_asn1_group2fieldid()
217 field->p.prime = BN_to_ASN1_INTEGER(tmp, NULL); in ec_asn1_group2fieldid()
218 if (field->p.prime == NULL) { in ec_asn1_group2fieldid()
233 field->p.char_two = X9_62_CHARACTERISTIC_TWO_new(); in ec_asn1_group2fieldid()
234 char_two = field in ec_asn1_group2fieldid()
[all...]
/third_party/openssl/crypto/ec/
H A Dec_asn1.c187 static int ec_asn1_group2fieldid(const EC_GROUP *group, X9_62_FIELDID *field) in ec_asn1_group2fieldid() argument
192 if (group == NULL || field == NULL) in ec_asn1_group2fieldid()
196 ASN1_OBJECT_free(field->fieldType); in ec_asn1_group2fieldid()
197 ASN1_TYPE_free(field->p.other); in ec_asn1_group2fieldid()
200 /* set OID for the field */ in ec_asn1_group2fieldid()
201 if ((field->fieldType = OBJ_nid2obj(nid)) == NULL) { in ec_asn1_group2fieldid()
217 field->p.prime = BN_to_ASN1_INTEGER(tmp, NULL); in ec_asn1_group2fieldid()
218 if (field->p.prime == NULL) { in ec_asn1_group2fieldid()
233 field->p.char_two = X9_62_CHARACTERISTIC_TWO_new(); in ec_asn1_group2fieldid()
234 char_two = field in ec_asn1_group2fieldid()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DVaryingPacking.cpp76 // Then order by field index in ComparePackedVarying()
82 // Then order by secondary field index in ComparePackedVarying()
628 const sh::ShaderVariable &field, in collectUserVaryingFieldTF()
634 const sh::ShaderVariable *frontField = &field; in collectUserVaryingFieldTF()
759 const sh::ShaderVariable *field = input->findField(tfVarying, &fieldIndex); in collectTFVarying() local
760 if (field != nullptr) in collectTFVarying()
762 ASSERT(input->isShaderIOBlock || (!field->isStruct() && !field->isArray())); in collectTFVarying()
791 collectUserVaryingFieldTF(ref, *field, fieldIndex, GL_INVALID_INDEX); in collectTFVarying()
849 for (sh::ShaderVariable field in collectAndPackUserVaryings()
627 collectUserVaryingFieldTF(const ProgramVaryingRef &ref, const sh::ShaderVariable &field, GLuint fieldIndex, GLuint secondaryFieldIndex) collectUserVaryingFieldTF() argument
[all...]

Completed in 19 milliseconds

1...<<41424344454647484950>>...76