| /third_party/mesa3d/src/intel/compiler/ |
| H A D | brw_eu_defines.h | 45 #define SET_FIELD(value, field) \ 47 uint32_t fieldval = (uint32_t)(value) << field ## _SHIFT; \ 48 assert((fieldval & ~ field ## _MASK) == 0); \ 49 fieldval & field ## _MASK; \ 60 #define GET_FIELD(word, field) (((word) & field ## _MASK) >> field ## _SHIFT) 1088 * field of an actual hardware instruction, but virtual instructions may be 1661 /* Gfx7 "GS URB Entry Allocation Size" is a U9-1 field, so the maximum gs_size
|
| /third_party/rust/crates/libc/src/unix/linux_like/android/b32/x86/ |
| H A D | mod.rs | 70 .field("uc_sigmask_with_padding", &self.uc_sigmask) in fmt() 91 .field("uc_sigmask", unsafe { &self.uc_sigmask }) in fmt() 109 // Ignore padding field in eq() 116 .field("uc_flags", &self.uc_flags) in fmt() 117 .field("uc_link", &self.uc_link) in fmt() 118 .field("uc_stack", &self.uc_stack) in fmt() 119 .field("uc_mcontext", &self.uc_mcontext) in fmt() 120 .field( in fmt() 124 // Ignore padding field in fmt() 135 // Ignore padding field in hash() [all...] |
| /third_party/protobuf/csharp/src/Google.Protobuf/ |
| H A D | JsonFormatter.cs | 221 foreach (var field in fields.InFieldNumberOrder()) in WriteMessageFields() 223 var accessor = field.Accessor; in WriteMessageFields() 225 if (!ShouldFormatFieldValue(message, field, value)) in WriteMessageFields() 245 /// Determines whether or not a field value should be serialized according to the field, 248 private bool ShouldFormatFieldValue(IMessage message, FieldDescriptor field, object value) => in ShouldFormatFieldValue() argument 249 field.HasPresence in ShouldFormatFieldValue() 251 ? field.Accessor.HasValue(message) in ShouldFormatFieldValue() 254 : settings.FormatDefaultValues || !IsDefaultValue(field, value); in ShouldFormatFieldValue() 346 throw new ArgumentException("Invalid field typ in IsDefaultValue() [all...] |
| /third_party/typescript/tests/baselines/reference/ |
| H A D | correlatedUnions.js | 45 function renderField<K extends keyof FieldMap>(field: FormField<K>) { 46 const renderFn = renderFuncs[field.type]; 47 renderFn(field.data); 254 function renderField(field) {
255 var renderFn = renderFuncs[field.type];
256 renderFn(field.data);
398 declare function renderField<K extends keyof FieldMap>(field: FormField<K>): void;
|
| H A D | inferenceLimit.js | 11 public brokenMethod(field: string, value: string) { 61 brokenMethod(field, value) {
|
| /third_party/rust/crates/nix/src/sys/ |
| H A D | statfs.rs | 475 // The f_flags field exists on Android and Fuchsia too, but without man 698 ds.field("optimal_transfer_size", &self.optimal_transfer_size()); in fmt() 699 ds.field("block_size", &self.block_size()); in fmt() 700 ds.field("blocks", &self.blocks()); in fmt() 701 ds.field("blocks_free", &self.blocks_free()); in fmt() 702 ds.field("blocks_available", &self.blocks_available()); in fmt() 703 ds.field("files", &self.files()); in fmt() 704 ds.field("files_free", &self.files_free()); in fmt() 705 ds.field("filesystem_id", &self.filesystem_id()); in fmt() 716 ds.field("flag in fmt() [all...] |
| /third_party/icu/icu4c/source/i18n/unicode/ |
| H A D | fieldpos.h | 52 * field within the formatted output with two indices: the index 53 * of the first character of the field and the index of the last 54 * character of the field. 61 * formatted output (such as the position of a field). 113 * DONT_CARE may be specified as the field to indicate that the 114 * caller doesn't need to specify a field. 120 * Creates a FieldPosition object with a non-specified field. 127 * Creates a FieldPosition object for the given field. Fields are 137 FieldPosition(int32_t field) in FieldPosition() argument 138 : UObject(), fField(field), fBeginInde in FieldPosition() [all...] |
| H A D | tmutfmt.h | 212 TimeUnit::UTimeUnitFields field, const UnicodeString&, 223 // get time unit name, such as "year", from time unit field enum, such as 225 static const char* getTimeUnitName(TimeUnit::UTimeUnitFields field, UErrorCode& status);
|
| /third_party/icu/icu4c/source/i18n/ |
| H A D | cecal.cpp | 84 CECalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument 86 return LIMITS[field][limitType]; in handleGetLimit()
|
| /third_party/libunwind/libunwind/src/ia64/ |
| H A D | mk_Gcursor_i.c | 34 #define offsetof(type,field) ((char *) &((type *) 0)->field - (char *) 0)
|
| /third_party/node/deps/icu-small/source/i18n/ |
| H A D | cecal.cpp | 86 CECalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument 88 return LIMITS[field][limitType]; in handleGetLimit()
|
| /third_party/node/deps/icu-small/source/i18n/unicode/ |
| H A D | tmutfmt.h | 212 TimeUnit::UTimeUnitFields field, const UnicodeString&, 223 // get time unit name, such as "year", from time unit field enum, such as 225 static const char* getTimeUnitName(TimeUnit::UTimeUnitFields field, UErrorCode& status);
|
| H A D | fieldpos.h | 52 * field within the formatted output with two indices: the index 53 * of the first character of the field and the index of the last 54 * character of the field. 61 * formatted output (such as the position of a field). 113 * DONT_CARE may be specified as the field to indicate that the 114 * caller doesn't need to specify a field. 120 * Creates a FieldPosition object with a non-specified field. 127 * Creates a FieldPosition object for the given field. Fields are 137 FieldPosition(int32_t field) in FieldPosition() argument 138 : UObject(), fField(field), fBeginInde in FieldPosition() [all...] |
| /third_party/ltp/testcases/kernel/syscalls/prctl/ |
| H A D | prctl06.c | 22 * and preserved across execve(2). We also check NoNewPrivs field in 85 int field; in setup() local 96 if (FILE_LINES_SCANF(PROC_STATUS, "NoNewPrivs:%d", &field)) { in setup() 97 tst_res(TCONF, "%s doesn't support NoNewPrivs field", PROC_STATUS); in setup()
|
| /third_party/node/deps/uv/src/ |
| H A D | queue.h | 30 #define QUEUE_DATA(ptr, type, field) \ 31 ((type *) ((char *) (ptr) - offsetof(type, field)))
|
| /third_party/rust/crates/cxx/gen/build/src/syntax/ |
| H A D | ident.rs | 33 for field in &strct.fields { 34 check(cx, &field.name);
|
| /third_party/rust/crates/cxx/gen/lib/src/syntax/ |
| H A D | ident.rs | 33 for field in &strct.fields { 34 check(cx, &field.name);
|
| /third_party/rust/crates/cxx/macro/src/syntax/ |
| H A D | ident.rs | 33 for field in &strct.fields { 34 check(cx, &field.name);
|
| /third_party/rust/crates/cxx/syntax/ |
| H A D | ident.rs | 33 for field in &strct.fields { 34 check(cx, &field.name);
|
| /third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
| H A D | ident.rs | 33 for field in &strct.fields { 34 check(cx, &field.name);
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
| H A D | NameNamelessUniformBuffers.cpp | 21 // and replaces them with name.field. 90 // Find which field it is 94 const TField *field = fields[fieldIndex]; variable 95 if (field->name() != symbolName)
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| H A D | cecal.cpp | 84 CECalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument 86 return LIMITS[field][limitType]; in handleGetLimit()
|
| /third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
| H A D | fieldpos.h | 52 * field within the formatted output with two indices: the index 53 * of the first character of the field and the index of the last 54 * character of the field. 61 * formatted output (such as the position of a field). 113 * DONT_CARE may be specified as the field to indicate that the 114 * caller doesn't need to specify a field. 120 * Creates a FieldPosition object with a non-specified field. 127 * Creates a FieldPosition object for the given field. Fields are 137 FieldPosition(int32_t field) in FieldPosition() argument 138 : UObject(), fField(field), fBeginInde in FieldPosition() [all...] |
| H A D | tmutfmt.h | 221 TimeUnit::UTimeUnitFields field, const UnicodeString&, 232 // get time unit name, such as "year", from time unit field enum, such as 234 static const char* getTimeUnitName(TimeUnit::UTimeUnitFields field, UErrorCode& status);
|
| /third_party/protobuf/src/google/protobuf/compiler/objectivec/ |
| H A D | objectivec_message.h | 76 const FieldDescriptor* field); 82 const FieldDescriptor* field);
|