Home
last modified time | relevance | path

Searched refs:values (Results 151 - 175 of 2157) sorted by relevance

12345678910>>...87

/third_party/glfw/src/
H A Dwin32_monitor.c500 WORD values[3][256]; in _glfwGetGammaRampWin32() local
503 GetDeviceGammaRamp(dc, values); in _glfwGetGammaRampWin32()
508 memcpy(ramp->red, values[0], sizeof(values[0])); in _glfwGetGammaRampWin32()
509 memcpy(ramp->green, values[1], sizeof(values[1])); in _glfwGetGammaRampWin32()
510 memcpy(ramp->blue, values[2], sizeof(values[2])); in _glfwGetGammaRampWin32()
518 WORD values[3][256]; in _glfwSetGammaRampWin32() local
527 memcpy(values[ in _glfwSetGammaRampWin32()
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
H A DResultSpec.java72 // Splitter for any values (either in CLDR data or results specifications). The only time
73 // values are split differently is when quoting exists in the "values" instruction.
83 // Declared instructions with which to generate result values (see Instruction).
87 // This mechanism is used when an xpath attribute is a space separated list of values and
197 // Create an array of output values according to the CLDR value (if present) and the
198 // "values" instruction in the result specification (if present). Any functions present in
199 // the "values" instruction are invoked here.
203 // No "values" instruction, so just use the _unsplit_ CLDR value. To split a CLDR in getValues()
204 // value use "values in getValues()
399 private final ImmutableList<String> values; global() field in ResultSpec.AbstractResult
408 AbstractResult(RbPath key, Iterable<String> values, Optional<CldrPath> path) AbstractResult() argument
471 MatchedResult(RbPath key, Iterable<String> values, CldrPath path) MatchedResult() argument
491 FallbackResult(RbPath rbPath, Iterable<String> values) FallbackResult() argument
[all...]
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-literal-storage.c55 if (symbol_list_p->values[i] != JMEM_CP_NULL) in ecma_free_symbol_list()
58 symbol_list_p->values[i]); in ecma_free_symbol_list()
84 if (string_list_p->values[i] != JMEM_CP_NULL) in ecma_free_string_list()
87 string_list_p->values[i]); in ecma_free_string_list()
114 if (number_list_p->values[i] != JMEM_CP_NULL) in ecma_free_number_list()
116 ecma_number_t *num_p = JMEM_CP_GET_NON_NULL_POINTER (ecma_number_t, number_list_p->values[i]); in ecma_free_number_list()
174 if (string_list_p->values[i] == JMEM_CP_NULL) in ecma_find_or_create_literal_string()
178 empty_cpointer_p = string_list_p->values + i; in ecma_find_or_create_literal_string()
188 string_list_p->values[i]); in ecma_find_or_create_literal_string()
219 new_item_p->values[ in ecma_find_or_create_literal_string()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DcheckInfiniteExpansionTermination.js15 var values: IObservable<Foo>; variable
17 values = values2;
23 var values; variable
25 values = values2;
H A DcheckInfiniteExpansionTermination2.js14 var values: ISubject<any>[] = [];
16 combineLatest<T>(values);
24 var values = [];
26 combineLatest(values);
H A DnewLexicalEnvironmentForConvertedLoop.js7 for (const [value, i] of baz(set.values)) {
11 set.values.push(...[]);
24 (_c = set.values).push.apply(_c, []);
26 for (var _i = 0, _a = baz(set.values); _i < _a.length; _i++) {
/third_party/node/deps/npm/node_modules/gauge/lib/
H A Dtemplate-item.js17 function TemplateItem (values, outputLength) {
32 if (typeof values === 'string') {
33 this.value = values
35 for (var prop in values) {
36 this[prop] = values[prop]
/third_party/ffmpeg/libswscale/arm/
H A Dhscale.S41 vld1.16 {q2}, [r4]! @ load 8x16-bit filter values
42 vld1.16 {q3}, [r10]! @ load 8x16-bit filter values
43 vmovl.u8 q0, d0 @ unpack src values to 16-bit
44 vmovl.u8 q1, d2 @ unpack src values to 16-bit
49 vpadd.s32 d16, d16, d17 @ horizontal pair adding of the 8x32-bit multiplied values into 4x32-bit (part 1)
50 vpadd.s32 d17, d18, d19 @ horizontal pair adding of the 8x32-bit multiplied values into 4x32-bit (part 2)
51 vpadd.s32 d20, d20, d21 @ horizontal pair adding of the 8x32-bit multiplied values into 4x32-bit (part 1)
52 vpadd.s32 d21, d22, d23 @ horizontal pair adding of the 8x32-bit multiplied values into 4x32-bit (part 2)
63 vqshrn.s32 d8, q4, #7 @ shift and clip the 2x16-bit final values
/third_party/node/lib/internal/util/parse_args/
H A Dparse_args.js116 * Store the option value in `values`.
120 * @param {object} values - option values returned in `values` by parseArgs
122 function storeOption(longOption, optionValue, options, values) {
132 // values[longOption] starts out not present,
134 // subsequent values are pushed to existing array.
135 // (note: values has null prototype, so simpler usage)
136 if (values[longOption]) {
137 ArrayPrototypePush(values[longOptio
[all...]
/third_party/node/deps/v8/tools/
H A Dperf-compare.py32 def Mean(values):
33 return float(sum(values)) / len(values)
36 def Variance(values, average):
37 return map(lambda x: (x - average) ** 2, values)
40 def StandardDeviation(values, average):
41 return math.sqrt(Statistics.Mean(Statistics.Variance(values, average)))
148 values = map(float, trace['results'])
149 count = len(values)
150 mean = Statistics.Mean(values)
[all...]
/third_party/node/deps/npm/node_modules/@pkgjs/parseargs/
H A Dindex.js117 * Store the option value in `values`.
122 * @param {object} values - option values returned in `values` by parseArgs
124 function storeOption(longOption, optionValue, options, values) {
134 // values[longOption] starts out not present,
136 // subsequent values are pushed to existing array.
137 // (note: values has null prototype, so simpler usage)
138 if (values[longOption]) {
139 ArrayPrototypePush(values[longOptio
[all...]
/third_party/vk-gl-cts/executor/tools/
H A DxeExtractValues.cpp21 * \brief Extract values by name from logs.
63 vector<Value> values; member
158 tagResult.values.resize(tagNames.size()); in testCaseResultComplete()
184 tagResult.values[valNdx] = findValueByTag(fullResult.resultItems, tagNames[valNdx]); in testCaseResultComplete()
223 BatchResultValues values(cmdLine.tagNames); in printTaggedValues()
225 readLogFile(values, cmdLine.filename.c_str()); in printTaggedValues()
233 for (vector<string>::const_iterator tagName = values.getTagNames().begin(); tagName != values.getTagNames().end(); ++tagName) in printTaggedValues()
239 for (int resultNdx = 0; resultNdx < (int)values.size(); resultNdx++) in printTaggedValues()
241 const CaseValues& result = values[resultNd in printTaggedValues()
[all...]
/third_party/vk-gl-cts/modules/glshared/
H A DglsFragmentOpUtil.cpp39 inline T triQuadInterpolate (const T values[4], float xFactor, float yFactor) in triQuadInterpolate() argument
42 return values[0] + (values[2]-values[0])*xFactor + (values[1]-values[0])*yFactor; in triQuadInterpolate()
44 return values[3] + (values[1]-values[3])*(1.0f-xFactor) + (values[ in triQuadInterpolate()
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-layout-gpos-table.hh113 const Value *values, in apply_value()
123 if (format & xPlacement) glyph_pos.x_offset += font->em_scale_x (get_short (values++, &ret)); in apply_value()
124 if (format & yPlacement) glyph_pos.y_offset += font->em_scale_y (get_short (values++, &ret)); in apply_value()
126 if (likely (horizontal)) glyph_pos.x_advance += font->em_scale_x (get_short (values, &ret)); in apply_value()
127 values++; in apply_value()
129 /* y_advance values grow downward but font-space grows upward, hence negation */ in apply_value()
131 if (unlikely (!horizontal)) glyph_pos.y_advance -= font->em_scale_y (get_short (values, &ret)); in apply_value()
132 values++; in apply_value()
146 if (use_x_device) glyph_pos.x_offset += (base + get_device (values, &ret)).get_x_delta (font, store); in apply_value()
147 values in apply_value()
862 ValueRecord values; /* Defines positioning global() member
988 ValueRecord values; /* Array of ValueRecords--positioning global() member
1150 ValueRecord values; /* Positioning data for the first glyph global() member
1690 ValueRecord values; /* Matrix of value pairs: global() member
[all...]
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Dengine_vulkan.cc485 std::vector<Value> values(8); in DoDrawRect()
487 values[0].SetDoubleValue(static_cast<double>(x)); in DoDrawRect()
488 values[1].SetDoubleValue(static_cast<double>(y + height)); in DoDrawRect()
490 values[2].SetDoubleValue(static_cast<double>(x)); in DoDrawRect()
491 values[3].SetDoubleValue(static_cast<double>(y)); in DoDrawRect()
493 values[4].SetDoubleValue(static_cast<double>(x + width)); in DoDrawRect()
494 values[5].SetDoubleValue(static_cast<double>(y + height)); in DoDrawRect()
496 values[6].SetDoubleValue(static_cast<double>(x + width)); in DoDrawRect()
497 values[7].SetDoubleValue(static_cast<double>(y)); in DoDrawRect()
509 buf->SetData(std::move(values)); in DoDrawRect()
[all...]
/third_party/cups-filters/cupsfilters/
H A Drgb.c317 float values[7]; /* Color sample values */ in cupsRGBLoad() local
377 else if (sscanf(attr->value, "%f%f%f%f%f%f%f", values + 0, in cupsRGBLoad()
378 values + 1, values + 2, values + 3, values + 4, values + 5, in cupsRGBLoad()
379 values + 6) != (3 + num_channels)) in cupsRGBLoad()
386 samples[i].rgb[0] = (int)(255.0 * values[ in cupsRGBLoad()
[all...]
/third_party/nghttp2/src/
H A Dshrpx_mruby_module_response.cc113 mrb_value key, values; in response_mod_header() local
114 mrb_get_args(mrb, "So", &key, &values); in response_mod_header()
148 if (mrb_array_p(values)) { in response_mod_header()
149 auto n = RARRAY_LEN(values); in response_mod_header()
151 auto value = mrb_ary_ref(mrb, values, i); in response_mod_header()
163 } else if (mrb_string_p(values)) { in response_mod_header()
167 StringRef{RSTRING_PTR(values), in response_mod_header()
168 static_cast<size_t>(RSTRING_LEN(values))}), in response_mod_header()
310 auto values = mrb_hash_get(mrb, hash, key); in response_send_info() local
324 if (mrb_array_p(values)) { in response_send_info()
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-iterator-gen.cc136 GrowableFixedArray values(state()); in IterableToList()
137 FillFixedArrayFromIterable(context, iterable, iterator_fn, &values); in IterableToList()
138 return values.ToJSArray(context); in IterableToList()
143 GrowableFixedArray values(state()); in IterableToFixedArray()
144 FillFixedArrayFromIterable(context, iterable, iterator_fn, &values); in IterableToFixedArray()
145 TNode<FixedArray> new_array = values.ToFixedArray(); in IterableToFixedArray()
151 GrowableFixedArray* values) { in FillFixedArrayFromIterable()
155 // 2. Let values be a new empty List. in FillFixedArrayFromIterable()
160 Label loop_start(this, {values->var_array(), values in FillFixedArrayFromIterable()
149 FillFixedArrayFromIterable( TNode<Context> context, TNode<Object> iterable, TNode<Object> iterator_fn, GrowableFixedArray* values) FillFixedArrayFromIterable() argument
[all...]
/third_party/protobuf/php/tests/
H A DMapFieldTest.php452 $values = [true => true]; variable
453 array_walk($values, function (&$value) {});
455 $m->setMapBoolBool($values);
458 $values = [1 => 1]; variable
459 array_walk($values, function (&$value) {});
461 $m->setMapInt32Int32($values);
464 $values = [1 => 1.0]; variable
465 array_walk($values, function (&$value) {});
467 $m->setMapInt32Double($values);
470 $values variable
476 $values = [1 => new Sub()]; global() variable
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
H A Dcompare_test.cc34 const weak_equality values[] = {weak_equality::equivalent, in TEST() local
36 for (const auto& lhs : values) { in TEST()
37 for (const auto& rhs : values) { in TEST()
54 const strong_equality values[] = {strong_equality::equal, in TEST() local
56 for (const auto& lhs : values) { in TEST()
57 for (const auto& rhs : values) { in TEST()
89 const partial_ordering values[] = { in TEST() local
92 for (const auto& lhs : values) { in TEST()
93 for (const auto& rhs : values) { in TEST()
112 const weak_ordering values[] in TEST() local
136 const strong_ordering values[] = { TEST() local
[all...]
/third_party/python/Lib/test/
H A Dtest_dictviews.py16 vt = type({}.values())
71 values = d.values()
72 self.assertEqual(set(values), {10, "ABC"})
73 self.assertEqual(len(values), 2)
86 r = repr(d.values())
251 d[42] = d.values()
265 d = {42: d.values()}
271 self.assertRaises(TypeError, copy.copy, d.values())
290 self.assertIn(v1, d.values())
[all...]
/third_party/protobuf/objectivec/
H A DGPBDictionary.h35 // Note on naming: for the classes holding numeric values, a more natural
54 * values. This performs better than boxing into NSNumbers in NSDictionaries.
64 * Initializes this dictionary, copying the given values and keys.
66 * @param values The values to be placed in this dictionary.
67 * @param keys The keys under which to store the values.
70 * @return A newly initialized dictionary with a copy of the values and keys.
72 - (instancetype)initWithUInt32s:(const uint32_t [__nullable])values
105 * Enumerates the keys and values on this dictionary with the given block.
116 * Adds the keys and values fro
[all...]
/third_party/libinput/src/
H A Dutil-matrix.h53 matrix_from_farray6(struct matrix *m, const float values[6]) in matrix_from_farray6() argument
56 m->val[0][0] = values[0]; in matrix_from_farray6()
57 m->val[0][1] = values[1]; in matrix_from_farray6()
58 m->val[0][2] = values[2]; in matrix_from_farray6()
59 m->val[1][0] = values[3]; in matrix_from_farray6()
60 m->val[1][1] = values[4]; in matrix_from_farray6()
61 m->val[1][2] = values[5]; in matrix_from_farray6()
/third_party/musl/src/conf/
H A Dfpathconf.c7 static const short values[] = { in fpathconf() local
30 if (name >= sizeof(values)/sizeof(values[0])) { in fpathconf()
34 return values[name]; in fpathconf()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
H A DGsubLookupType.java24 if (typeNum <= 0 || typeNum > values.length) { in forTypeNum()
28 return values[typeNum - 1]; in forTypeNum()
31 private static final GsubLookupType[] values = values(); field in GsubLookupType

Completed in 14 milliseconds

12345678910>>...87