| /third_party/vk-gl-cts/modules/gles3/functional/ |
| H A D | es3fFlushFinishTests.cpp | 460 std::vector<Vec2> getPointsFromSamples (const std::vector<FlushFinishCase::Sample>& samples, const deUint64 FlushFinishCase::Sample::*field) 465 points[ndx] = Vec2(float(samples[ndx].numDrawCalls), float(samples[ndx].*field)); 471 T getMaximumValue (const std::vector<FlushFinishCase::Sample>& samples, const T FlushFinishCase::Sample::*field) 475 T maxVal = samples[0].*field; 478 maxVal = de::max(maxVal, samples[ndx].*field);
|
| /third_party/pcre2/pcre2/src/ |
| H A D | pcre2test.c | 210 #define CONVERT_UNSET UINT32_MAX /* Unset value for convert_type field */ 823 /* Table of single-character abbreviated modifiers. The index field is 3578 * Check a modifer and find its field * 3582 it is allowed here and find the field that is to be changed. 3595 Returns: a field pointer or NULL 3601 void *field = NULL; in check_modifier() local 3621 if (ctx == CTX_DEFPAT) field = PTR(default_pat_context); in check_modifier() 3622 else if (ctx == CTX_PAT) field = PTR(pat_context); in check_modifier() 3626 if (ctx == CTX_DEFDAT) field = PTR(default_dat_context); in check_modifier() 3627 else if (ctx == CTX_DAT) field in check_modifier() 3697 void *field; decode_modifiers() local [all...] |
| /third_party/elfio/c_wrapper/ |
| H A D | elfio_c_wrapper.cpp | 398 char* field, in elfio_modinfo_get_attribute() 406 strncpy( field, field_str.c_str(), (size_t)field_len - 1 ); in elfio_modinfo_get_attribute() 425 elfio_modinfo_add_attribute( pmodinfo_t pmodinfo, char* field, char* value ) in elfio_modinfo_add_attribute() argument 427 return pmodinfo->add_attribute( field, value ); in elfio_modinfo_add_attribute() 396 elfio_modinfo_get_attribute( pmodinfo_t pmodinfo, Elf_Word no, char* field, int field_len, char* value, int value_len ) elfio_modinfo_get_attribute() argument
|
| /third_party/elfio/examples/c_wrapper/ |
| H A D | elfio_c_wrapper.cpp | 399 char* field, in elfio_modinfo_get_attribute() 407 strncpy( field, field_str.c_str(), (size_t)field_len - 1 ); in elfio_modinfo_get_attribute() 426 elfio_modinfo_add_attribute( pmodinfo_t pmodinfo, char* field, char* value ) in elfio_modinfo_add_attribute() argument 428 return pmodinfo->add_attribute( field, value ); in elfio_modinfo_add_attribute() 397 elfio_modinfo_get_attribute( pmodinfo_t pmodinfo, Elf_Word no, char* field, int field_len, char* value, int value_len ) elfio_modinfo_get_attribute() argument
|
| /third_party/ffmpeg/libavfilter/ |
| H A D | vf_nlmeans.c | 413 #define CHECK_ODD_FIELD(field, name) do { \ 414 if (!(s->field & 1)) { \ 415 s->field |= 1; \ 417 "setting it to %d\n", s->field); \
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
| H A D | LongNameHandler.java | 265 NumberFormat.Field field) { in simpleFormatsToModifiers() 274 modifiers.put(plural, new SimpleModifier(compiled, field, false, parameters)); in simpleFormatsToModifiers() 281 NumberFormat.Field field) { in multiSimpleFormatsToModifiers() 293 modifiers.put(plural, new SimpleModifier(compoundCompiled, field, false, parameters)); in multiSimpleFormatsToModifiers() 263 simpleFormatsToModifiers( String[] simpleFormats, NumberFormat.Field field) simpleFormatsToModifiers() argument 278 multiSimpleFormatsToModifiers( String[] leadFormats, String trailFormat, NumberFormat.Field field) multiSimpleFormatsToModifiers() argument
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/ |
| H A D | ICUDurationTest.java | 40 * The ICU DurationFormat just extracts the field values, 113 public Number getField(Field field) { in getField() argument 114 return fields.get(field); in getField() 128 public boolean isSet(Field field) { in isSet() argument 129 return fields.containsKey(field); in isSet()
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/duration/ |
| H A D | ICUDurationTest.java | 43 * The ICU DurationFormat just extracts the field values, 116 public Number getField(Field field) { in getField() argument 117 return fields.get(field); in getField() 131 public boolean isSet(Field field) { in isSet() argument 132 return fields.containsKey(field); in isSet()
|
| /third_party/icu/icu4c/source/i18n/ |
| H A D | number_patternmodifier.cpp | 26 void MutablePatternModifier::setPatternInfo(const AffixPatternProvider* patternInfo, Field field) { in setPatternInfo() argument 28 fField = field; in setPatternInfo() 248 bool MutablePatternModifier::containsField(Field field) const { in containsField() 249 (void)field; in containsField()
|
| /third_party/node/deps/v8/src/compiler/ |
| H A D | escape-analysis-reducer.cc | 191 Node* field = in ReduceDeoptState() local 193 CHECK_NOT_NULL(field); in ReduceDeoptState() 194 if (field != jsgraph()->Dead()) { in ReduceDeoptState() 195 inputs.push_back(ReduceDeoptState(field, effect, deduplicator)); in ReduceDeoptState()
|
| /third_party/node/deps/v8/src/base/ |
| H A D | cpu.cc | 283 // Extract the content of a the first occurrence of a given field in 287 char* ExtractField(const char* field) const { 288 DCHECK_NOT_NULL(field); 290 // Look for first field occurrence, and ensure it starts the line. 291 size_t fieldlen = strlen(field); 294 p = strstr(p, field); 586 // Extract implementor from the "CPU implementer" field. in CPU() 607 // Extract part number from the "CPU part" field. in CPU() 618 // Extract architecture from the "CPU Architecture" field. in CPU() 620 // the 'Processor' field whic in CPU() [all...] |
| /third_party/node/deps/v8/src/objects/ |
| H A D | js-temporal-objects.h | 20 #define DECLARE_TEMPORAL_INLINE_GETTER_SETTER(field) \ 21 inline void set_##field(int32_t field); \ 22 inline int32_t field() const;
|
| /third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
| H A D | fd5_query.c | 43 /* offset of a single field of an array of fd5_query_sample: */ 44 #define query_sample_idx(aq, idx, field) \ 47 offsetof(struct fd5_query_sample, field), \ 50 /* offset of a single field of fd5_query_sample: */ 51 #define query_sample(aq, field) query_sample_idx(aq, 0, field)
|
| /third_party/rust/crates/io-lifetimes/src/ |
| H A D | types.rs | 810 f.debug_struct("BorrowedFd").field("fd", &self.fd).finish() in fmt() 819 .field("handle", &self.handle) in fmt() 829 .field("socket", &self.socket) in fmt() 838 f.debug_struct("OwnedFd").field("fd", &self.fd).finish() in fmt() 847 .field("handle", &self.handle) in fmt() 857 .field("socket", &self.socket) in fmt()
|
| /third_party/python/Tools/scripts/ |
| H A D | stable_abi.py | 97 for field in fields: 98 if field.name in {'name', 'value', 'kind'}: 100 value = getattr(item, field.name) 101 if value == field.default: 104 yield f" {field.name} = true" 106 yield f" {field.name} = {value!r}"
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
| H A D | SymbolEnv.cpp | 478 void SymbolEnv::markAsPacked(const TField &field) in markAsPacked() argument 480 mPackedFields.insert(&field); in markAsPacked() 483 bool SymbolEnv::isPacked(const TField &field) const in isPacked() 485 return mPackedFields.find(&field) != mPackedFields.end(); in isPacked()
|
| /third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/aarch64/ |
| H A D | jsimd.c | 46 check_cpuinfo(char *buffer, const char *field, char *value) in check_cpuinfo() argument 52 if (strncmp(buffer, field, strlen(field)) != 0) in check_cpuinfo() 54 buffer += strlen(field); in check_cpuinfo()
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| H A D | number_patternmodifier.cpp | 26 void MutablePatternModifier::setPatternInfo(const AffixPatternProvider* patternInfo, Field field) { in setPatternInfo() argument 28 fField = field; in setPatternInfo() 244 bool MutablePatternModifier::containsField(Field field) const { in containsField() 245 (void)field; in containsField()
|
| /third_party/skia/src/sfnt/ |
| H A D | SkOTTable_OS_2_V3.h | 72 } field; 260 } field; 387 } field; 491 } field;
|
| H A D | SkOTTable_OS_2_V2.h | 72 } field; 260 } field; 378 } field; 482 } field;
|
| H A D | SkOTTable_OS_2_V1.h | 72 } field; 258 } field; 362 } field; 466 } field;
|
| /third_party/skia/src/utils/ |
| H A D | SkCustomTypeface.cpp | 17 #define SCALE_X(field) dst.field *= sx in scale_fontmetrics() 18 #define SCALE_Y(field) dst.field *= sy in scale_fontmetrics()
|
| /third_party/python/Lib/distutils/command/ |
| H A D | bdist_rpm.py | 453 for field in ('Vendor', 460 val = getattr(self, field.lower()) 462 spec_file.append('%s: %s' % (field, ' '.join(val))) 464 spec_file.append('%s: %s' % (field, val))
|
| /third_party/protobuf/python/google/protobuf/internal/ |
| H A D | unknown_fields_test.py | 108 # Unknown field should have wire format data which can be parsed back to 136 # Test message field and repeated message field. 398 for field in unknown_fields: 399 if field.field_number == field_descriptor.number: 402 self.assertIn(field.data, expected_value) 404 self.assertEqual(expected_value, field.data) 419 # Fetching the enum field shouldn't crash, instead returning the
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
| H A D | issue-807-opaque-types-methods-being-generated.hpp | 22 NoBindingsShouldBeGeneratedForMe2 field; member in Opaque
|