Home
last modified time | relevance | path

Searched refs:reverse (Results 1 – 25 of 516) sorted by relevance

12345678910>>...21

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/
H A Dreverse.hpp39 namespace detail { namespace reverse namespace
48 std::reverse(boost::begin(range), boost::end(range)); in apply()
82 struct reverse struct
90 struct reverse<Ring, ring_tag> struct
91 : detail::reverse::range_reverse
96 struct reverse<LineString, linestring_tag> struct
97 : detail::reverse::range_reverse
102 struct reverse<Polygon, polygon_tag> struct
103 : detail::reverse::polygon_reverse
108 struct reverse<Geometry, multi_linestring_tag> struct
[all …]
/OK3568_Linux_fs/u-boot/common/eeprom/
H A Deeprom_field.c15 char *delimiter, bool reverse) in __eeprom_field_print_bin() argument
18 int from = reverse ? field->size - 1 : 0; in __eeprom_field_print_bin()
19 int to = reverse ? 0 : field->size - 1; in __eeprom_field_print_bin()
22 for (i = from; i != to; reverse ? i-- : i++) in __eeprom_field_print_bin()
29 const char *value, bool reverse) in __eeprom_field_update_bin() argument
32 int k, j, i = reverse ? len - 1 : 0; in __eeprom_field_update_bin()
47 if ((reverse && i < 0) || (!reverse && i >= len)) in __eeprom_field_update_bin()
51 if (reverse && i == 0) { in __eeprom_field_update_bin()
56 tmp[k] = value[reverse ? i - 1 + k : i + k]; in __eeprom_field_update_bin()
64 i = reverse ? i - 2 : i + 2; in __eeprom_field_update_bin()
/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 Dconvert_ring.hpp49 bool append, bool reverse) in apply()
54 if (reverse) in apply()
56 boost::reverse(destination); in apply()
68 bool append, bool reverse) in apply()
73 if (reverse) in apply()
75 boost::reverse(exterior_ring(destination)); in apply()
93 if (reverse) in apply()
95 boost::reverse(interior_rings(destination).back()); in apply()
/OK3568_Linux_fs/kernel/drivers/video/rockchip/vehicle/
H A DKconfig7 fast reverse Image module.
12 bool "nvp6324 for reverse sensor"
17 bool "nvp6188 for reverse sensor"
22 bool "max96714 for reverse sensor"
27 bool "gc2145 for reverse sensor"
32 bool "tp2825 for reverse sensor"
37 bool "ad7181 for reverse sensor"
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/views/
H A Dtest_views.py14 from django.urls import reverse
51 response = self.client.get(reverse('all-projects'), follow=True)
58 url = reverse('all-projects')
79 layers_url = reverse('xhr_layerstypeahead', args=(self.project.id,))
80 prj_url = reverse('xhr_projectstypeahead')
84 reverse('xhr_recipestypeahead', args=(self.project.id,)),
85 reverse('xhr_machinestypeahead', args=(self.project.id,))]
136 api_url = reverse('xhr_layer', args=(self.project.id,))
168 url = reverse('xhr_customrecipe')
180 self.assertEqual(reverse('customrecipe', args=args), data['url'])
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/functional/fusion/
H A Dreverse.hpp25 struct reverse struct
39 : fusion::result_of::reverse<Seq>
43 typename fusion::result_of::reverse<Seq>::type
47 typedef typename fusion::result_of::reverse<Seq>::type result_type; in operator ()()
52 typename fusion::result_of::reverse<Seq const>::type
55 return fusion::reverse(seq); in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/algorithm/
H A Dreverse.hpp30 inline BidirectionalRange& reverse(BidirectionalRange& rng) in reverse() function
33 std::reverse(boost::begin(rng), boost::end(rng)); in reverse()
39 inline const BidirectionalRange& reverse(const BidirectionalRange& rng) in reverse() function
42 std::reverse(boost::begin(rng), boost::end(rng)); in reverse()
47 using range::reverse;
/OK3568_Linux_fs/kernel/net/x25/
H A Dx25_facilities.c78 facilities->reverse = p[1] & 0x81; in x25_parse_facilities()
84 facilities->reverse = p[1] & 0x01; in x25_parse_facilities()
90 facilities->reverse = p[1] & 0x80; in x25_parse_facilities()
96 facilities->reverse in x25_parse_facilities()
205 if (facilities->reverse && (facil_mask & X25_MASK_REVERSE)) { in x25_create_facilities()
207 *p++ = facilities->reverse; in x25_create_facilities()
284 if ((theirs.reverse & 0x01 ) && (ours->reverse & 0x01)) { in x25_negotiate_facilities()
289 new->reverse = theirs.reverse; in x25_negotiate_facilities()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_all_projects_page.py12 from django.urls import reverse
82 url = reverse('all-projects')
93 url = reverse('all-projects')
112 self.get(reverse('all-projects'))
146 self.get(reverse('all-projects'))
183 self.get(reverse('all-projects'))
192 expected_url = reverse('projectbuilds', args=(self.default_project.id,))
203 expected_url = reverse('project', args=(self.project.id,))
H A Dtest_landing_page.py10 from django.urls import reverse
37 self.get(reverse('landing'))
51 self.get(reverse('landing'))
69 self.get(reverse('landing'))
88 self.get(reverse('landing'))
H A Dtest_all_builds_page.py12 from django.urls import reverse
88 url = reverse('builddashboard', args=(build.id,))
110 url = reverse('all-builds')
131 url = reverse('all-builds')
157 url = reverse('all-builds')
196 url = reverse('all-builds')
H A Dtest_project_config_page.py10 from django.urls import reverse
41 url = reverse('projectconf', args=(self.project1.id,));
62 url = reverse('projectconf', args=(self.project1.id,));
83 url = reverse('projectconf', args=(self.project1.id,));
116 url = reverse('projectconf', args=(self.project1.id,))
171 url = reverse('projectconf', args=(self.project1.id,))
H A Dtest_project_builds_page.py12 from django.urls import reverse
80 url = reverse('projectbuilds', args=(project_id,))
127 url = reverse('projectbuilds', args=(self.project1.id,))
142 url = reverse('projectbuilds', args=(self.default_project.id,))
152 url = reverse('projectbuilds', args=(self.project1.id,))
H A Dtest_new_project_page.py10 from django.urls import reverse
48 url = reverse('newproject')
79 url = reverse('newproject')
/OK3568_Linux_fs/buildroot/package/patch/
H A D0001-Fix-segfault-with-mangled-rename-patch.patch25 - p_name[! reverse] &&
26 + p_name[reverse] && p_name[! reverse] &&
27 + name_is_valid (p_name[reverse]) &&
28 name_is_valid (p_name[! reverse])))
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/patch/patch/
H A D0002-Fix-segfault-with-mangled-rename-patch.patch27 - p_name[! reverse] &&
28 + p_name[reverse] && p_name[! reverse] &&
29 + name_is_valid (p_name[reverse]) &&
30 name_is_valid (p_name[! reverse])))
/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/plugin/include/
H A Dgimple-match.h127 bool reverse; variable
138 : cond (gimple_match_cond::UNCOND), type (NULL_TREE), reverse (false), in gimple_match_op()
150 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
161 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
171 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
182 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
194 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
208 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
271 reverse = reverse_in; in set_op()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dgimple-match.h127 bool reverse; variable
138 : cond (gimple_match_cond::UNCOND), type (NULL_TREE), reverse (false), in gimple_match_op()
150 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
161 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
171 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
182 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
194 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
208 : cond (cond_in), code (code_in), type (type_in), reverse (false), in gimple_match_op()
271 reverse = reverse_in; in set_op()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/gpio/
H A Dgpio-detection.txt6 - car-reverse : a describtion to show the gpio will be use to car reverse
24 car-reverse {
25 car-reverse-gpios = <&gpio3 10 GPIO_ACTIVE_HIGH>;
27 label = "car-reverse";
/OK3568_Linux_fs/external/xserver/glamor/
H A Dglamor_copy.c169 Bool reverse, in glamor_copy_bail() argument
178 reverse, upsidedown, bitplane, closure); in glamor_copy_bail()
181 reverse, upsidedown, bitplane, closure); in glamor_copy_bail()
184 reverse, upsidedown, bitplane, closure); in glamor_copy_bail()
207 Bool reverse, in glamor_copy_cpu_fbo() argument
253 reverse, upsidedown, bitplane, closure); in glamor_copy_cpu_fbo()
256 reverse, upsidedown, bitplane, closure); in glamor_copy_cpu_fbo()
293 Bool reverse, in glamor_copy_fbo_cpu() argument
353 Bool reverse, in glamor_copy_fbo_fbo_draw() argument
510 Bool reverse, in glamor_copy_fbo_fbo_temp() argument
[all …]
/OK3568_Linux_fs/buildroot/dl/ncurses/
HDncurses-6.1-20191102.patch.gz ... LIBS,[$2])" 73+# reverse order 74+cf_add_0lib= 75+for cf_add_1lib in ...
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/templatetags/
H A Dproject_url_tag.py6 from django.urls import reverse
32 return reverse('projectbuilds', args=(project.id,))
34 return reverse('project', args=(project.id,))
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/
H A Drk3562-evb2-image-reverse.dtsi28 /*if use the reverse, please config this*/
29 car-reverse {
30 car-reverse-gpios = <&gpio3 RK_PD0 GPIO_ACTIVE_HIGH>;
32 label = "car-reverse";
167 /* car-reverse */
/OK3568_Linux_fs/external/xserver/fb/
H A Dfbcopy.c38 int dy, Bool reverse, Bool upsidedown, Pixel bitplane, void *closure) in fbCopyNtoN() argument
56 if (pm == FB_ALLONES && alu == GXcopy && !reverse && !upsidedown) { in fbCopyNtoN()
76 (pbox->y2 - pbox->y1), alu, pm, dstBpp, reverse, upsidedown); in fbCopyNtoN()
93 int dy, Bool reverse, Bool upsidedown, Pixel bitplane, void *closure) in fbCopy1toN() argument
120 pPriv->pm, dstBpp, reverse, upsidedown); in fbCopy1toN()
148 int dy, Bool reverse, Bool upsidedown, Pixel bitplane, void *closure) in fbCopyNto1() argument
/OK3568_Linux_fs/external/xserver/mi/
H A Dmicopy.c42 Bool reverse; in miCopyRegion() local
90 reverse = TRUE; in miCopyRegion()
92 reverse = FALSE; in miCopyRegion()
118 reverse = FALSE; in miCopyRegion()
124 pbox, nbox, dx, dy, reverse, upsidedown, bitPlane, closure); in miCopyRegion()

12345678910>>...21