Home
last modified time | relevance | path

Searched refs:x_ (Results 1 – 25 of 44) sorted by relevance

12

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/stitching/detail/
H A Dwarpers_inl.hpp216 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; in mapForward() local
220 x_ = t[0] + x_ / z_ * (1 - t[2]); in mapForward()
223 u = scale * x_; in mapForward()
247 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; in mapForward() local
251 u = scale * atan2f(x_, z_); in mapForward()
252 float w = y_ / sqrtf(x_ * x_ + y_ * y_ + z_ * z_); in mapForward()
264 float x_ = sinv * sinf(u); in mapBackward() local
269 x = k_rinv[0] * x_ + k_rinv[1] * y_ + k_rinv[2] * z_; in mapBackward()
270 y = k_rinv[3] * x_ + k_rinv[4] * y_ + k_rinv[5] * z_; in mapBackward()
271 z = k_rinv[6] * x_ + k_rinv[7] * y_ + k_rinv[8] * z_; in mapBackward()
[all …]
/OK3568_Linux_fs/kernel/arch/riscv/include/asm/
H A Dparse_asm.h184 ({typeof(x) x_ = (x); \
185 (RV_X(x_, J_IMM_10_1_OPOFF, J_IMM_10_1_MASK) << J_IMM_10_1_OFF) | \
186 (RV_X(x_, J_IMM_11_OPOFF, J_IMM_11_MASK) << J_IMM_11_OFF) | \
187 (RV_X(x_, J_IMM_19_12_OPOFF, J_IMM_19_12_MASK) << J_IMM_19_12_OFF) | \
188 (RV_IMM_SIGN(x_) << J_IMM_SIGN_OFF); })
191 ({typeof(x) x_ = (x); \
192 (RV_X(x_, I_IMM_11_0_OPOFF, I_IMM_11_0_MASK)) | \
193 (RV_IMM_SIGN(x_) << I_IMM_SIGN_OFF); })
196 ({typeof(x) x_ = (x); \
197 (RV_X(x_, B_IMM_4_1_OPOFF, B_IMM_4_1_MASK) << B_IMM_4_1_OFF) | \
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeotilespec.cpp82 d->x_ = x; in setX()
87 return d->x_; in x()
150 x_(-1), in QGeoTileSpecPrivate()
159 x_(other.x_), in QGeoTileSpecPrivate()
167 x_(x), in QGeoTileSpecPrivate()
181 x_ = other.x_; in operator =()
199 if (x_ != rhs.x_) in operator ==()
228 if (x_ < rhs.x_) in operator <()
230 if (x_ > rhs.x_) in operator <()
H A Dqgeotilespec_p_p.h71 int x_; variable
/OK3568_Linux_fs/kernel/drivers/usb/mtu3/
H A Dmtu3_hw_regs.h146 typeof(x) x_ = (x); \
147 (g2c) ? TX_MULT_G2(x_) : TX_MULT_OG(x_); \
151 typeof(x) x_ = (x); \
152 (g2c) ? TX_MAX_PKT_G2(x_) : TX_MAX_PKT_OG(x_); \
185 typeof(x) x_ = (x); \
186 (g2c) ? RX_MULT_G2(x_) : RX_MULT_OG(x_); \
190 typeof(x) x_ = (x); \
191 (g2c) ? RX_MAX_PKT_G2(x_) : RX_MAX_PKT_OG(x_); \
H A Dmtu3_qmu.c40 typeof(x) x_ = (x); \
41 ((mtu)->gen2cp) ? GPD_RX_BUF_LEN_EL(x_) : GPD_RX_BUF_LEN_OG(x_); \
48 typeof(x) x_ = (x); \
49 ((mtu)->gen2cp) ? GPD_DATA_LEN_EL(x_) : GPD_DATA_LEN_OG(x_); \
59 typeof(x) x_ = (x); \
60 ((mtu)->gen2cp) ? GPD_EXT_NGP_EL(x_) : GPD_EXT_NGP_OG(x_); \
65 typeof(x) x_ = (x); \
66 ((mtu)->gen2cp) ? GPD_EXT_BUF_EL(x_) : GPD_EXT_BUF_OG(x_); \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/tile/
H A Dtile_id.hpp99 inline CanonicalTileID::CanonicalTileID(uint8_t z_, uint32_t x_, uint32_t y_) : z(z_), x(x_), y(y_)… in CanonicalTileID() argument
200 inline UnwrappedTileID::UnwrappedTileID(uint8_t z_, int64_t x_, int64_t y_) in UnwrappedTileID() argument
201 : wrap((x_ < 0 ? x_ - (1ll << z_) + 1 : x_) / (1ll << z_)), in UnwrappedTileID()
204 static_cast<uint32_t>(x_ - wrap * (1ll << z_)), in UnwrappedTileID()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-gnome/recipes-gnome/rest/files/
H A D0001-Use-GUri-instead-of-SoupURI.patch82 -#define OAUTH_ENCODE_STRING(x_) (x_ ? soup_uri_encode( (x_), "!$&'()*+,;=@") : g_strdup (""))
83 +#define OAUTH_ENCODE_STRING(x_) (x_ ? g_uri_escape_string( (x_), NULL, TRUE) : g_strdup (""))
/OK3568_Linux_fs/u-boot/include/
H A Dusb.h285 ({ unsigned short x_ = (unsigned short)x; \
287 ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \
290 ({ unsigned long x_ = (unsigned long)x; \
292 ((x_ & 0x000000FFUL) << 24) | \
293 ((x_ & 0x0000FF00UL) << 8) | \
294 ((x_ & 0x00FF0000UL) >> 8) | \
295 ((x_ & 0xFF000000UL) >> 24)); \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geojsonvt/6.5.1/include/mapbox/geojsonvt/
H A Dtypes.hpp18 vt_point(double x_, double y_, double z_) : mapbox::geometry::point<double>(x_, y_), z(z_) { in vt_point()
21 vt_point(double x_, double y_) : vt_point(x_, y_, 0.0) { in vt_point()
H A Dtile.hpp36 const uint32_t x_, in InternalTile() argument
42 x(x_), in InternalTile()
/OK3568_Linux_fs/kernel/arch/xtensa/include/asm/
H A Duaccess.h154 #define __put_user_asm(x_, addr_, err_, align, insn, cb)\ argument
171 :[x] "r"(x_), [efault] "i"(-EFAULT))
222 #define __get_user_asm(x_, addr_, err_, align, insn, cb) \ argument
242 (x_) = (__force __typeof__(*(addr_)))__x; \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/geometry/
H A Danchor.hpp16 Anchor(float x_, float y_, float angle_, float scale_, int segment_ = -1) in Anchor() argument
17 : point(x_, y_), angle(angle_), scale(scale_), segment(segment_) {} in Anchor()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geometry/0.9.3/include/mapbox/geometry/
H A Dpoint.hpp14 constexpr point(T x_, T y_) in point()
15 : x(x_), y(y_) in point()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/algorithm/transformation/
H A Dpush_back.hpp41 single_view x_(x); in push_back() local
42 return result(seq, x_); in push_back()
H A Dpush_front.hpp41 single_view x_(x); in push_front() local
42 return result(x_, seq); in push_front()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Drect.hpp8 Rect(T x_, T y_, T w_, T h_) : x(x_), y(y_), w(w_), h(h_) {} in Rect()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/shelf-pack/2.1.1/include/mapbox/
H A Dshelf-pack.hpp84 x_(0), y_(y1), w_(w1), h_(h1), wfree_(w1) { } in Shelf()
104 int32_t x1 = x_; in alloc()
105 x_ += w1; in alloc()
127 int32_t x() const { return x_; } in x()
134 int32_t x_; member in mapbox::Shelf
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/supercluster/0.2.2/include/
H A Dsupercluster.hpp119 TileFeatures getTile(std::uint8_t z, std::uint32_t x_, std::uint32_t y) { in getTile() argument
125 std::int32_t x = static_cast<std::int32_t>(x_); in getTile()
149 if (x_ == 0) { in getTile()
153 if (x_ == z2 - 1) { in getTile()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/espeak/files/
H A D0001-Fix-build-of-shared-library-on-architectures-needing.patch23 x_%.o: %.cpp
26 -I. -D LIBRARY -c -fno-exceptions $< -o x_$*.o
/OK3568_Linux_fs/buildroot/package/espeak/
H A D0001-Fix-build-of-shared-library-on-architectures-needing.patch23 x_%.o: %.cpp
26 -I. -D LIBRARY -c -fno-exceptions $< -o x_$*.o
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dglyph.hpp62 explicit PositionedGlyph(GlyphID glyph_, float x_, float y_, bool vertical_) in PositionedGlyph() argument
63 : glyph(glyph_), x(x_), y(y_), vertical(vertical_) {} in PositionedGlyph()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/
H A Dpoint.hpp43 point(T x_, T y_) : ring(nullptr), x(x_), y(y_), next(this), prev(this) { in point()
/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 Dopts.h473 if (!(OPTS_SET)->x_ ## OPTION) \
474 (OPTS)->x_ ## OPTION = VALUE; \
/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 Dopts.h473 if (!(OPTS_SET)->x_ ## OPTION) \
474 (OPTS)->x_ ## OPTION = VALUE; \

12