Home
last modified time | relevance | path

Searched defs:base (Results 1 – 25 of 2894) sorted by relevance

12345678910>>...116

/third_party/boost/boost/outcome/policy/
Dbase.hpp47 struct base struct
50 …nstexpr void _make_ub(Impl &&self) noexcept { return detail::make_ub(static_cast<Impl &&>(self)); } in _make_ub()
51 …static constexpr bool _has_value(Impl &&self) noexcept { return self._state._status.have_value(); } in _has_value()
52 …static constexpr bool _has_error(Impl &&self) noexcept { return self._state._status.have_error(); } in _has_error()
53 …onstexpr bool _has_exception(Impl &&self) noexcept { return self._state._status.have_exception(); } in _has_exception()
54 …ool _has_error_is_errno(Impl &&self) noexcept { return self._state._status.have_error_is_errno(); } in _has_error_is_errno()
56 …stexpr void _set_has_value(Impl &&self, bool v) noexcept { self._state._status.set_have_value(v); } in _set_has_value()
57 …stexpr void _set_has_error(Impl &&self, bool v) noexcept { self._state._status.set_have_error(v); } in _set_has_error()
58 …oid _set_has_exception(Impl &&self, bool v) noexcept { self._state._status.set_have_exception(v); } in _set_has_exception()
59 …as_error_is_errno(Impl &&self, bool v) noexcept { self._state._status.set_have_error_is_errno(v); } in _set_has_error_is_errno()
[all …]
/third_party/boost/libs/multi_index/test/
Dtest_key.cpp36 struct base struct
38 int x;
39 const int cx;
40 int f(){return x;}; in f()
41 int cf()const{return x;}; in cf()
42 int vf()volatile{return x;}; in vf()
43 int cvf()const volatile{return x;}; in cvf()
44 int rf()&{return x;}; in rf()
45 int crf()const&{return x;}; in crf()
46 int vrf()volatile&{return x;}; in vrf()
[all …]
/third_party/uboot/u-boot-2020.01/arch/arm/mach-keystone/
Dddr3.c24 void ddr3_init_ddrphy(u32 base, struct ddr3_phy_config *phy_cfg) in ddr3_init_ddrphy()
101 void ddr3_init_ddremif(u32 base, struct ddr3_emif_config *emif_cfg) in ddr3_init_ddremif()
112 int ddr3_ecc_support_rmw(u32 base) in ddr3_ecc_support_rmw()
124 static void ddr3_ecc_config(u32 base, u32 value) in ddr3_ecc_config()
148 static void ddr3_reset_data(u32 base, u32 ddr3_size) in ddr3_reset_data()
238 static void ddr3_ecc_init_range(u32 base) in ddr3_ecc_init_range()
251 void ddr3_enable_ecc(u32 base, int test) in ddr3_enable_ecc()
271 void ddr3_disable_ecc(u32 base) in ddr3_disable_ecc()
277 static void cic_init(u32 base) in cic_init()
290 static void cic_map_cic_to_gic(u32 base, u32 chan_num, u32 irq_num) in cic_map_cic_to_gic()
[all …]
/third_party/boost/libs/conversion/test/
Dpolymorphic_cast_test.cpp71 Base * base = new Derived; in test_polymorphic_cast() local
114 Base * base = new Derived; in test_polymorphic_pointer_cast() local
196 Base * base = new Derived; in test_polymorphic_pointer_downcast_builtin() local
214 boost::shared_ptr<Base> base (new Derived); in test_polymorphic_pointer_downcast_boost_shared() local
228 boost::intrusive_ptr<Base> base (new Derived); in test_polymorphic_pointer_downcast_intrusive() local
244 std::shared_ptr<Base> base (new Derived); in test_polymorphic_pointer_downcast_std_shared() local
260 Base * base = new Base; in test_polymorphic_cast_fail() local
269 Base * base = new Base; in test_polymorphic_pointer_cast_fail() local
314 Base * base = new Base; in test_polymorphic_pointer_downcast_builtin_fail() local
329 boost::shared_ptr<Base> base (new Base); in test_polymorphic_pointer_downcast_boost_shared_fail() local
[all …]
/third_party/boost/libs/hof/test/
Dvirtual_base.cpp14 struct base { struct
15 base(int) {} in base() function
16 base(const base&) {} in base() argument
/third_party/musl/src/stdlib/
Dstrtol.c8 static unsigned long long strtox(const char *s, char **p, int base, unsigned long long lim) in strtox()
21 unsigned long long strtoull(const char *restrict s, char **restrict p, int base) in strtoull()
26 long long strtoll(const char *restrict s, char **restrict p, int base) in strtoll()
31 unsigned long strtoul(const char *restrict s, char **restrict p, int base) in strtoul()
36 long strtol(const char *restrict s, char **restrict p, int base) in strtol()
41 intmax_t strtoimax(const char *restrict s, char **restrict p, int base) in strtoimax()
46 uintmax_t strtoumax(const char *restrict s, char **restrict p, int base) in strtoumax()
Dwcstol.c32 static unsigned long long wcstox(const wchar_t *s, wchar_t **p, int base, unsigned long long lim) in wcstox()
54 unsigned long long wcstoull(const wchar_t *restrict s, wchar_t **restrict p, int base) in wcstoull()
59 long long wcstoll(const wchar_t *restrict s, wchar_t **restrict p, int base) in wcstoll()
64 unsigned long wcstoul(const wchar_t *restrict s, wchar_t **restrict p, int base) in wcstoul()
69 long wcstol(const wchar_t *restrict s, wchar_t **restrict p, int base) in wcstol()
74 intmax_t wcstoimax(const wchar_t *restrict s, wchar_t **restrict p, int base) in wcstoimax()
79 uintmax_t wcstoumax(const wchar_t *restrict s, wchar_t **restrict p, int base) in wcstoumax()
/third_party/musl/porting/liteos_a/kernel/src/stdlib/
Dstrtol.c8 static unsigned long long strtox(const char *s, char **p, int base, unsigned long long lim) in strtox()
21 unsigned long long strtoull(const char *restrict s, char **restrict p, int base) in strtoull()
26 long long strtoll(const char *restrict s, char **restrict p, int base) in strtoll()
31 unsigned long strtoul(const char *restrict s, char **restrict p, int base) in strtoul()
36 long strtol(const char *restrict s, char **restrict p, int base) in strtol()
41 intmax_t strtoimax(const char *restrict s, char **restrict p, int base) in strtoimax()
46 uintmax_t strtoumax(const char *restrict s, char **restrict p, int base) in strtoumax()
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/
Dmpegtsbase.c116 mpegts_base_can_remove_program (MpegTSBase * base, MpegTSBaseProgram * program) in mpegts_base_can_remove_program()
152 MpegTSBase *base = GST_MPEGTS_BASE (object); in mpegts_base_set_property() local
167 MpegTSBase *base = GST_MPEGTS_BASE (object); in mpegts_base_get_property() local
180 mpegts_base_reset (MpegTSBase * base) in mpegts_base_reset()
228 mpegts_base_init (MpegTSBase * base) in mpegts_base_init()
259 MpegTSBase *base = GST_MPEGTS_BASE (object); in mpegts_base_dispose() local
275 MpegTSBase *base = GST_MPEGTS_BASE (object); in mpegts_base_finalize() local
319 mpegts_pid_in_active_programs (MpegTSBase * base, guint16 pid) in mpegts_pid_in_active_programs()
383 mpegts_base_new_program (MpegTSBase * base, in mpegts_base_new_program()
409 mpegts_base_add_program (MpegTSBase * base, in mpegts_base_add_program()
[all …]
/third_party/uboot/u-boot-2020.01/drivers/serial/
Dserial_mvebu_a3700.c12 void __iomem *base; member
36 void __iomem *base = plat->base; in mvebu_serial_putc() local
49 void __iomem *base = plat->base; in mvebu_serial_getc() local
60 void __iomem *base = plat->base; in mvebu_serial_pending() local
71 void __iomem *base = plat->base; in mvebu_serial_setbrg() local
91 void __iomem *base = plat->base; in mvebu_serial_probe() local
140 void __iomem *base = (void __iomem *)CONFIG_DEBUG_UART_BASE; in _debug_uart_init() local
164 void __iomem *base = (void __iomem *)CONFIG_DEBUG_UART_BASE; in _debug_uart_putc() local
/third_party/glib/gio/tests/
Dbuffered-input-stream.c31 GInputStream *base; in test_peek() local
68 GInputStream *base; in test_peek_buffer() local
89 GInputStream *base; in test_set_buffer_size() local
125 GInputStream *base; in test_read_byte() local
165 GInputStream *base; in test_read() local
224 GInputStream *base; in test_read_async() local
306 GInputStream *base; in test_skip() local
348 GInputStream *base; in test_skip_async() local
418 GInputStream *base; in test_close() local
452 GInputStream *base; in test_seek() local
/third_party/uboot/u-boot-2020.01/drivers/bios_emulator/
Dbiosemui.h67 #define readb_le(base) *((u8*)(base)) argument
68 #define readw_le(base) ((u16)readb_le(base) | ((u16)readb_le((base) + 1) << 8)) argument
69 #define readl_le(base) ((u32)readb_le((base) + 0) | ((u32)readb_le((base) + 1) << 8) | \ argument
71 #define writeb_le(base, v) *((u8*)(base)) = (v) argument
72 #define writew_le(base, v) writeb_le(base + 0, (v >> 0) & 0xff), \ argument
74 #define writel_le(base, v) writeb_le(base + 0, (v >> 0) & 0xff), \ argument
79 #define readb_le(base) *((u8*)(base)) argument
80 #define readw_le(base) *((u16*)(base)) argument
81 #define readl_le(base) *((u32*)(base)) argument
82 #define writeb_le(base, v) *((u8*)(base)) = (v) argument
[all …]
/third_party/uboot/u-boot-2020.01/lib/
Dstrto.c17 static const char *_parse_integer_fixup_radix(const char *s, unsigned int *base) in _parse_integer_fixup_radix()
34 unsigned int base) in simple_strtoul()
53 int strict_strtoul(const char *cp, unsigned int base, unsigned long *res) in strict_strtoul()
77 long simple_strtol(const char *cp, char **endp, unsigned int base) in simple_strtol()
85 unsigned long ustrtoul(const char *cp, char **endp, unsigned int base) in ustrtoul()
106 unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base) in ustrtoull()
128 unsigned int base) in simple_strtoull()
/third_party/boost/boost/iterator/detail/
Denable_if.hpp33 struct base struct
35 typedef T type;
48 struct base struct
52 typedef T type;
/third_party/boost/boost/contract/
Dbase_types.hpp88 #define BOOST_CONTRACT_BASE_TYPES_REMOVE_VIRTUAL_(base) \ argument
97 #define BOOST_CONTRACT_BASE_TYPES_PUSH_BACK_IF_(is_public, types_nilseq, base) \ argument
108 base) \ argument
113 base) \ argument
122 #define BOOST_CONTRACT_BASE_TYPES_ACCESS_(is_public, types_nilseq, base) \ argument
133 #define BOOST_CONTRACT_BASE_TYPES_(s, public_types, base) \ argument
164 #define BOOST_CONTRACT_BASE_TYPES_IS_ACCESS_(base) \ argument
/third_party/nghttp2/src/
Dhttp2_test.cc719 auto base = StringRef::from_lit("/"); in test_http2_parse_link_header() local
724 auto base = StringRef::from_lit("/"); in test_http2_parse_link_header() local
731 auto base = StringRef::from_lit("/"); in test_http2_parse_link_header() local
738 auto base = StringRef::from_lit("/"); in test_http2_parse_link_header() local
745 auto base = StringRef::from_lit("/"); in test_http2_parse_link_header() local
753 auto base = StringRef::from_lit("/alpha"); in test_http2_parse_link_header() local
760 auto base = StringRef::from_lit("/"); in test_http2_parse_link_header() local
767 auto base = StringRef::from_lit("/alpha/bravo/"); in test_http2_parse_link_header() local
774 auto base = StringRef::from_lit("/alpha/bravo"); in test_http2_parse_link_header() local
781 auto base = StringRef::from_lit("/alpha/bravo/"); in test_http2_parse_link_header() local
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DShaderLang.cpp64 TShHandleBase *base = static_cast<TShHandleBase *>(handle); in GetCompilerFromHandle() local
85 TShHandleBase *base = static_cast<TShHandleBase *>(handle); in GetTranslatorHLSLFromHandle() local
353 TShHandleBase *base = static_cast<TShHandleBase *>(ConstructCompiler(type, spec, output)); in ConstructCompiler() local
380 TShHandleBase *base = static_cast<TShHandleBase *>(handle); in Destruct() local
557 TShHandleBase *base = static_cast<TShHandleBase *>(handle); in GetUniformBlocks() local
567 TShHandleBase *base = static_cast<TShHandleBase *>(handle); in GetShaderStorageBlocks() local
578 TShHandleBase *base = static_cast<TShHandleBase *>(handle); in GetComputeShaderLocalGroupSize() local
588 TShHandleBase *base = static_cast<TShHandleBase *>(handle); in GetVertexShaderNumViews() local
741 TShHandleBase *base = static_cast<TShHandleBase *>(handle); in HasValidGeometryShaderInputPrimitiveType() local
752 TShHandleBase *base = static_cast<TShHandleBase *>(handle); in HasValidGeometryShaderOutputPrimitiveType() local
[all …]
/third_party/boost/libs/locale/src/std/
Dconverter.cpp38 std_converter(std::locale const &base,size_t refs = 0) : in std_converter()
73 utf8_converter(std::locale const &base,size_t refs = 0) : in utf8_converter()
114 … std::locale base(std::locale::classic(),new std::ctype_byname<wchar_t>(locale_name.c_str())); in create_convert() local
117 … std::locale base(std::locale::classic(),new std::ctype_byname<char>(locale_name.c_str())); in create_convert() local
122 … std::locale base(std::locale::classic(),new std::ctype_byname<wchar_t>(locale_name.c_str())); in create_convert() local
128 … std::locale base(std::locale::classic(),new std::ctype_byname<char16_t>(locale_name.c_str())); in create_convert() local
135 … std::locale base(std::locale::classic(),new std::ctype_byname<char32_t>(locale_name.c_str())); in create_convert() local
/third_party/uboot/u-boot-2020.01/arch/arm/mach-omap2/
Demif-common.c23 void set_lpmode_selfrefresh(u32 base) in set_lpmode_selfrefresh()
45 inline u32 emif_num(u32 base) in emif_num()
55 static inline u32 get_mr(u32 base, u32 cs, u32 mr_addr) in get_mr()
76 static inline void set_mr(u32 base, u32 cs, u32 mr_addr, u32 mr_val) in set_mr()
85 void emif_reset_phy(u32 base) in emif_reset_phy()
95 static void do_lpddr2_init(u32 base, u32 cs) in do_lpddr2_init()
126 static void lpddr2_init(u32 base, const struct emif_regs *regs) in lpddr2_init()
160 __weak void do_ext_phy_settings(u32 base, const struct emif_regs *regs) in do_ext_phy_settings()
164 void emif_update_timings(u32 base, const struct emif_regs *regs) in emif_update_timings()
201 static void omap5_ddr3_leveling(u32 base, const struct emif_regs *regs) in omap5_ddr3_leveling()
[all …]
/third_party/cef/libcef_dll/ctocpp/
Dctocpp_ref_counted.h64 cef_base_ref_counted_t* base = in UnderlyingAddRef() local
72 cef_base_ref_counted_t* base = in UnderlyingRelease() local
81 cef_base_ref_counted_t* base = in UnderlyingHasOneRef() local
90 cef_base_ref_counted_t* base = in UnderlyingHasAtLeastOneRef() local
/third_party/boost/boost/numeric/ublas/detail/
Draw.hpp666 typename MV::array_type::const_pointer base( const MV &mv ) { in base() function
676 typename MV::array_type::pointer base( MV &mv ) { in base() function
682 typename V::array_type::const_pointer base( const vector_reference<V> &v ) { in base() function
692 typename V::array_type::pointer base( vector_reference<V> &v ) { in base() function
698 typename c_vector<T, N>::array_type::const_pointer base( const c_vector<T, N> &v ) { in base() function
708 typename c_vector<T, N>::pointer base( c_vector<T, N> &v ) { in base() function
714 typename V::array_type::const_pointer base( const vector_range<V> &v ) { in base() function
719 typename V::array_type::const_pointer base( const vector_slice<V> &v ) { in base() function
734 typename V::array_type::pointer base( vector_range<V> &v ) { in base() function
739 typename V::array_type::pointer base( vector_slice<V> &v ) { in base() function
[all …]
/third_party/uboot/u-boot-2020.01/drivers/net/
Dne2000_base.c107 u8* base; in dp83902a_init() local
147 u8 *base = dp->base; in dp83902a_stop() local
168 u8 *base = dp->base; in dp83902a_start() local
219 u8 *base = dp->base; in dp83902a_start_xmit() local
247 u8 *base = dp->base; in dp83902a_send() local
377 u8 *base = dp->base; in dp83902a_RxEvent() local
449 u8 *base = dp->base; in dp83902a_recv() local
514 u8 *base = dp->base; in dp83902a_TxEvent() local
551 u8 *base = dp->base; in dp83902a_ClearCounters() local
568 u8 *base = dp->base; in dp83902a_Overflow() local
[all …]
/third_party/flutter/skia/third_party/externals/dawn/src/tests/end2end/
DColorStateTests.cpp110 void DoSingleSourceTest(RGBA8 base, const TriangleSpec& triangle, const RGBA8& expected) { in DoSingleSourceTest()
138 void CheckBlendOperation(RGBA8 base, in CheckBlendOperation()
160 void CheckBlendFactor(RGBA8 base, in CheckBlendFactor()
188 void CheckSrcBlendFactor(RGBA8 base, in CheckSrcBlendFactor()
196 void CheckDstBlendFactor(RGBA8 base, in CheckDstBlendFactor()
310 RGBA8 base(32, 64, 128, 192); in TEST_P() local
318 RGBA8 base(32, 64, 128, 192); in TEST_P() local
326 RGBA8 base(32, 64, 128, 192); in TEST_P() local
334 RGBA8 base(32, 64, 128, 192); in TEST_P() local
342 RGBA8 base(32, 64, 128, 192); in TEST_P() local
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DColorStateTests.cpp114 void DoSingleSourceTest(RGBA8 base, const TriangleSpec& triangle, const RGBA8& expected) { in DoSingleSourceTest()
142 void CheckBlendOperation(RGBA8 base, in CheckBlendOperation()
167 void CheckBlendFactor(RGBA8 base, in CheckBlendFactor()
198 void CheckSrcBlendFactor(RGBA8 base, in CheckSrcBlendFactor()
206 void CheckDstBlendFactor(RGBA8 base, in CheckDstBlendFactor()
323 RGBA8 base(32, 64, 128, 192); in TEST_P() local
331 RGBA8 base(32, 64, 128, 192); in TEST_P() local
339 RGBA8 base(32, 64, 128, 192); in TEST_P() local
347 RGBA8 base(32, 64, 128, 192); in TEST_P() local
355 RGBA8 base(32, 64, 128, 192); in TEST_P() local
[all …]
/third_party/boost/boost/parameter/aux_/preprocessor/impl/
Dfunction_name.hpp75 #define BOOST_PARAMETER_FUNCTION_SPECIFICATION_NAME(base, is_const) \ argument
91 #define BOOST_PARAMETER_NO_SPEC_FUNCTION_RESULT_NAME(base, is_const) \ argument
106 #define BOOST_PARAMETER_FUNCTION_RESULT_NAME(base, is_const) \ argument
122 #define BOOST_PARAMETER_NO_SPEC_FUNCTION_IMPL_NAME(base, is_const) \ argument
141 #define BOOST_PARAMETER_FUNCTION_IMPL_NAME(base, is_const) \ argument

12345678910>>...116