Home
last modified time | relevance | path

Searched full:difference (Results 1 – 25 of 1859) sorted by relevance

12345678910>>...75

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/
H A Ddifference.hpp32 namespace detail { namespace difference namespace
36 \brief_calc2{difference} \brief_strategy
37 \ingroup difference
38 \details \details_calc2{difference_insert, spatial set theoretic difference}
39 \brief_strategy. \details_inserter{difference}
47 \param out \param_out{difference}
48 \param strategy \param_strategy{difference}
83 \brief_calc2{difference}
84 \ingroup difference
85 \details \details_calc2{difference_insert, spatial set theoretic difference}.
[all …]
H A Dsym_difference.hpp216 \brief \brief_calc2{symmetric difference} \brief_strategy
218 \details \details_calc2{symmetric difference, spatial set theoretic symmetric difference (XOR)}
226 \param out \param_out{difference}
227 \param strategy \param_strategy{difference}
259 \brief \brief_calc2{symmetric difference}
261 \details \details_calc2{symmetric difference, spatial set theoretic symmetric difference (XOR)}
268 \param out \param_out{difference}
511 \brief \brief_calc2{symmetric difference}
513 \details \details_calc2{symmetric difference, spatial set theoretic symmetric difference (XOR)}.
548 \brief \brief_calc2{symmetric difference}
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/detail/
H A Diterators.hpp44 template <class T, class Difference = std::ptrdiff_t>
47 <std::random_access_iterator_tag, T, Difference, const T*, const T &>
49 typedef constant_iterator<T, Difference> this_type;
52 explicit constant_iterator(const T &ref, Difference range_size) in constant_iterator()
97 friend Difference operator- (const constant_iterator& i, const constant_iterator& i2) in operator -()
101 constant_iterator& operator+=(Difference off) in operator +=()
104 constant_iterator operator+(Difference off) const in operator +()
111 friend constant_iterator operator+(Difference off, const constant_iterator& right) in operator +()
114 constant_iterator& operator-=(Difference off) in operator -=()
117 constant_iterator operator-(Difference off) const in operator -()
[all …]
H A Dconstruct_in_place.hpp43 template <class T, class Difference>
52 template <class T, class EmplaceFunctor, class Difference>
74 template <class DstIt, class Difference>
84 template <class T, class EmplaceFunctor, class Difference>
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/pmu/
H A Dcount_instructions.c32 s64 difference, expected; in do_count_loop() local
46 difference = events[0].result.value - expected; in do_count_loop()
47 percentage = (double)difference / events[0].result.value * 100; in do_count_loop()
56 printf("Delta %lld, %f%%\n", difference, percentage); in do_count_loop()
62 if (difference < 0) in do_count_loop()
63 difference = -difference; in do_count_loop()
65 /* Tolerate a difference below 0.0001 % */ in do_count_loop()
66 difference *= 10000 * 100; in do_count_loop()
67 if (difference / events[0].result.value) in do_count_loop()
H A Dcount_stcx_fail.c32 s64 difference, expected; in do_count_loop() local
48 difference = events[0].result.value - expected; in do_count_loop()
49 percentage = (double)difference / events[0].result.value * 100; in do_count_loop()
60 printf("Delta %lld, %f%%\n", difference, percentage); in do_count_loop()
67 if (difference < 0) in do_count_loop()
68 difference = -difference; in do_count_loop()
70 /* Tolerate a difference below 0.0001 % */ in do_count_loop()
71 difference *= 10000 * 100; in do_count_loop()
72 if (difference / events[0].result.value) in do_count_loop()
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/pmu/ebb/
H A Dinstruction_count_test.c28 int64_t difference, expected; in do_count_loop() local
47 difference = event->result.value - expected; in do_count_loop()
48 percentage = (double)difference / event->result.value * 100; in do_count_loop()
54 printf("Delta %ld, %f%%\n", difference, percentage); in do_count_loop()
58 if (difference < 0) in do_count_loop()
59 difference = -difference; in do_count_loop()
61 /* Tolerate a difference of up to 0.0001 % */ in do_count_loop()
62 difference *= 10000 * 100; in do_count_loop()
63 if (difference / event->result.value) in do_count_loop()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/operator/
H A Ddifference.hpp36 struct difference : binary_parser<difference<Left, Right> > struct
49 difference(Left const& left_, Right const& right_) in difference() function
58 // Unlike classic Spirit, with this version of difference, the rule in parse()
80 return info("difference", in what()
93 : make_binary_composite<Elements, difference>
101 struct has_semantic_action<qi::difference<Left, Right> >
107 struct handles_container<qi::difference<Left, Right>, Attribute, Context
/OK3568_Linux_fs/kernel/arch/arc/lib/
H A Dstrcmp.S31 xor r0,r2,r3 ; mask for difference
33 bic_s r0,r0,r1 ; mask for least significant difference bit
35 xor r0,r5,r1 ; mask for least significant difference byte
47 xor r0,r2,r3 ; mask for difference
50 bic_s r0,r0,r1 ; mask for least significant difference bit
52 xor r0,r5,r1 ; mask for least significant difference byte
/OK3568_Linux_fs/u-boot/arch/arc/lib/
H A Dstrcmp.S34 xor %r0, %r2, %r3 /* mask for difference */
36 bic_s %r0, %r0, %r1 /* mask for least significant difference bit */
38 xor %r0, %r5, %r1 /* mask for least significant difference byte */
50 xor %r0, %r2, %r3 /* mask for difference */
53 bic_s %r0, %r0, %r1 /* mask for least significant difference bit */
55 xor %r0, %r5, %r1 /* mask for least significant difference byte */
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iterator/
H A Diterator_facade.hpp111 , class Difference
141 iterator<iterator_category, value_type, Difference, pointer, Reference>
439 , class Difference
623 , class Difference
625 …class iterator_facade_base< Derived, Value, CategoryOrTraversal, Reference, Difference, false, fal…
628 Value, CategoryOrTraversal, Reference, Difference
635 Value, CategoryOrTraversal, Reference, Difference
646 typedef Difference difference_type;
690 , class Difference
692 …class iterator_facade_base< Derived, Value, CategoryOrTraversal, Reference, Difference, true, fals…
[all …]
H A Diterator_adaptor.hpp167 , class Difference
204 Difference, iterator_difference<Base>
240 // Difference - the difference_type of the resulting iterator. If not
249 , class Difference = use_default
253 Derived, Base, Value, Traversal, Reference, Difference
260 Derived, Base, Value, Traversal, Reference, Difference
277 typedef iterator_adaptor<Derived,Base,Value,Traversal,Reference,Difference> iterator_adaptor_;
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Dlm77.rst29 applies to all 3 limits. The relative difference is stored in a single
30 register on the chip, which means that the relative difference between
36 difference staying unchanged. For example, if the old critical limit
42 read-only. Setting temp1_crit_hyst writes the difference between
H A Demc1403.rst63 hysteresis mechanism which applies to all limits. The relative difference
65 difference between the limit and its hysteresis is always the same for
71 difference staying unchanged. For example, if the old critical limit
77 are read-only. Setting temp1_crit_hyst writes the difference between
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr_1.0/
H A Dia_css_tnr_types.h25 * When difference between current frame and previous frame is less than or
28 * When difference between current frame and previous frame is greater
46 If difference between current frame and
52 If difference between current frame and
/OK3568_Linux_fs/kernel/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_blit.c138 * vmw_find_first_diff - find the first difference between dst and src
144 * return: The offset from find start where the first difference was
145 * encountered in bytes. If no difference was found, the function returns
211 * vmw_find_last_diff - find the last difference between dst and src
217 * return: The offset from find start where the last difference was
218 * encountered in bytes, or a negative value if no difference was found.
253 * vmw_adjust_rect - Adjust rectangle coordinates for newly found difference
256 * @diff_offs: The offset from @diff->line_offset where the difference was
284 * This is needed to know the needed granularity of the difference computing
303 * Starting from where first difference was found, find in vmw_diff_memcpy()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/views/detail/boundary_view/
H A Dimplementation.hpp62 typename Difference = typename boost::range_difference
73 polygon_rings_iterator<Polygon, Value, Reference, Difference>,
77 Difference
195 inline Difference distance_to(polygon_rings_iterator in distance_to()
203 return static_cast<Difference>(other.m_index) in distance_to()
204 - static_cast<Difference>(m_index); in distance_to()
207 inline void advance(Difference n) in advance()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/
H A Dpointlike_pointlike.hpp86 // action struct for difference/intersection
134 // difference/intersection of point-point
164 // difference of multipoint-point
167 // difference; for intersection the reversal will
204 // difference/intersection of point-multipoint
241 // difference/intersection of multipoint-multipoint
299 // dispatch struct for pointlike-pointlike difference/intersection
H A Dpointlike_linear.hpp51 // action struct for pointlike-linear difference/intersection
59 // difference/intersection of point-linear
85 // difference/intersection of multipoint-segment
119 // difference/intersection of multipoint-linear
300 // dispatch struct for pointlike-linear difference/intersection computation
/OK3568_Linux_fs/buildroot/utils/
H A Dsize-stats-compare61 for entry in newkeys.difference(oldkeys):
64 for entry in oldkeys.difference(newkeys):
76 # result is a dictionary: name -> (flag, size difference)
77 # list_result is a list of tuples: (name, (flag, size difference))
125 print('Size difference per %s (bytes), threshold = %s' % (keyword, args.threshold))
/OK3568_Linux_fs/kernel/drivers/input/
H A Dff-memless.c160 int difference; in apply_envelope() local
181 difference = abs(value) - envelope_level; in apply_envelope()
183 pr_debug("difference = %d\n", difference); in apply_envelope()
187 difference = difference * time_from_level / time_of_envelope; in apply_envelope()
189 pr_debug("difference = %d\n", difference); in apply_envelope()
192 -(difference + envelope_level) : (difference + envelope_level); in apply_envelope()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/as.html/
H A DK.html69 <a name="Difference-Tables_003a-_002dK"></a>
70 <h3 class="section">2.6 Difference Tables: <samp>-K</samp></h3>
74 <a name="index-difference-tables_002c-warning"></a>
75 <a name="index-warning-for-altered-difference-tables"></a>
H A DXStormy16-Opcodes.html88 <p>computes the difference between the address of labels &rsquo;here&rsquo; and
89 &rsquo;there&rsquo;, takes the lower 16 bits of this difference and adds it to
100 <p>computes the difference between the address of labels &rsquo;here&rsquo; and
101 &rsquo;there&rsquo;, takes the upper 16 bits of this difference, shifts it down 16
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/as.html/
H A DK.html69 <a name="Difference-Tables_003a-_002dK"></a>
70 <h3 class="section">2.6 Difference Tables: <samp>-K</samp></h3>
74 <a name="index-difference-tables_002c-warning"></a>
75 <a name="index-warning-for-altered-difference-tables"></a>
H A DXStormy16-Opcodes.html88 <p>computes the difference between the address of labels &rsquo;here&rsquo; and
89 &rsquo;there&rsquo;, takes the lower 16 bits of this difference and adds it to
100 <p>computes the difference between the address of labels &rsquo;here&rsquo; and
101 &rsquo;there&rsquo;, takes the upper 16 bits of this difference, shifts it down 16

12345678910>>...75