| /kernel/linux/linux-5.10/drivers/staging/rtl8192e/ |
| H A D | rtl819x_BA.h | 27 } field; member 38 } field; member 48 } field; member
|
| /kernel/linux/linux-6.6/include/linux/ |
| H A D | build_bug.h | 82 * Compile time check that field has an expected offset 84 #define ASSERT_STRUCT_OFFSET(type, field, expected_offset) \ 85 BUILD_BUG_ON_MSG(offsetof(type, field) != (expected_offset), \ 86 "Offset of " #field " in " #type " has changed.")
|
| /kernel/linux/linux-6.6/drivers/staging/rtl8192e/ |
| H A D | rtl819x_BA.h | 27 } field; member 38 } field; member 48 } field; member
|
| /kernel/linux/linux-6.6/drivers/staging/rtl8192u/ieee80211/ |
| H A D | rtl819x_BA.h | 23 } field; member 33 } field; member 42 } field; member
|
| /kernel/linux/linux-6.6/tools/include/linux/ |
| H A D | build_bug.h | 84 * Compile time check that field has an expected offset 86 #define ASSERT_STRUCT_OFFSET(type, field, expected_offset) \ 87 BUILD_BUG_ON_MSG(offsetof(type, field) != (expected_offset), \ 88 "Offset of " #field " in " #type " has changed.")
|
| /third_party/icu/icu4c/source/i18n/ |
| H A D | ufieldpositer.cpp | 47 int32_t field = -1; in ufieldpositer_next() local 49 field = fp.getField(); in ufieldpositer_next() 57 return field; in ufieldpositer_next()
|
| /third_party/node/deps/icu-small/source/i18n/ |
| H A D | ufieldpositer.cpp | 47 int32_t field = -1; in ufieldpositer_next() local 49 field = fp.getField(); in ufieldpositer_next() 57 return field; in ufieldpositer_next()
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
| H A D | stdint_typedef.rs | 14 pub field: u64, 32 unsafe { ::std::ptr::addr_of!((*ptr).field) as usize - ptr as usize }, in bindgen_test_layout_Struct() 35 "Offset of field: ", in bindgen_test_layout_Struct() 38 stringify!(field) in bindgen_test_layout_Struct()
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| H A D | ufieldpositer.cpp | 47 int32_t field = -1; in ufieldpositer_next() local 49 field = fp.getField(); in ufieldpositer_next() 57 return field; in ufieldpositer_next()
|
| /third_party/typescript/tests/baselines/reference/ |
| H A D | contextualOverloadListFromUnionWithPrimitiveNoImplicitAny.js | 11 const obj: {field: Rule} = { property 12 field: { 21 field: {
|
| H A D | jsDeclarationsFunctionJSDoc.js | 22 this.field = b; 62 this.field = b;
98 field: any;
|
| /kernel/linux/linux-5.10/arch/x86/include/asm/ |
| H A D | svm.h | 374 #define GHCB_BITMAP_IDX(field) \ 375 (offsetof(struct vmcb_save_area, field) / sizeof(u64)) 377 #define DEFINE_GHCB_ACCESSORS(field) \ 378 static inline bool ghcb_##field##_is_valid(const struct ghcb *ghcb) \ 380 return test_bit(GHCB_BITMAP_IDX(field), \ 384 static inline void ghcb_set_##field(struct ghcb *ghcb, u64 value) \ 386 __set_bit(GHCB_BITMAP_IDX(field), \ 388 ghcb->save.field = value; \
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/ |
| H A D | cnic.h | 385 #define BNX2X_SHMEM_ADDR(base, field) (base + \ 386 offsetof(struct shmem_region, field)) 388 #define BNX2X_SHMEM2_ADDR(base, field) (base + \ 389 offsetof(struct shmem2_region, field)) 391 #define BNX2X_SHMEM2_HAS(base, field) \ 394 offsetof(struct shmem2_region, field))) 396 #define BNX2X_MF_CFG_ADDR(base, field) \ 397 ((base) + offsetof(struct mf_cfg, field))
|
| /kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/ |
| H A D | cnic.h | 385 #define BNX2X_SHMEM_ADDR(base, field) (base + \ 386 offsetof(struct shmem_region, field)) 388 #define BNX2X_SHMEM2_ADDR(base, field) (base + \ 389 offsetof(struct shmem2_region, field)) 391 #define BNX2X_SHMEM2_HAS(base, field) \ 394 offsetof(struct shmem2_region, field))) 396 #define BNX2X_MF_CFG_ADDR(base, field) \ 397 ((base) + offsetof(struct mf_cfg, field))
|
| /kernel/linux/linux-6.6/tools/perf/scripts/python/ |
| H A D | gecko.py | 28 from dataclasses import dataclass, field namespace 109 samples: List[Sample] = field(default_factory=list) 110 frameTable: List[Frame] = field(default_factory=list) 111 stringTable: List[str] = field(default_factory=list) 112 stringMap: Dict[str, int] = field(default_factory=dict) 113 stackTable: List[Stack] = field(default_factory=list) 114 stackMap: Dict[Tuple[Optional[int], int], int] = field(default_factory=dict) 115 frameMap: Dict[str, int] = field(default_factory=dict) 120 samples: List[Sample] = field(default_factory=list) 121 frameTable: List[Frame] = field(default_factor [all...] |
| /third_party/mesa3d/include/drm-uapi/ |
| H A D | drm_fourcc.h | 745 * 19:12 k Page Kind. This value directly maps to a field in the page 780 * Kind field 782 * Kind field 1407 * relevant for GFX9 and later and if the tile field is *_X/_T. 1426 #define AMD_FMT_MOD_SET(field, value) \ 1427 ((uint64_t)(value) << AMD_FMT_MOD_##field##_SHIFT) 1428 #define AMD_FMT_MOD_GET(field, value) \ 1429 (((value) >> AMD_FMT_MOD_##field##_SHIFT) & AMD_FMT_MOD_##field##_MASK) 1430 #define AMD_FMT_MOD_CLEAR(field) \ [all...] |
| /third_party/mesa3d/src/amd/common/ |
| H A D | sid_tables.py | 205 for field in array: 206 self.name_to_idx[field.name].append(len(self.table)) 207 self.table.append(field) 223 for field in self.table[start:end]: 224 filp.write('\t%s,\n' % (field.format(string_table, idx_table))) 309 field = Field(dbfield.name, dbfield.bits) 313 field.values.append((entry.name, entry.value)) 314 fields.append(field)
|
| /third_party/libdrm/include/drm/ |
| H A D | drm_fourcc.h | 679 * 19:12 k Page Kind. This value directly maps to a field in the page 714 * Kind field 716 * Kind field 1335 * relevant for GFX9 and later and if the tile field is *_X/_T. 1354 #define AMD_FMT_MOD_SET(field, value) \ 1355 ((uint64_t)(value) << AMD_FMT_MOD_##field##_SHIFT) 1356 #define AMD_FMT_MOD_GET(field, value) \ 1357 (((value) >> AMD_FMT_MOD_##field##_SHIFT) & AMD_FMT_MOD_##field##_MASK) 1358 #define AMD_FMT_MOD_CLEAR(field) \ [all...] |
| /third_party/node/deps/icu-small/source/i18n/unicode/ |
| H A D | ucal.h | 61 * A <code>UCalendar</code> object can produce all the time field values 75 * the Gregorian calendar, the default for a field is the same as that of the 83 * most recently set single field, will be used. 134 * <code>Calendar</code> provides an API for field "rolling", where fields 141 * adding the specified (signed) amount of time to a particular time field. 283 * of the week. This field takes values <code>SUNDAY</code>, 300 * with the <code>DAY_OF_WEEK</code> field, this uniquely specifies a day 302 * <code>WEEK_OF_YEAR</code>, this field's value does <em>not</em> depend on 394 * <code>UCAL_WEEK_OF_YEAR</code> field. This may be one greater or less 429 * Ranges from 0 to 23:59:59.999 (regardless of DST). This field behave [all...] |
| /third_party/icu/icu4c/source/i18n/unicode/ |
| H A D | ucal.h | 61 * A <code>UCalendar</code> object can produce all the time field values 75 * the Gregorian calendar, the default for a field is the same as that of the 83 * most recently set single field, will be used. 134 * <code>Calendar</code> provides an API for field "rolling", where fields 141 * adding the specified (signed) amount of time to a particular time field. 283 * of the week. This field takes values <code>SUNDAY</code>, 300 * with the <code>DAY_OF_WEEK</code> field, this uniquely specifies a day 302 * <code>WEEK_OF_YEAR</code>, this field's value does <em>not</em> depend on 394 * <code>UCAL_WEEK_OF_YEAR</code> field. This may be one greater or less 429 * Ranges from 0 to 23:59:59.999 (regardless of DST). This field behave [all...] |
| /third_party/mesa3d/src/gallium/drivers/r600/ |
| H A D | eg_debug.c | 100 const struct eg_field *field = egd_fields_table + reg->fields_offset + f; in eg_dump_reg() local 101 const int *values_offsets = egd_strings_offsets + field->values_offset; in eg_dump_reg() 102 uint32_t val = (value & field->mask) >> in eg_dump_reg() 103 (ffs(field->mask) - 1); in eg_dump_reg() 105 if (!(field->mask & field_mask)) in eg_dump_reg() 108 /* Indent the field. */ in eg_dump_reg() 113 /* Print the field. */ in eg_dump_reg() 114 fprintf(file, "%s = ", egd_strings + field->name_offset); in eg_dump_reg() 116 if (val < field->num_values && values_offsets[val] >= 0) in eg_dump_reg() 120 util_bitcount(field in eg_dump_reg() [all...] |
| /third_party/rust/crates/libc/src/unix/linux_like/android/b64/ |
| H A D | mod.rs | 161 .field("value", &self.value) in fmt() 162 // FIXME: .field("__reserved", &self.__reserved) in fmt() 190 .field("value", &self.value) in fmt() 191 // FIXME: .field("__reserved", &self.__reserved) in fmt() 223 .field("numLocks", &self.numLocks) in fmt() 224 .field("writerThreadId", &self.writerThreadId) in fmt() 225 .field("pendingReaders", &self.pendingReaders) in fmt() 226 .field("pendingWriters", &self.pendingWriters) in fmt() 227 .field("attr", &self.attr) in fmt() 228 // FIXME: .field("__reserve in fmt() [all...] |
| /third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
| H A D | ucal.h | 61 * A <code>UCalendar</code> object can produce all the time field values 75 * the Gregorian calendar, the default for a field is the same as that of the 83 * most recently set single field, will be used. 134 * <code>Calendar</code> provides an API for field "rolling", where fields 141 * adding the specified (signed) amount of time to a particular time field. 283 * of the week. This field takes values <code>SUNDAY</code>, 300 * with the <code>DAY_OF_WEEK</code> field, this uniquely specifies a day 302 * <code>WEEK_OF_YEAR</code>, this field's value does <em>not</em> depend on 394 * <code>UCAL_WEEK_OF_YEAR</code> field. This may be one greater or less 429 * Ranges from 0 to 23:59:59.999 (regardless of DST). This field behave [all...] |
| /third_party/skia/src/sksl/dsl/ |
| H A D | DSLType.cpp | 265 for (const DSLField& field : fields) { in Struct() 266 if (field.fModifiers.fModifiers.fFlags != Modifiers::kNo_Flag) { in Struct() 267 String desc = field.fModifiers.fModifiers.description(); in Struct() 269 ThreadContext::ReportError("modifier '" + desc + "' is not permitted on a struct field", in Struct() 270 field.fPosition); in Struct() 273 const SkSL::Type& type = field.fType.skslType(); in Struct() 276 "' is not permitted in a struct", field.fPosition); in Struct() 278 skslFields.emplace_back(field.fModifiers.fModifiers, field.fName, &type); in Struct()
|
| /third_party/typescript/tests/baselines/reference/tsc/declarationEmit/ |
| H A D | when-same-version-is-referenced-through-source-and-another-symlinked-package-moduleCaseChange.js | 94 'package.json' does not have a 'typesVersions' field. 100 'package.json' does not have a 'typings' field. 101 'package.json' does not have a 'types' field. 102 'package.json' does not have a 'main' field. 126 'package.json' does not have a 'typesVersions' field. 132 'package.json' does not have a 'typings' field. 133 'package.json' does not have a 'types' field. 134 'package.json' does not have a 'main' field.
|