| /third_party/libdrm/vc4/ |
| H A D | vc4_packet.h | 128 #define VC4_SET_FIELD(value, field) \ 130 uint32_t fieldval = (value) << field ## _SHIFT; \ 131 assert((fieldval & ~ field ## _MASK) == 0); \ 132 fieldval & field ## _MASK; \ 135 #define VC4_GET_FIELD(word, field) (((word) & field ## _MASK) >> field ## _SHIFT) 197 /** The values of the field are VC4_TILING_FORMAT_* */ 227 /** same values in this 3-bit field as PIPE_FUNC_* */ 281 /** The values of the field ar [all...] |
| /third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/ |
| H A D | DescriptorDeclarationTest.cs | 126 var field = message.FindFieldByName("text"); in FieldComments() 127 Assert.NotNull(field.Declaration); in FieldComments() 128 Assert.AreEqual(" Leading field comment\n", field.Declaration.LeadingComments); in FieldComments() 129 Assert.AreEqual(" Trailing field comment\n", field.Declaration.TrailingComments); in FieldComments() 137 var field = nested.FindFieldByName("nested_text"); in NestedMessageFieldComments() 138 Assert.NotNull(field.Declaration); in NestedMessageFieldComments() 139 Assert.AreEqual(" Leading nested message field comment\n", field in NestedMessageFieldComments() [all...] |
| /third_party/rust/crates/libc/src/unix/linux_like/linux/musl/ |
| H A D | mod.rs | 358 .field("uptime", &self.uptime) in fmt() 359 .field("loads", &self.loads) in fmt() 360 .field("totalram", &self.totalram) in fmt() 361 .field("freeram", &self.freeram) in fmt() 362 .field("sharedram", &self.sharedram) in fmt() 363 .field("bufferram", &self.bufferram) in fmt() 364 .field("totalswap", &self.totalswap) in fmt() 365 .field("freeswap", &self.freeswap) in fmt() 366 .field("procs", &self.procs) in fmt() 367 .field("pa in fmt() [all...] |
| /third_party/ffmpeg/libavfilter/ |
| H A D | vf_fieldmatch.c | 92 int field; member 118 { "order", "specify the assumed field order", OFFSET(order), AV_OPT_TYPE_INT, {.i64=FM_PARITY_AUTO}, -1, 1, FLAGS, "order" }, 120 { "bff", "assume bottom field first", 0, AV_OPT_TYPE_CONST, {.i64=FM_PARITY_BOTTOM}, INT_MIN, INT_MAX, FLAGS, "order" }, 121 { "tff", "assume top field first", 0, AV_OPT_TYPE_CONST, {.i64=FM_PARITY_TOP}, INT_MIN, INT_MAX, FLAGS, "order" }, 130 { "field", "set the field to match from", OFFSET(field), AV_OPT_TYPE_INT, {.i64=FM_PARITY_AUTO}, -1, 1, FLAGS, "field" }, 131 { "auto", "automatic (same value as 'order')", 0, AV_OPT_TYPE_CONST, {.i64=FM_PARITY_AUTO}, INT_MIN, INT_MAX, FLAGS, "field" }, 132 { "bottom", "bottom field", 475 get_field_base(int match, int field) get_field_base() argument 487 compare_fields(FieldMatchContext *fm, int match1, int match2, int field) compare_fields() argument 609 copy_fields(const FieldMatchContext *fm, AVFrame *dst, const AVFrame *src, int field, int input) copy_fields() argument 622 create_weave_frame(AVFilterContext *ctx, int match, int field, const AVFrame *prv, AVFrame *src, const AVFrame *nxt, int input) create_weave_frame() argument 649 checkmm(AVFilterContext *ctx, int *combs, int m1, int m2, AVFrame **gen_frames, int field) checkmm() argument 683 int order, field, i, match, sc = 0, ret = 0; filter_frame() local [all...] |
| /third_party/eudev/src/shared/ |
| H A D | process-util.h | 31 #define procfs_file_alloca(pid, field) \ 36 _r_ = ("/proc/self/" field); \ 38 _r_ = alloca(strlen("/proc/") + DECIMAL_STR_MAX(pid_t) + 1 + sizeof(field)); \ 39 sprintf((char*) _r_, "/proc/"PID_FMT"/" field, _pid_); \
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
| H A D | DebugUtilities.java | 51 * @param field which enum value to look up 54 public static String enumString(int type, int field) { in enumString() argument 55 return DebugUtilitiesData.NAMES[type][field]; in enumString() 76 * @return the expected ordinal value (should be equal to "field") 79 public static int enumArrayValue(int type, int field) { in enumArrayValue() argument 80 return DebugUtilitiesData.VALUES[type][field]; in enumArrayValue()
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
| H A D | DebugUtilities.java | 47 * @param field which enum value to look up 50 public static String enumString(int type, int field) { in enumString() argument 51 return DebugUtilitiesData.NAMES[type][field]; in enumString() 72 * @return the expected ordinal value (should be equal to "field") 75 public static int enumArrayValue(int type, int field) { in enumArrayValue() argument 76 return DebugUtilitiesData.VALUES[type][field]; in enumArrayValue()
|
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| H A D | MessageOrBuilder.java | 49 * Returns a list of field paths (e.g. "foo.bar.baz") of required fields which are not set in this 74 * values. A singular ("required" or "optional") field is set iff hasField() returns true for that 75 * field. A "repeated" field is set iff getRepeatedFieldCount() is greater than zero. The values 77 * for each field. The map is guaranteed to be a sorted map, so iterating over it will return 78 * fields in order by field number. <br> 92 /** Obtains the FieldDescriptor if the given oneof is set. Returns null if no field is set. */ 96 * Returns true if the given field is set. This is exactly equivalent to calling the generated 97 * "has" accessor method corresponding to the field. 99 * @throws IllegalArgumentException The field i 102 hasField(Descriptors.FieldDescriptor field) hasField() argument 110 getField(Descriptors.FieldDescriptor field) getField() argument 119 getRepeatedFieldCount(Descriptors.FieldDescriptor field) getRepeatedFieldCount() argument 129 getRepeatedField(Descriptors.FieldDescriptor field, int index) getRepeatedField() argument [all...] |
| /third_party/mesa3d/src/intel/perf/ |
| H A D | intel_perf.c | 993 /* The lower 16bits of the RPT_ID field of the OA reports contains a in gfx8_read_report_clock_ratios() 1024 * "Disable OA reports due to clock ratio change" field in in intel_perf_query_result_read_frequencies() 1124 #define GET_FIELD(word, field) (((word) & field ## _MASK) >> field ## _SHIFT) 1200 const struct intel_perf_query_field *field = &layout->fields[r]; in intel_perf_query_result_accumulate_fields() local 1202 if (field->type == INTEL_PERF_QUERY_FIELD_TYPE_MI_RPC) { in intel_perf_query_result_accumulate_fields() 1204 start + field->location, in intel_perf_query_result_accumulate_fields() 1205 end + field->location); in intel_perf_query_result_accumulate_fields() 1212 start + field in intel_perf_query_result_accumulate_fields() 1257 const struct intel_perf_query_field *field = &layout->fields[r]; intel_perf_query_result_print_fields() local 1336 struct intel_perf_query_field *field = intel_perf_init_query_fields() local [all...] |
| /third_party/rust/crates/libc/src/unix/bsd/apple/ |
| H A D | mod.rs | 351 // FIXME: this field is actually a union 1368 .field("val", unsafe { &self.val }) in fmt() 1404 .field("ident", &ident) in fmt() 1405 .field("filter", &filter) in fmt() 1406 .field("flags", &flags) in fmt() 1407 .field("fflags", &fflags) in fmt() 1408 .field("data", &data) in fmt() 1409 .field("udata", &udata) in fmt() 1458 .field("sem_perm", &sem_perm) in fmt() 1459 .field("sem_bas in fmt() [all...] |
| /third_party/icu/icu4c/source/i18n/ |
| H A D | hebrwcal.h | 229 * of time to the given time field, based on the calendar's rules. For more 232 * @param field The time field. 233 * @param amount The amount of date or time to be added to the field. 235 * previously set in the time field is invalid, this will be set to 238 virtual void add(UCalendarDateFields field, int32_t amount, UErrorCode& status) override; 242 virtual void add(EDateFields field, int32_t amount, UErrorCode& status) override; 246 * (Overrides Calendar) Rolls up or down by the given amount in the specified field. 249 * @param field The time field [all...] |
| /third_party/node/deps/icu-small/source/i18n/ |
| H A D | hebrwcal.h | 229 * of time to the given time field, based on the calendar's rules. For more 232 * @param field The time field. 233 * @param amount The amount of date or time to be added to the field. 235 * previously set in the time field is invalid, this will be set to 238 virtual void add(UCalendarDateFields field, int32_t amount, UErrorCode& status) override; 242 virtual void add(EDateFields field, int32_t amount, UErrorCode& status) override; 246 * (Overrides Calendar) Rolls up or down by the given amount in the specified field. 249 * @param field The time field [all...] |
| /third_party/node/deps/icu-small/source/tools/toolutil/ |
| H A D | dbgutil.cpp | 27 static const UnicodeString& _fieldString(UDebugEnumType type, int32_t field, UnicodeString& fillin) { in _fieldString() argument 28 const char *str = udbg_enumName(type, field); in _fieldString() 79 U_TOOLUTIL_API const UnicodeString& U_EXPORT2 udbg_enumString(UDebugEnumType type, int32_t field) { in udbg_enumString() argument 90 //fprintf(stderr, "enumString [%d,%d]: typecount %d, fieldcount %d\n", type,field,UDBG_ENUM_COUNT,count); in udbg_enumString() 92 if(field<0 || field > count) { in udbg_enumString() 94 } else { return strs[type][field]; in udbg_enumString()
|
| /third_party/icu/icu4c/source/tools/toolutil/ |
| H A D | dbgutil.cpp | 27 static const UnicodeString& _fieldString(UDebugEnumType type, int32_t field, UnicodeString& fillin) { in _fieldString() argument 28 const char *str = udbg_enumName(type, field); in _fieldString() 79 U_TOOLUTIL_API const UnicodeString& U_EXPORT2 udbg_enumString(UDebugEnumType type, int32_t field) { in udbg_enumString() argument 90 //fprintf(stderr, "enumString [%d,%d]: typecount %d, fieldcount %d\n", type,field,UDBG_ENUM_COUNT,count); in udbg_enumString() 92 if(field<0 || field > count) { in udbg_enumString() 94 } else { return strs[type][field]; in udbg_enumString()
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| H A D | hebrwcal.h | 236 * of time to the given time field, based on the calendar's rules. For more 239 * @param field The time field. 240 * @param amount The amount of date or time to be added to the field. 242 * previously set in the time field is invalid, this will be set to 245 virtual void add(UCalendarDateFields field, int32_t amount, UErrorCode& status); 249 virtual void add(EDateFields field, int32_t amount, UErrorCode& status); 253 * (Overrides Calendar) Rolls up or down by the given amount in the specified field. 256 * @param field The time field [all...] |
| /third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
| H A D | dbgutil.cpp | 27 static const UnicodeString& _fieldString(UDebugEnumType type, int32_t field, UnicodeString& fillin) { in _fieldString() argument 28 const char *str = udbg_enumName(type, field); in _fieldString() 79 U_TOOLUTIL_API const UnicodeString& U_EXPORT2 udbg_enumString(UDebugEnumType type, int32_t field) { in udbg_enumString() argument 90 //fprintf(stderr, "enumString [%d,%d]: typecount %d, fieldcount %d\n", type,field,UDBG_ENUM_COUNT,count); in udbg_enumString() 92 if(field<0 || field > count) { in udbg_enumString() 94 } else { return strs[type][field]; in udbg_enumString()
|
| /third_party/selinux/libselinux/src/ |
| H A D | avc_internal.h | 141 #define avc_cache_stats_incr(field) \ 143 cache_stats.field ++; \ 145 #define avc_cache_stats_add(field, num) \ 147 cache_stats.field += num; \ 152 #define avc_cache_stats_incr(field) do {} while (0) 153 #define avc_cache_stats_add(field, num) do {} while (0)
|
| /third_party/mesa3d/src/amd/registers/ |
| H A D | makeregheader.py | 64 Disambiguation suffix to be used for an enum entry or field name that 78 parent would be the set of chips supporting the field containing the enum, 117 into a single field = if writing to field_in_type1 bits won't 123 for field in regdb.register_type(type_ref).fields: 124 # If a different field in the other type starts in 125 # the tested field's bits[0, 1] interval 126 if (field.bits[0] > ref.bits[0] and 127 field.bits[0] <= ref.bits[1]): 136 # The following contain: Object(address, chips, name, regmap/field/enumentry) 160 for field i [all...] |
| /third_party/elfio/elfio/ |
| H A D | elfio_modinfo.hpp | 47 get_attribute( Elf_Word no, std::string& field, std::string& value ) const in get_attribute() argument 50 field = content[no].first; in get_attribute() 73 Elf_Word add_attribute( const std::string& field, const std::string& value ) in add_attribute() argument 81 std::string attribute = field + "=" + value; in add_attribute() 84 content.emplace_back( field, value ); in add_attribute()
|
| /third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
| H A D | aarch64.rs | 65 .field("__b8", &self.__b8) in fmt() 66 .field("__h16", &self.__h16) in fmt() 67 .field("__s32", &self.__s32) in fmt() 68 .field("__d64", &self.__d64) in fmt() 69 .field("__q128", &self.__q128) in fmt()
|
| /third_party/astc-encoder/Test/ |
| H A D | astc_test_result_report.py | 140 tag: The field name to include in the tag. 152 def get_abs_delta(self, field): 157 field: The Record attribute name to diff. 166 result.append(getattr(record, field) - getattr(root, field)) 170 def get_rel_delta(self, field): 175 field: The Record attribute name to diff. 184 result.append(getattr(record, field) / getattr(root, field)) 188 def get_irel_delta(self, field) [all...] |
| /third_party/mesa3d/src/compiler/glsl/ |
| H A D | gl_nir_lower_xfb_varying.c | 99 char *field = get_field_name(name + 1); in get_deref() local 101 assert(*type != NULL && glsl_type_is_struct(*type) && field != NULL); in get_deref() 103 int idx = glsl_get_field_index(*type, field); in get_deref() 106 name += 1 + strlen(field); in get_deref() 107 free(field); in get_deref() 111 char *field = get_field_name(name); in get_deref() local 112 name += strlen(field); in get_deref() 113 free(field); in get_deref()
|
| /third_party/protobuf/benchmarks/util/ |
| H A D | schema_proto2_to_proto3_util.h | 35 auto field = old_file->extension(i); in StripFile() local 36 if (field->type() == FieldDescriptor::TYPE_GROUP || in StripFile() 37 IsMessageSet(field->message_type()) || in StripFile() 38 IsMessageSet(field->containing_type())) { in StripFile() 56 if (old_message->field(i)->type() == FieldDescriptor::TYPE_GROUP || in StripMessage() 57 IsMessageSet(old_message->field(i)->message_type())) { in StripMessage() 166 static bool ShouldClearLabel(const FieldDescriptorProto *field) { in ShouldClearLabel() argument 167 return field->label() == FieldDescriptorProto::LABEL_REQUIRED; in ShouldClearLabel()
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
| H A D | SymbolEnv.h | 33 VarField(const TField &field) : mField(&field) {} in VarField() argument 37 ANGLE_INLINE const TField *field() const { return mField; } in field() function in sh::VarField 64 const sh::TField *field = x.field(); in operator ()() local 65 return std::hash<const sh::TField *>()(field); in operator ()() 156 // not have a sampler, yet the A' struct field still contains the sampler field. 188 void markAsPacked(const TField &field); 189 bool isPacked(const TField &field) cons [all...] |
| /third_party/toybox/toys/pending/ |
| H A D | mdev.c | 28 field is a regular expression matching one or more device names, 30 matching devices. Fourth field is optional. It could be used to change 98 int field; in make_device() local 107 for (field = 4; field; field--) { in make_device() 113 switch(field) { in make_device() 179 // Try to look for name or path (optional field) in make_device() 212 // Note: Last field is optional. in make_device() 213 if ((field> in make_device() [all...] |