Home
last modified time | relevance | path

Searched full:values (Results 1 – 25 of 8380) sorted by relevance

12345678910>>...336

/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dvalues.c9 #include "values.h"
12 int perf_read_values_init(struct perf_read_values *values) in perf_read_values_init() argument
14 values->threads_max = 16; in perf_read_values_init()
15 values->pid = malloc(values->threads_max * sizeof(*values->pid)); in perf_read_values_init()
16 values->tid = malloc(values->threads_max * sizeof(*values->tid)); in perf_read_values_init()
17 values->value = zalloc(values->threads_max * sizeof(*values->value)); in perf_read_values_init()
18 if (!values->pid || !values->tid || !values->value) { in perf_read_values_init()
22 values->threads = 0; in perf_read_values_init()
24 values->counters_max = 16; in perf_read_values_init()
25 values->counterrawid = malloc(values->counters_max in perf_read_values_init()
[all …]
H A Dcounts.c14 struct xyarray *values; in perf_counts__new() local
16 values = xyarray__new(ncpus, nthreads, sizeof(struct perf_counts_values)); in perf_counts__new()
17 if (!values) { in perf_counts__new()
22 counts->values = values; in perf_counts__new()
24 values = xyarray__new(ncpus, nthreads, sizeof(bool)); in perf_counts__new()
25 if (!values) { in perf_counts__new()
26 xyarray__delete(counts->values); in perf_counts__new()
31 counts->loaded = values; in perf_counts__new()
41 xyarray__delete(counts->values); in perf_counts__delete()
49 xyarray__reset(counts->values); in perf_counts__reset()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/include/
H A Dmmintrin.h76 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
77 the result, and the four 16-bit values from M2 into the upper four 8-bit
78 values of the result, all with signed saturation. */
85 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
86 the result, and the two 32-bit values from M2 into the upper two 16-bit
87 values of the result, all with signed saturation. */
96 signed saturation for values that do not fit exactly into 32-bits. */
103 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
104 the result, and the four 16-bit values from M2 into the upper four 8-bit
105 values of the result, all with unsigned saturation. */
[all …]
/OK3568_Linux_fs/kernel/lib/
H A Dtest_min_heap.c36 int *values = heap->data; in pop_verify_heap() local
40 last = values[0]; in pop_verify_heap()
44 if (last > values[0]) { in pop_verify_heap()
46 values[0]); in pop_verify_heap()
50 if (last < values[0]) { in pop_verify_heap()
52 values[0]); in pop_verify_heap()
56 last = values[0]; in pop_verify_heap()
64 int values[] = { 3, 1, 2, 4, 0x8000000, 0x7FFFFFF, 0, in test_heapify_all() local
67 .data = values, in test_heapify_all()
68 .nr = ARRAY_SIZE(values), in test_heapify_all()
[all …]
H A Dlinear_ranges.c3 * helpers to map values in a linear range to range index
18 * linear_range_values_in_range - return the amount of values in a range
19 * @r: pointer to linear range where values are counted
21 * Compute the amount of values in range pointed by @r. Note, values can
23 * 3 values even though they are all equal.
25 * Return: the amount of values in range pointed by @r
36 * linear_range_values_in_range_array - return the amount of values in ranges
37 * @r: pointer to array of linear ranges where values are counted
40 * Compute the amount of values in ranges pointed by @r. Note, values can
42 * 3 values even though they are all equal.
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dfilter.cpp16 ParseResult convertLegacyFilter(const Convertible& values, Error& error);
17 optional<mbgl::Value> serializeLegacyFilter(const Convertible& values);
130 ParseResult convertLegacyComparisonFilter(const Convertible& values, Error& error, optional<std::st… in convertLegacyComparisonFilter() argument
131 optional<std::string> op = opOverride ? opOverride : toString(arrayMember(values, 0));
132 optional<std::string> property = toString(arrayMember(values, 1));
138 return createExpression("filter-type-" + *op, convertLiteralArray(values, error, 2), error);
140 return createExpression("filter-id-" + *op, convertLiteralArray(values, error, 2), error);
142 return createExpression("filter-" + *op, convertLiteralArray(values, error, 1), error);
146 ParseResult convertLegacyHasFilter(const Convertible& values, Error& error) { in convertLegacyHasFilter() argument
147 optional<std::string> property = toString(arrayMember(values, 1)); in convertLegacyHasFilter()
[all …]
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-class-power10 Valid values: Represented as string
19 Valid values: Represented as string
28 Valid values: Represented as string
37 Valid values: "Battery", "UPS", "Mains", "USB", "Wireless"
60 Valid values: Represented in microamps. Negative values are
61 used for discharging batteries, positive values for charging
77 Valid values: Represented in microamps
100 Valid values: Represented in microamps. Negative values are
101 used for discharging batteries, positive values for charging
120 Valid values: Represented in 1/10 Degrees Celsius
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/detail/
H A Dvariadic_templates_tools.hpp33 template<typename... Values>
80 template<typename... Values>
81 tuple<Values&&...> forward_as_tuple(Values&&... values) in forward_as_tuple() argument
82 { return tuple<Values&&...>(::boost::forward<Values>(values)...); } in forward_as_tuple()
102 template<int I, typename Head, typename... Values>
103 class get_impl<I, tuple<Head, Values...> >
105 typedef typename tuple_element<I-1, tuple<Values...> >::type Element;
106 typedef get_impl<I-1, tuple<Values...> > Next;
111 static type get(tuple<Head, Values...>& t) { return Next::get(t.tail()); } in get()
112 static const_type get(const tuple<Head, Values...>& t) { return Next::get(t.tail()); } in get()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/bridge/synopsys/
H A Ddw-hdmi.h590 /* PRODUCT_ID0 field values */
593 /* PRODUCT_ID1 field values */
598 /* CONFIG0_ID field values */
602 /* CONFIG1_ID field values */
605 /* CONFIG3_ID field values */
609 /* IH_FC_INT2 field values */
614 /* IH_FC_STAT2 field values */
619 /* IH_PHY_STAT0 field values */
627 /* IH_I2CM_STAT0 and IH_MUTE_I2CM_STAT0 field values */
631 /* IH_MUTE_I2CMPHY_STAT0 field values */
[all …]
/OK3568_Linux_fs/u-boot/drivers/video/drm/
H A Ddw_hdmi.h645 /* PRODUCT_ID0 field values */
648 /* PRODUCT_ID1 field values */
653 /* CONFIG0_ID field values */
656 /* CONFIG1_ID field values */
659 /* CONFIG3_ID field values */
663 /* IH_FC_INT2 field values */
668 /* IH_FC_STAT2 field values */
673 /* IH_PHY_STAT0 field values */
681 /* IH_I2CM_STAT0 and IH_MUTE_I2CM_STAT0 field values */
685 /* IH_MUTE_I2CMPHY_STAT0 field values */
[all …]
/OK3568_Linux_fs/kernel/drivers/media/usb/cx231xx/
H A Dcx231xx-dif.h22 /* BEGIN - DIF BPF register values from 30_quant.dat*/
42 /* END - DIF BPF register values from 30_quant.dat*/
46 /* BEGIN - DIF BPF register values from 31_quant.dat*/
66 /* END - DIF BPF register values from 31_quant.dat*/
70 /* BEGIN - DIF BPF register values from 32_quant.dat*/
90 /* END - DIF BPF register values from 32_quant.dat*/
94 /* BEGIN - DIF BPF register values from 33_quant.dat*/
114 /* END - DIF BPF register values from 33_quant.dat*/
118 /* BEGIN - DIF BPF register values from 34_quant.dat*/
138 /* END - DIF BPF register values from 34_quant.dat*/
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/builds/
H A Dtest_core_image_min.py33 distinct_builds = Build.objects.values('id').distinct().count()
40 distinct_path = Build.objects.values(
42 total_builds = Build.objects.values('id').count()
50 build=self.built).values('order').count()
52 build=self.completed_build).values('order').distinct().count()
65 ).values('id', 'order').order_by("order")
82 tasks = Task.objects.filter(outcome=2).values('id', 'sstate_result')
97 Task.OUTCOME_PREBUILT)).values('id',
117 outcome__in=(0, 4)).values('id', 'sstate_result')
132 task_executed=1).values('id', 'script_type')
[all …]
/OK3568_Linux_fs/external/xserver/hw/xnest/
H A DGC.c96 XGCValues values; in xnestChangeGC() local
99 values.function = pGC->alu; in xnestChangeGC()
102 values.plane_mask = pGC->planemask; in xnestChangeGC()
105 values.foreground = xnestPixel(pGC->fgPixel); in xnestChangeGC()
108 values.background = xnestPixel(pGC->bgPixel); in xnestChangeGC()
111 values.line_width = pGC->lineWidth; in xnestChangeGC()
114 values.line_style = pGC->lineStyle; in xnestChangeGC()
117 values.cap_style = pGC->capStyle; in xnestChangeGC()
120 values.join_style = pGC->joinStyle; in xnestChangeGC()
123 values.fill_style = pGC->fillStyle; in xnestChangeGC()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/map_tests/
H A Dhtab_map_batch_ops.c14 void *values, bool is_pcpu) in map_batch_update() argument
25 v = (value *)values; in map_batch_update()
33 ((int *)values)[i] = i + 2; in map_batch_update()
36 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts); in map_batch_update()
41 int *keys, void *values, bool is_pcpu) in map_batch_verify() argument
48 v = (value *)values; in map_batch_verify()
61 CHECK(keys[i] + 1 != ((int *)values)[i], in map_batch_verify()
64 ((int *)values)[i]); in map_batch_verify()
85 void *values; in __test_map_lookup_and_delete_batch() local
106 values = pcpu_values; in __test_map_lookup_and_delete_batch()
[all …]
H A Darray_map_batch_ops.c13 int *values) in map_batch_update() argument
23 values[i] = i + 1; in map_batch_update()
26 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts); in map_batch_update()
31 int *keys, int *values) in map_batch_verify() argument
37 CHECK(keys[i] + 1 != values[i], "key/value checking", in map_batch_verify()
38 "error: i %d key %d value %d\n", i, keys[i], values[i]); in map_batch_verify()
55 int map_fd, *keys, *values, *visited; in test_array_map_batch_ops() local
72 values = malloc(max_entries * sizeof(int)); in test_array_map_batch_ops()
74 CHECK(!keys || !values || !visited, "malloc()", "error:%s\n", in test_array_map_batch_ops()
78 map_batch_update(map_fd, max_entries, keys, values); in test_array_map_batch_ops()
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Ddw_hdmi.h212 /* ih_phy_stat0 field values */
215 /* ih_mute field values */
219 /* tx_invid0 field values */
224 /* tx_instuffing field values */
229 /* vp_pr_cd field values */
235 /* vp_stuff field values */
245 /* vp_conf field values */
259 /* vp_remap field values */
262 /* fc_invidconf field values */
286 /* fc_aviconf0-fc_aviconf3 field values */
[all …]
/OK3568_Linux_fs/kernel/drivers/pcmcia/
H A Dmax1600.c70 DECLARE_BITMAP(values, MAX1600_GPIO_MAX) = { 0, }; in max1600_configure()
75 __assign_bit(MAX1600_GPIO_0VPP, values, 0); in max1600_configure()
76 __assign_bit(MAX1600_GPIO_1VPP, values, 0); in max1600_configure()
78 __assign_bit(MAX1600_GPIO_0VPP, values, 0); in max1600_configure()
79 __assign_bit(MAX1600_GPIO_1VPP, values, 1); in max1600_configure()
81 __assign_bit(MAX1600_GPIO_0VPP, values, 1); in max1600_configure()
82 __assign_bit(MAX1600_GPIO_1VPP, values, 0); in max1600_configure()
95 __assign_bit(MAX1600_GPIO_0VCC, values, 0); in max1600_configure()
96 __assign_bit(MAX1600_GPIO_1VCC, values, 0); in max1600_configure()
98 __assign_bit(MAX1600_GPIO_0VCC, values, 1); in max1600_configure()
[all …]
/OK3568_Linux_fs/kernel/include/acpi/
H A Dacrestyp.h186 /* Values for Width field above */
349 u8 producer_consumer; /* For values, see Producer/Consumer above */
351 u8 shareable; /* For values, see Interrupt Attributes above */
352 u8 wake_capable; /* For values, see Interrupt Attributes above */
354 u8 triggering; /* For values, see Interrupt Attributes above */
355 u8 polarity; /* For values, see Interrupt Attributes above */
365 /* Values for GPIO connection_type field above */
370 /* Values for pin_config field above */
377 /* Values for io_restriction field above */
389 …u8 producer_consumer; /* For values, see Producer/Consumer …
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/
H A Dequal_to.hpp82 \brief The function object comparing Values.
85 The default version handles Values which are Indexables.
89 \tparam IsIndexable If true, Values are compared using boost::geometry::equals() functions.
99 \brief Compare values. If Value is a Geometry geometry::equals() function is used.
103 \return true if values are equal.
112 \brief The function object comparing Values.
114 This specialization compares values of type std::pair<T1, T2>.
115 It compares pairs' first values, then second values.
127 \brief Compare values. If pair<> Value member is a Geometry geometry::equals() function is used.
131 \return true if values are equal.
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dstl_numeric.h74 * @brief Create a range of sequentially increasing values. in _GLIBCXX_VISIBILITY()
121 * @brief Accumulate values in a range. in _GLIBCXX_VISIBILITY()
123 * Accumulates the values in the range [first,last) using operator+(). The in _GLIBCXX_VISIBILITY()
124 * initial value is @a init. The values are processed in order. in _GLIBCXX_VISIBILITY()
128 * @param __init Starting value to add other values to. in _GLIBCXX_VISIBILITY()
146 * @brief Accumulate values in a range with operation. in _GLIBCXX_VISIBILITY()
148 * Accumulates the values in the range `[first,last)` using the function in _GLIBCXX_VISIBILITY()
149 * object `__binary_op`. The initial value is `__init`. The values are in _GLIBCXX_VISIBILITY()
154 * @param __init Starting value to add other values to. in _GLIBCXX_VISIBILITY()
178 * value using operator+(). The values in the ranges are processed in in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dstl_numeric.h74 * @brief Create a range of sequentially increasing values. in _GLIBCXX_VISIBILITY()
121 * @brief Accumulate values in a range. in _GLIBCXX_VISIBILITY()
123 * Accumulates the values in the range [first,last) using operator+(). The in _GLIBCXX_VISIBILITY()
124 * initial value is @a init. The values are processed in order. in _GLIBCXX_VISIBILITY()
128 * @param __init Starting value to add other values to. in _GLIBCXX_VISIBILITY()
146 * @brief Accumulate values in a range with operation. in _GLIBCXX_VISIBILITY()
148 * Accumulates the values in the range `[first,last)` using the function in _GLIBCXX_VISIBILITY()
149 * object `__binary_op`. The initial value is `__init`. The values are in _GLIBCXX_VISIBILITY()
154 * @param __init Starting value to add other values to. in _GLIBCXX_VISIBILITY()
178 * value using operator+(). The values in the ranges are processed in in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dsymbol_program.cpp38 template <class Values, class...Args>
39 Values makeValues(const bool isText, in makeValues()
40 const style::SymbolPropertyValues& values, in makeValues() argument
50 if (values.pitchAlignment == AlignmentType::Map) { in makeValues()
60 const bool pitchWithMap = values.pitchAlignment == style::AlignmentType::Map; in makeValues()
61 const bool rotateWithMap = values.rotationAlignment == style::AlignmentType::Map; in makeValues()
79 return Values { in makeValues()
80 uniforms::u_matrix::Value{ tile.translatedMatrix(values.translate, in makeValues()
81 values.translateAnchor, in makeValues()
85 values.translate, in makeValues()
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/lib/build_perf/
H A Dreport.py57 values = OrderedDict()
63 values['start_time'] = isofmt_to_timestamp(subel.attrib['timestamp'])
64 values['elapsed_time'] = float(subel.text)
72 values['rusage'] = rusage
74 values['iostat'] = OrderedDict([(f, int(subel.attrib[f]))
77 values['buildstats_file'] = subel.text
82 values['size'] = int(elem.find('size').text)
85 data['values'] = values
229 """Base class representing measurement values"""
241 """Class representing time values"""
[all …]
/OK3568_Linux_fs/kernel/drivers/video/fbdev/matrox/
H A Dmatroxfb_misc.c544 minfo->values.pll.system = get_unaligned_le16(bd->pins + 28) ? in parse_pins1()
548 minfo->values.reg.mctlwtst = 0x00030101; in parse_pins1()
556 minfo->values.pll.system = 50000; in default_pins1()
558 minfo->values.reg.mctlwtst = 0x00030101; in default_pins1()
566 minfo->values.reg.mctlwtst = ((bd->pins[51] & 0x01) ? 0x00000001 : 0) | in parse_pins2()
570 minfo->values.pll.system = (bd->pins[43] == 0xFF) ? 50000 : ((bd->pins[43] + 100) * 1000); in parse_pins2()
580 minfo->values.reg.mctlwtst = 0x00030101; in default_pins2()
581 minfo->values.pll.system = 50000; in default_pins2()
590 minfo->values.reg.mctlwtst = get_unaligned_le32(bd->pins + 48) == 0xFFFFFFFF ? in parse_pins3()
593 minfo->values.reg.memrdbk = ((bd->pins[57] << 21) & 0x1E000000) | in parse_pins3()
[all …]
/OK3568_Linux_fs/buildroot/package/collectd/
H A DConfig.in10 the values in a variety of ways, for example in RRD files.
21 Match counter values which are currently zero.
26 Match values using a hash function of the hostname.
31 Match values by their identifier based on regular expressions.
36 Match values with an invalid timestamp.
41 Select values by their data sources' values.
50 The Aggregate plugin allows to aggregate multiple values into
102 Checks values against configured thresholds and creates
103 notifications if values are out of bounds.
263 Executes scripts and reads values back that are printed
[all …]

12345678910>>...336