Home
last modified time | relevance | path

Searched refs:std (Results 1 – 25 of 3688) sorted by relevance

12345678910>>...148

/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/
H A Dmath.h38 using std::abs;
39 using std::acos;
40 using std::asin;
41 using std::atan;
42 using std::atan2;
43 using std::cos;
44 using std::sin;
45 using std::tan;
46 using std::cosh;
47 using std::sinh;
[all …]
H A Dstdlib.h38 using std::abort;
39 using std::atexit;
40 using std::exit;
43 using std::at_quick_exit;
46 using std::quick_exit;
51 using std::div_t;
52 using std::ldiv_t;
54 using std::abs;
55 using std::atof;
56 using std::atoi;
[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/
H A Dmath.h38 using std::abs;
39 using std::acos;
40 using std::asin;
41 using std::atan;
42 using std::atan2;
43 using std::cos;
44 using std::sin;
45 using std::tan;
46 using std::cosh;
47 using std::sinh;
[all …]
H A Dstdlib.h38 using std::abort;
39 using std::atexit;
40 using std::exit;
43 using std::at_quick_exit;
46 using std::quick_exit;
51 using std::div_t;
52 using std::ldiv_t;
54 using std::abs;
55 using std::atof;
56 using std::atoi;
[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/tr1/
H A Dmath.h36 using std::tr1::acos;
37 using std::tr1::acosh;
38 using std::tr1::asin;
39 using std::tr1::asinh;
40 using std::tr1::atan;
41 using std::tr1::atan2;
42 using std::tr1::atanh;
43 using std::tr1::cbrt;
44 using std::tr1::ceil;
45 using std::tr1::copysign;
[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/tr1/
H A Dmath.h36 using std::tr1::acos;
37 using std::tr1::acosh;
38 using std::tr1::asin;
39 using std::tr1::asinh;
40 using std::tr1::atan;
41 using std::tr1::atan2;
42 using std::tr1::atanh;
43 using std::tr1::cbrt;
44 using std::tr1::ceil;
45 using std::tr1::copysign;
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Ddsl.cpp16 static std::unique_ptr<Expression> compound(const char* op, std::vector<std::unique_ptr<Expression>… in compound()
18 ParseResult result = createCompoundExpression(op, std::move(args), ctx); in compound()
20 return std::move(*result); in compound()
24 static std::unique_ptr<Expression> compound(const char* op, Args... args) { in compound()
25 return compound(op, vec(std::move(args)...)); in compound()
28 std::unique_ptr<Expression> error(std::string message) { in error()
29 return std::make_unique<Error>(std::move(message)); in error()
32 std::unique_ptr<Expression> literal(const char* value) { in literal()
33 return literal(std::string(value)); in literal()
36 std::unique_ptr<Expression> literal(Value value) { in literal()
[all …]
H A Dcompound_expression.cpp47 using Args = std::array<std::unique_ptr<Expression>, sizeof...(Params)>;
49 Signature(R (*evaluate_)(Params...), std::string name_) : in Signature()
51 valueTypeToExpressionType<std::decay_t<typename R::Value>>(), in Signature()
52 std::vector<type::Type> {valueTypeToExpressionType<std::decay_t<Params>>()...}, in Signature()
53 std::move(name_)
58 return applyImpl(evaluationParameters, args, std::index_sequence_for<Params...>{}); in apply()
61std::unique_ptr<Expression> makeExpression(std::vector<std::unique_ptr<Expression>> args) const ov… in makeExpression()
63 std::copy_n(std::make_move_iterator(args.begin()), sizeof...(Params), argsArray.begin()); in makeExpression()
64 return std::make_unique<CompoundExpression<Signature>>(name, *this, std::move(argsArray)); in makeExpression()
69 template <std::size_t ...I>
[all …]
/OK3568_Linux_fs/kernel/drivers/pinctrl/bcm/
H A Dpinctrl-bcm281xx.c384 BCM281XX_PIN_DESC(BCM281XX_PIN_ADCSYNC, "adcsync", std),
385 BCM281XX_PIN_DESC(BCM281XX_PIN_BAT_RM, "bat_rm", std),
390 BCM281XX_PIN_DESC(BCM281XX_PIN_CLASSGPWR, "classgpwr", std),
391 BCM281XX_PIN_DESC(BCM281XX_PIN_CLK_CX8, "clk_cx8", std),
392 BCM281XX_PIN_DESC(BCM281XX_PIN_CLKOUT_0, "clkout_0", std),
393 BCM281XX_PIN_DESC(BCM281XX_PIN_CLKOUT_1, "clkout_1", std),
394 BCM281XX_PIN_DESC(BCM281XX_PIN_CLKOUT_2, "clkout_2", std),
395 BCM281XX_PIN_DESC(BCM281XX_PIN_CLKOUT_3, "clkout_3", std),
396 BCM281XX_PIN_DESC(BCM281XX_PIN_CLKREQ_IN_0, "clkreq_in_0", std),
397 BCM281XX_PIN_DESC(BCM281XX_PIN_CLKREQ_IN_1, "clkreq_in_1", std),
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Ddsl.hpp21 std::vector<std::unique_ptr<Expression>> vec(Args... args) { in vec()
22 std::vector<std::unique_ptr<Expression>> result; in vec()
23 util::ignore({ (result.push_back(std::move(args)), 0)... }); in vec()
27 std::unique_ptr<Expression> error(std::string);
29 std::unique_ptr<Expression> literal(const char* value);
30 std::unique_ptr<Expression> literal(Value value);
31 std::unique_ptr<Expression> literal(std::initializer_list<double> value);
32 std::unique_ptr<Expression> literal(std::initializer_list<const char *> value);
34 std::unique_ptr<Expression> number(std::unique_ptr<Expression>);
35 std::unique_ptr<Expression> string(std::unique_ptr<Expression>);
[all …]
H A Dparsing_context.hpp21 std::string message;
22 std::string key;
26 using ParseResult = optional<std::unique_ptr<Expression>>;
32 …Scope(const std::map<std::string, std::shared_ptr<Expression>>& bindings_, std::shared_ptr<Scope> … in Scope()
34 parent(std::move(parent_)) in Scope()
37 const std::map<std::string, std::shared_ptr<Expression>>& bindings;
38 std::shared_ptr<Scope> parent;
40 optional<std::shared_ptr<Expression>> get(const std::string& name) { in get()
47 return optional<std::shared_ptr<Expression>>(); in get()
56 ParsingContext() : errors(std::make_shared<std::vector<ParsingError>>()) {} in ParsingContext()
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/platforms/ps3/
H A Dhvcall.S19 std r0, 16(r1); \
41 std r0, 16(r1); \
50 std r4, 0(r11); \
60 std r0, 16(r1); \
62 std r3, -8(r1); \
70 std r4, 0(r11); \
72 std r5, 0(r11); \
82 std r0, 16(r1); \
84 std r3, -8(r1); \
85 std r4, -16(r1); \
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dfunction.cpp19 const static std::string tokenReservedChars = "{}";
21 bool hasTokens(const std::string& source) { in hasTokens()
26 auto brace = std::find(pos, end, '{'); in hasTokens()
29 … for (brace++; brace != end && tokenReservedChars.find(*brace) == std::string::npos; brace++); in hasTokens()
39 std::unique_ptr<Expression> convertTokenStringToExpression(const std::string& source) { in convertTokenStringToExpression()
40 std::vector<std::unique_ptr<Expression>> inputs; in convertTokenStringToExpression()
46 auto brace = std::find(pos, end, '{'); in convertTokenStringToExpression()
48 inputs.push_back(literal(std::string(pos, brace))); in convertTokenStringToExpression()
52 … for (brace++; brace != end && tokenReservedChars.find(*brace) == std::string::npos; brace++); in convertTokenStringToExpression()
54 inputs.push_back(toString(get(literal(std::string(pos + 1, brace))))); in convertTokenStringToExpression()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/arch/powerpc/tests/
H A Dregs_load.S44 std 0, R0(3)
45 std 1, R1(3)
46 std 2, R2(3)
47 std 3, R3(3)
48 std 4, R4(3)
49 std 5, R5(3)
50 std 6, R6(3)
51 std 7, R7(3)
52 std 8, R8(3)
53 std 9, R9(3)
[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/ext/pb_ds/detail/resize_policy/
H A Dhash_prime_size_policy_imp.hpp51 num_distinct_sizes = sizeof(std::size_t) != 8 ?
57 static const std::size_t g_a_sizes[num_distinct_sizes_64_bit] =
89 /* 30 */ (std::size_t)8589934583ull,
90 /* 31 */ (std::size_t)17179869143ull,
91 /* 32 */ (std::size_t)34359738337ull,
92 /* 33 */ (std::size_t)68719476731ull,
93 /* 34 */ (std::size_t)137438953447ull,
94 /* 35 */ (std::size_t)274877906899ull,
95 /* 36 */ (std::size_t)549755813881ull,
96 /* 37 */ (std::size_t)1099511627689ull,
[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/ext/pb_ds/detail/resize_policy/
H A Dhash_prime_size_policy_imp.hpp51 num_distinct_sizes = sizeof(std::size_t) != 8 ?
57 static const std::size_t g_a_sizes[num_distinct_sizes_64_bit] =
89 /* 30 */ (std::size_t)8589934583ull,
90 /* 31 */ (std::size_t)17179869143ull,
91 /* 32 */ (std::size_t)34359738337ull,
92 /* 33 */ (std::size_t)68719476731ull,
93 /* 34 */ (std::size_t)137438953447ull,
94 /* 35 */ (std::size_t)274877906899ull,
95 /* 36 */ (std::size_t)549755813881ull,
96 /* 37 */ (std::size_t)1099511627689ull,
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/functional/hash/
H A Dextensions.hpp47 std::size_t hash_value(std::pair<A, B> const&);
49 std::size_t hash_value(std::vector<T, A> const&);
51 std::size_t hash_value(std::list<T, A> const& v);
53 std::size_t hash_value(std::deque<T, A> const& v);
55 std::size_t hash_value(std::set<K, C, A> const& v);
57 std::size_t hash_value(std::multiset<K, C, A> const& v);
59 std::size_t hash_value(std::map<K, T, C, A> const& v);
61 std::size_t hash_value(std::multimap<K, T, C, A> const& v);
64 std::size_t hash_value(std::complex<T> const&);
67 std::size_t hash_value(std::pair<A, B> const& v) in hash_value()
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/kernel/
H A Didle_book3s.S52 std r1,PACAR1(r13)
60 std r2,-8*1(r1)
61 std r14,-8*2(r1)
62 std r15,-8*3(r1)
63 std r16,-8*4(r1)
64 std r17,-8*5(r1)
65 std r18,-8*6(r1)
66 std r19,-8*7(r1)
67 std r20,-8*8(r1)
68 std r21,-8*9(r1)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Ddefault_file_source.cpp22 …Impl(std::shared_ptr<FileSource> assetFileSource_, std::string cachePath, uint64_t maximumCacheSiz… in Impl()
24 , localFileSource(std::make_unique<LocalFileSource>()) in Impl()
25 , offlineDatabase(std::make_unique<OfflineDatabase>(cachePath, maximumCacheSize)) { in Impl()
28 void setAPIBaseURL(const std::string& url) { in setAPIBaseURL()
32 std::string getAPIBaseURL() const{ in getAPIBaseURL()
36 void setAccessToken(const std::string& accessToken) { in setAccessToken()
40 std::string getAccessToken() const { in getAccessToken()
45 onlineFileSource.setResourceTransform(std::move(transform)); in setResourceTransform()
48 …void listRegions(std::function<void (std::exception_ptr, optional<std::vector<OfflineRegion>>)> ca… in listRegions()
52 callback(std::current_exception(), {}); in listRegions()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/functional/hash/detail/
H A Dhash_float.hpp55 inline void hash_float_combine(std::size_t& seed, std::size_t value) in hash_float_combine()
66 inline std::size_t hash_binary(char* ptr, std::size_t length) in hash_binary()
68 std::size_t seed = 0; in hash_binary()
70 if (length >= sizeof(std::size_t)) { in hash_binary()
71 std::memcpy(&seed, ptr, sizeof(std::size_t)); in hash_binary()
72 length -= sizeof(std::size_t); in hash_binary()
73 ptr += sizeof(std::size_t); in hash_binary()
75 while(length >= sizeof(std::size_t)) { in hash_binary()
76 std::size_t buffer = 0; in hash_binary()
77 std::memcpy(&buffer, ptr, sizeof(std::size_t)); in hash_binary()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/container/vector/detail/cpp03/preprocessed/
H A Dvvector50.hpp69 : vec(std::forward<U0>( arg0)) {} in vector()
86 : vec(std::forward<U0>( arg0) , std::forward<U1>( arg1)) {} in vector()
103 : vec(std::forward<U0>( arg0) , std::forward<U1>( arg1) , std::forward<U2>( arg2)) {} in vector()
120 …: vec(std::forward<U0>( arg0) , std::forward<U1>( arg1) , std::forward<U2>( arg2) , std::forward<U… in vector()
137 …: vec(std::forward<U0>( arg0) , std::forward<U1>( arg1) , std::forward<U2>( arg2) , std::forward<U… in vector()
154 …: vec(std::forward<U0>( arg0) , std::forward<U1>( arg1) , std::forward<U2>( arg2) , std::forward<U… in vector()
171std::forward<U0>( arg0) , std::forward<U1>( arg1) , std::forward<U2>( arg2) , std::forward<U3>( ar… in vector()
188std::forward<U0>( arg0) , std::forward<U1>( arg1) , std::forward<U2>( arg2) , std::forward<U3>( ar… in vector()
205std::forward<U0>( arg0) , std::forward<U1>( arg1) , std::forward<U2>( arg2) , std::forward<U3>( ar… in vector()
222std::forward<U0>( arg0) , std::forward<U1>( arg1) , std::forward<U2>( arg2) , std::forward<U3>( ar… in vector()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/vector-tile/1.0.2/include/mapbox/
H A Dvector_tile.hpp17 using optional = std::experimental::optional<T>;
21 using point_type = mapbox::geometry::point<std::int16_t>;
23 class points_array_type : public std::vector<point_type> {
27 points_array_type(Args&&... args) : std::vector<point_type>(std::forward<Args>(args)...) {} in points_array_type()
30 class points_arrays_type : public std::vector<points_array_type> {
34 …points_arrays_type(Args&&... args) : std::vector<points_array_type>(std::forward<Args>(args)...) {} in points_arrays_type()
47 optional<mapbox::geometry::value> getValue(std::string const&) const;
50 std::uint32_t getExtent() const;
51 std::uint32_t getVersion() const;
67 std::size_t featureCount() const { return features.size(); } in featureCount()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dstyle_impl.hpp44 void loadJSON(const std::string&);
45 void loadURL(const std::string&);
47 std::string getJSON() const;
48 std::string getURL() const;
54 std::exception_ptr getLastError() const { in getLastError()
58 std::vector< Source*> getSources();
59 std::vector<const Source*> getSources() const;
60 Source* getSource(const std::string& id) const;
62 void addSource(std::unique_ptr<Source>);
63 std::unique_ptr<Source> removeSource(const std::string& sourceID);
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/rknn_benchmark/src/cnpy/
H A Dcnpy.h31 …NpyArray(const std::vector<size_t>& _shape, size_t _word_size, bool _fortran_order, std::string _t… in NpyArray()
40 data_holder = std::shared_ptr<std::vector<char>>(new std::vector<char>(num_vals * word_size)); in NpyArray()
63 std::vector<T> as_vec() const in as_vec()
66 return std::vector<T>(p, p + num_vals); in as_vec()
71 std::shared_ptr<std::vector<char>> data_holder;
72 std::vector<size_t> shape;
76 std::string typeName;
79 using npz_t = std::map<std::string, NpyArray>;
82 char map_type(const std::type_info& t);
84 std::vector<char> create_npy_header(const std::vector<size_t>& shape);
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/cnpy/
H A Dcnpy.h31 …NpyArray(const std::vector<size_t>& _shape, size_t _word_size, bool _fortran_order, std::string _t… in NpyArray()
40 data_holder = std::shared_ptr<std::vector<char>>(new std::vector<char>(num_vals * word_size)); in NpyArray()
63 std::vector<T> as_vec() const in as_vec()
66 return std::vector<T>(p, p + num_vals); in as_vec()
71 std::shared_ptr<std::vector<char>> data_holder;
72 std::vector<size_t> shape;
76 std::string typeName;
79 using npz_t = std::map<std::string, NpyArray>;
82 char map_type(const std::type_info& t);
84 std::vector<char> create_npy_header(const std::vector<size_t>& shape);
[all …]

12345678910>>...148