Home
last modified time | relevance | path

Searched refs:field (Results 1501 - 1525 of 1757) sorted by relevance

1...<<6162636465666768697071

/third_party/mesa3d/src/compiler/glsl/
H A Dast_function.cpp1947 * fields, in order, using one argument per field. Each argument must in process_record_constructor()
1948 * be the same type as the field it sets, or be a type that can be in process_record_constructor()
1949 * converted to the field's type according to Section 4.1.10 “Implicit in process_record_constructor()
2021 const ast_expression *field = subexpressions[0]; in handle_method() local
2030 method = field->primary_expression.identifier; in handle_method()
2035 field->subexpressions[0]->set_is_lhs(true); in handle_method()
2036 op = field->subexpressions[0]->hir(instructions, state); in handle_method()
/third_party/node/deps/icu-small/source/i18n/
H A Dnumber_longnames.cpp1497 void LongNameHandler::simpleFormatsToModifiers(const UnicodeString *simpleFormats, Field field, in simpleFormatsToModifiers() argument
1505 fModifiers[i] = SimpleModifier(compiledFormatter, field, false, {this, SIGNUM_POS_ZERO, plural}); in simpleFormatsToModifiers()
1510 Field field, UErrorCode &status) { in multiSimpleFormatsToModifiers()
1526 fModifiers[i] = SimpleModifier(compoundCompiled, field, false, {this, SIGNUM_POS_ZERO, plural}); in multiSimpleFormatsToModifiers()
1509 multiSimpleFormatsToModifiers(const UnicodeString *leadFormats, UnicodeString trailFormat, Field field, UErrorCode &status) multiSimpleFormatsToModifiers() argument
H A Dnumber_capi.cpp204 fp.setField(ufpos->field); in unumf_resultNextFieldPosition()
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/
H A Dmod.rs414 .field("ss_len", &self.ss_len) in fmt()
415 .field("ss_family", &self.ss_family) in fmt()
416 .field("__ss_pad1", &self.__ss_pad1) in fmt()
417 .field("__ss_align", &self.__ss_align) in fmt()
418 // FIXME: .field("__ss_pad2", &self.__ss_pad2) in fmt()
1342 // Values for rtprio struct (prio field) and syscall (function argument)
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumber_longnames.cpp1499 void LongNameHandler::simpleFormatsToModifiers(const UnicodeString *simpleFormats, Field field, in simpleFormatsToModifiers() argument
1507 fModifiers[i] = SimpleModifier(compiledFormatter, field, false, {this, SIGNUM_POS_ZERO, plural}); in simpleFormatsToModifiers()
1512 Field field, UErrorCode &status) { in multiSimpleFormatsToModifiers()
1528 fModifiers[i] = SimpleModifier(compoundCompiled, field, false, {this, SIGNUM_POS_ZERO, plural}); in multiSimpleFormatsToModifiers()
1511 multiSimpleFormatsToModifiers(const UnicodeString *leadFormats, UnicodeString trailFormat, Field field, UErrorCode &status) multiSimpleFormatsToModifiers() argument
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_read_image.cpp834 for (uint32 field = 0; true; field++) in MapRow()
837 uint32 fieldRows = (rows - field + fFactor - 1) / fFactor; in MapRow()
842 return fieldRow * fFactor + field + top; in MapRow()
/third_party/protobuf/src/google/protobuf/
H A Dextension_set.h182 // to look up extensions for parsed field numbers. Note that dynamic parsing
455 // Write all extension fields with field numbers in the range
590 // for this extension. This field is only valid when type == TYPE_MESSAGE
627 // deterministic serialization to order fields by field number.
708 // Note to support packed repeated field compatibility, it also fills whether
716 // Note to support packed repeated field compatibility, it also fills whether
726 // ParseField() after field number and was_packed_on_wire is extracted from
727 // the wire tag and ExtensionInfo is found by the field number.
760 bool FindExtension(int wire_type, uint32 field, in FindExtension() argument
765 return FindExtensionInfoFromFieldNumber(wire_type, field, in FindExtension()
[all...]
/third_party/mesa3d/src/compiler/
H A Dglsl_types.cpp1325 * type definitions, and field names to be considered the same type." in record_compare()
2713 * - overrides any struct field offsets but get_explicit_std430_type() tries to
2766 * field in it." in get_explicit_type_for_size_align()
3344 struct glsl_struct_field &field = this->fields.structure[i]; in cl_alignment() local
3345 res = MAX2(res, field.type->cl_alignment()); in cl_alignment()
3364 struct glsl_struct_field &field = this->fields.structure[i]; in cl_size() local
3367 size = align(size, field.type->cl_alignment()); in cl_size()
3368 size += field.type->cl_size(); in cl_size()
/third_party/cmsis/CMSIS/Core/Include/
H A Dcore_cm85.h3520 \defgroup CMSIS_core_bitfield Core register bit field macros
3521 \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk).
3526 \brief Mask and shift a bit field value for use in a register bit range.
3527 \param[in] field Name of the register bit field.
3528 \param[in] value Value of the bit field. This parameter is interpreted as an uint32_t type.
3531 #define _VAL2FLD(field, value) (((uint32_t)(value) << field ## _Pos) & field ## _Msk)
3535 \param[in] field Nam
[all...]
H A Dcore_cm55.h3496 \defgroup CMSIS_core_bitfield Core register bit field macros
3497 \brief Macros for use with bit field definitions (xxx_Pos, xxx_Msk).
3502 \brief Mask and shift a bit field value for use in a register bit range.
3503 \param[in] field Name of the register bit field.
3504 \param[in] value Value of the bit field. This parameter is interpreted as an uint32_t type.
3507 #define _VAL2FLD(field, value) (((uint32_t)(value) << field ## _Pos) & field ## _Msk)
3511 \param[in] field Nam
[all...]
/third_party/mesa3d/src/amd/common/
H A Dac_surface.c78 #define AMDGPU_TILING_SET(field, value) \
79 (((__u64)(value) & AMDGPU_TILING_##field##_MASK) << AMDGPU_TILING_##field##_SHIFT)
80 #define AMDGPU_TILING_GET(value, field) \
81 (((__u64)(value) >> AMDGPU_TILING_##field##_SHIFT) & AMDGPU_TILING_##field##_MASK)
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dv_pipeline.c2029 * to add a field to flag compute keys because this key is not used alone in pipeline_populate_compute_key()
3427 #define WRITE_STR(field, ...) ({ \
3428 memset(field, 0, sizeof(field)); \
3429 UNUSED int _i = snprintf(field, sizeof(field), __VA_ARGS__); \
3430 assert(_i > 0 && _i < sizeof(field)); \
/third_party/mesa3d/src/intel/vulkan/
H A Danv_pipeline.c288 * the case for 8x, 4x, and 2x. The key->msaa_16 bit-field controls which in populate_sampler_prog_key()
2986 #define WRITE_STR(field, ...) ({ \
2987 memset(field, 0, sizeof(field)); \
2988 UNUSED int i = snprintf(field, sizeof(field), __VA_ARGS__); \
2989 assert(i > 0 && i < sizeof(field)); \
/third_party/typescript/tests/baselines/reference/
H A Dparserharness.js260 export function emitLog(field: string, ...params: any[]) {
262 if (typeof loggers[i][field] === 'function') {
263 loggers[i][field].apply(loggers[i], params);
2303 function emitLog(field) {
2309 if (typeof loggers[i][field] === 'function') {
2310 loggers[i][field].apply(loggers[i], params);
/third_party/glslang/glslang/HLSL/
H A DhlslParseHelper.cpp924 // Handle seeing a base.field dereference in the grammar, where 'field' is a
927 TIntermTyped* HlslParseContext::handleDotDereference(const TSourceLoc& loc, TIntermTyped* base, const TString& field) in handleDotDereference() argument
932 error(loc, "cannot apply to an array:", ".", field.c_str()); in handleDotDereference()
941 if (sampler.isTexture() && field == "mips") { in handleDotDereference()
946 if (field == "mips") in handleDotDereference()
950 error(loc, "unexpected operator on texture type:", field.c_str(), in handleDotDereference()
955 parseSwizzleSelector(loc, field, base->getVectorSize(), selectors); in handleDotDereference()
991 if (! parseMatrixSwizzleSelector(loc, field, base->getMatrixCols(), base->getMatrixRows(), selectors)) in handleDotDereference()
1036 if ((*fields)[member].type->getFieldName() == field) { in handleDotDereference()
1065 isBuiltInMethod(const TSourceLoc&, TIntermTyped* base, const TString& field) isBuiltInMethod() argument
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dh264dsp_init.c88 int mask_mv0, int mask_mv1, int field);
/third_party/node/deps/npm/test/lib/commands/
H A Dview.js389 t.test('specific field names', async t => {
408 t.test('nested field with brackets', async t => {
423 t.test('unknown nested field ', async t => {
428 t.test('array field - 1 element', async t => {
433 t.test('array field - 2 elements', async t => {
468 /Invalid package.json, no "name" field/
536 t.test('all workspaces single field', async t => {
545 t.test('all workspaces nonexistent field', async t => {
554 t.test('all workspaces nonexistent field --json', async t => {
563 t.test('all workspaces single field
[all...]
/third_party/icu/icu4c/source/test/perf/collationperf/
H A DCollPerf.pl203 (Unicode/ISO 10646 code point). Generally this is the important field for sort
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DBuildSPIRV.h422 ImmutableString hashFieldName(const TField *field);
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DParseHelper.h222 bool structNestingErrorCheck(const TSourceLoc &line, const TField &field);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DTGLexer.cpp350 .Case("field", tgtok::Field) in LexIdentifier()
/third_party/vixl/src/aarch64/
H A Ddisasm-aarch64.h284 const char* field);
/third_party/protobuf/src/google/protobuf/compiler/
H A Dmock_code_generator.cc211 file->message_type(i)->field(0)->CopyTo(&field_descriptor_proto); in Generate()
/third_party/selinux/libselinux/src/
H A DMakefile86 -Wno-missing-field-initializers -Wno-sign-compare \
/third_party/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h635 // field. in ExplainMatchFailuresTo()
676 // value_tuple have different number of fields or incompatible field
2046 // Implements the Field() matcher for matching a field (i.e. member
2051 FieldMatcher(FieldType Class::*field, in FieldMatcher()
2053 : field_(field), matcher_(matcher), whose_field_("whose given field ") {} in FieldMatcher()
2055 FieldMatcher(const std::string& field_name, FieldType Class::*field, in FieldMatcher()
2057 : field_(field), in FieldMatcher()
2059 whose_field_("whose field `" + field_name + "` ") {} in FieldMatcher()
2093 // Since *p has a field, i in MatchAndExplainImpl()
[all...]

Completed in 85 milliseconds

1...<<6162636465666768697071