Home
last modified time | relevance | path

Searched refs:values (Results 401 - 425 of 2155) sorted by relevance

1...<<11121314151617181920>>...87

/third_party/vk-gl-cts/modules/gles2/scripts/
H A Dgen-conversions.py118 values
142 values {}
214 inTypes = [values[0].typeString() for values in inComps]
246 # \todo [petri] Enable large values when epsilon adapts to the values.
285 maxLen = reduce(max, [len(values) for values in comps])
286 comps = [repeatToLength(values, maxLen) for values i
[all...]
/third_party/node/deps/npm/node_modules/@pkgjs/parseargs/examples/
H A Dsimple-hard-coded.js20 values,
23 console.log(values, positionals);
H A Dlimit-long-syntax.js5 // Require the use of `=` for long options and values by blocking
6 // the use of space separated values.
20 const { values, tokens } = parseArgs({ options, tokens: true });
31 console.log(values);
H A Dno-repeated-options.js15 const { values, tokens } = parseArgs({ options, tokens: true });
26 console.log(values);
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fDrawBuffersIndexedTests.cpp767 const float values[] = in shadeFragments() local
781 const Vec4 color (values[(m_drawBufferNdx + 0) % 4], in shadeFragments()
782 values[(m_drawBufferNdx + 1) % 4], in shadeFragments()
783 values[(m_drawBufferNdx + 2) % 4], in shadeFragments()
784 values[(m_drawBufferNdx + 3) % 4]); in shadeFragments()
792 const UVec4 color ((deUint32)(values[(m_drawBufferNdx + 0) % 4]), in shadeFragments()
793 (deUint32)(values[(m_drawBufferNdx + 1) % 4]), in shadeFragments()
794 (deUint32)(values[(m_drawBufferNdx + 2) % 4]), in shadeFragments()
795 (deUint32)(values[(m_drawBufferNdx + 3) % 4])); in shadeFragments()
803 const IVec4 color ((deInt32)(values[(m_drawBufferNd in shadeFragments()
952 const char* const values[] = genFragmentSource() local
970 << ", " << values[(drawBufferNdx + 3) % 4] << ");\\n"; genFragmentSource() local
977 << "), uint(" << values[(drawBufferNdx + 3) % 4] << "));\\n"; genFragmentSource() local
984 << "), int(" << values[(drawBufferNdx + 3) % 4] << "));\\n"; genFragmentSource() local
[all...]
/third_party/typescript/tests/baselines/reference/
H A DuseObjectValuesAndEntries3.js4 for (var x of Object.values(o)) {
12 for (var x of Object.values(o)) {
H A DuseObjectValuesAndEntries4.js4 for (var x of Object.values(o)) {
12 for (var x of Object.values(o)) {
H A DuseObjectValuesAndEntries2.js4 for (var x of Object.values(o)) {
12 for (var _i = 0, _a = Object.values(o); _i < _a.length; _i++) {
/third_party/python/Objects/
H A Dlistobject.c33 * responsibility to overwrite them with sane values.
1087 * an array of corresponding values. In other words, keys[i]
1088 * corresponds with values[i]. If values == NULL, then the keys are
1089 * also the values.
1092 * values are always moved in sync.
1097 PyObject **values; member
1104 if (s1->values != NULL) in sortslice_copy()
1105 s1->values[i] = s2->values[ in sortslice_copy()
[all...]
/third_party/ffmpeg/libavcodec/arm/
H A Ddca.h33 int32_t *values) in decode_blockcodes()
73 "r"(ff_inverse[levels]), "r"(values) in decode_blockcodes()
32 decode_blockcodes(int code1, int code2, int levels, int32_t *values) decode_blockcodes() argument
/third_party/vk-gl-cts/external/amber/src/samples/
H A Dpng.h27 /// in row-major order in |values| with format B8G8R8A8 into PNG format,
31 const std::vector<amber::Value>& values,
36 /// byte per data element format into |values|.
40 std::vector<amber::Value>* values);
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Ddec_sse41.c27 const __m128i values = _mm_shuffle_epi8(in, kShuffle3); in HE16_SSE41() local
28 _mm_storeu_si128((__m128i*)dst, values); in HE16_SSE41()
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djcphuff.c84 int Al, JCOEF *values, size_t *zerobits);
158 JCOEF *values, size_t *zerobits);
278 /* Compute derived values for Huffman table */ in start_pass_phuff()
511 /* DC differences are figured on the point-transformed values. */ in METHODDEF()
530 /* Check for out-of-range coefficient values. in METHODDEF()
585 values[k] = temp; \
586 values[k + DCTSIZE2] = temp2; \
594 int Al, JCOEF *values, size_t *bits) in encode_mcu_AC_first_prepare()
614 values += 32; in encode_mcu_AC_first_prepare()
643 /* Check for out-of-range coefficient values */ \
592 encode_mcu_AC_first_prepare(const JCOEF *block, const int *jpeg_natural_order_start, int Sl, int Al, JCOEF *values, size_t *bits) encode_mcu_AC_first_prepare() argument
668 JCOEF *values; METHODDEF() local
[all...]
/third_party/skia/tools/skpbench/
H A Dskpbench.cpp459 std::vector<double> values; in print_result() local
460 values.reserve(samples.size()); in print_result()
464 values.push_back(sample.value()); in print_result()
466 std::sort(values.begin(), values.end()); in print_result()
470 for (double value : values) { in print_result()
474 variance /= values.size(); in print_result()
478 printf(resultFormat, accumValue, values[values.size() / 2], values in print_result()
[all...]
/third_party/python/Python/
H A Dast_unparse.c125 asdl_expr_seq *values; in append_ast_boolop() local
131 values = e->v.BoolOp.values; in append_ast_boolop()
132 value_count = asdl_seq_LEN(values); in append_ast_boolop()
136 APPEND_EXPR((expr_ty)asdl_seq_GET(values, i), pr + 1); in append_ast_boolop()
315 value_count = asdl_seq_LEN(e->v.Dict.values); in append_ast_dict()
323 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Dict.values, i), PR_TEST); in append_ast_dict()
327 APPEND_EXPR((expr_ty)asdl_seq_GET(e->v.Dict.values, i), PR_EXPR); in append_ast_dict()
620 build_fstring_body(asdl_expr_seq *values, bool is_format_spec) in build_fstring_body() argument
628 value_count = asdl_seq_LEN(values); in build_fstring_body()
[all...]
/third_party/protobuf/python/google/protobuf/
H A Ddescriptor_pool.py187 error_msg += ('\nNote: enum values appear as '
266 # Top enum values need to be indexed.
277 for enum_value in enum_desc.values:
373 for extension in file_desc.extensions_by_name.values():
485 # Try fields, enum values and nested extensions inside a message.
641 return list(self._extensions_by_number[message_descriptor].values())
764 dependency.message_types_by_name.values()))
766 for enum in dependency.enum_types_by_name.values())
816 for extension in file_desc.extensions_by_name.values():
818 for message_type in file_desc.message_types_by_name.values()
[all...]
/third_party/skia/gn/
H A Dgn_to_cmake.py69 def SetVariableList(out, variable_name, values):
71 if not values:
73 if len(values) == 1:
74 return SetVariable(out, variable_name, values[0])
78 out.write('"\n "'.join([CMakeStringEscape(value) for value in values]))
82 def SetFilesProperty(output, variable, property_name, values, sep):
89 for value in values:
95 def SetCurrentTargetProperty(out, property_name, values, sep=''):
100 for value in values:
267 for sources_type_name in sources.values()
[all...]
/third_party/mesa3d/src/util/
H A Dxmlconfig.c243 unreachable("shouldn't be parsing values in section declarations"); in parseValue()
325 info->values = calloc((size_t)1 << info->tableSize, sizeof(driOptionValue)); in driParseOptionInfo()
326 if (info->info == NULL || info->values == NULL) { in driParseOptionInfo()
348 driOptionValue *optval = &info->values[i]; in driParseOptionInfo()
378 /* Built-in default values should always be valid. */ in driParseOptionInfo()
823 } else if (!parseValue(&cache->values[opt], cache->info[opt].type, value)) in parseOptConfAttr()
1150 cache->values = malloc(((size_t)1 << info->tableSize) * sizeof(driOptionValue)); in initOptionCache()
1151 if (cache->values == NULL) { in initOptionCache()
1155 memcpy(cache->values, info->values, in initOptionCache()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dwasm-inlining.cc429 std::vector<Node*> values; in InlineCall() local
433 values.push_back(control); in InlineCall()
440 values.push_back(graph()->NewNode( in InlineCall()
447 values.push_back(control_output); in InlineCall()
450 handler_count + 1, values.data()); in InlineCall()
482 NodeVector values(zone()); in InlineCall()
490 // Find the correct machine representation for the return values from the in InlineCall()
497 values.push_back(ith_value_output); in InlineCall()
506 ReplaceWithValue(call, values[0], effect_output, control_output); in InlineCall()
509 // replace them with the returned values in InlineCall()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp188 for (const DIEValue &V : values()) in generateAbbrev()
224 for (const auto &V : values()) in findAttribute()
237 for (const auto &V : Values.values()) { in printValues()
256 for (const auto &V : values()) { in print()
290 // Add the byte size of all the DIE attribute values. in computeOffsetsAndAbbrevs()
291 for (const auto &V : values()) in computeOffsetsAndAbbrevs()
705 for (const auto &V : values())
725 for (const auto &V : values())
756 for (const auto &V : values())
776 for (const auto &V : values())
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dcontainers.py107 def values(self): member in Mapping
319 def __setslice__(self, start, stop, values):
322 for value in values:
409 values = self._values
414 values.append(new_element)
475 value_checker: A type_checkers.ValueChecker instance to run on values
550 """Simple, type-checked, dict-like container for with submessage values."""
565 value_checker: A type_checkers.ValueChecker instance to run on values
615 raise ValueError('May not set values directly, call my_map[key].foo = 5')
768 values
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/
H A Dest.c207 * values SET SIZE(1..MAX) OF OBJECT IDENTIFIER }
212 STACK_OF(ASN1_OBJECT) *values;
234 ASN1_SET_OF(Attribute, values, ASN1_OBJECT)
273 STACK_OF(ASN1_OBJECT) *values, in add_csrattrs_ext_req()
279 num = sk_ASN1_OBJECT_num(values); in add_csrattrs_ext_req()
281 ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(values, i); in add_csrattrs_ext_req()
309 if (!attr || !attr->type || !attr->values) in add_csrattrs_attr()
317 add_csrattrs_ext_req(ctx, attr->values, exts); in add_csrattrs_attr()
321 num = sk_ASN1_OBJECT_num(attr->values); in add_csrattrs_attr()
323 ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(attr->values, in add_csrattrs_attr()
272 add_csrattrs_ext_req(struct hs20_osu_client *ctx, STACK_OF(ASN1_OBJECT) *values, STACK_OF(X509_EXTENSION) *exts) add_csrattrs_ext_req() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/
H A Dest.c207 * values SET SIZE(1..MAX) OF OBJECT IDENTIFIER }
212 STACK_OF(ASN1_OBJECT) *values;
234 ASN1_SET_OF(Attribute, values, ASN1_OBJECT)
273 STACK_OF(ASN1_OBJECT) *values, in add_csrattrs_ext_req()
279 num = sk_ASN1_OBJECT_num(values); in add_csrattrs_ext_req()
281 ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(values, i); in add_csrattrs_ext_req()
309 if (!attr || !attr->type || !attr->values) in add_csrattrs_attr()
317 add_csrattrs_ext_req(ctx, attr->values, exts); in add_csrattrs_attr()
321 num = sk_ASN1_OBJECT_num(attr->values); in add_csrattrs_attr()
323 ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(attr->values, in add_csrattrs_attr()
272 add_csrattrs_ext_req(struct hs20_osu_client *ctx, STACK_OF(ASN1_OBJECT) *values, STACK_OF(X509_EXTENSION) *exts) add_csrattrs_ext_req() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvorbis.h42 vorbis_floor1_entry *list, int values);
45 void ff_vorbis_floor1_render_list(vorbis_floor1_entry * list, int values,
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DStaticUnicodeSetsTest.java24 for (Key key : Key.values()) { in testFrozen()
31 for (Key key : Key.values()) { in testNonEmpty()

Completed in 19 milliseconds

1...<<11121314151617181920>>...87