Home
last modified time | relevance | path

Searched refs:fpc (Results 1 – 25 of 37) sorted by relevance

12

/third_party/ffmpeg/libavcodec/
Dflac_parser.c117 static uint8_t *flac_fifo_read_wrap(FLACParseContext *fpc, int offset, int len, in flac_fifo_read_wrap() argument
120 AVFifoBuffer *f = fpc->fifo_buf; in flac_fifo_read_wrap()
132 av_log(fpc->avctx, AV_LOG_ERROR, in flac_fifo_read_wrap()
157 static uint8_t *flac_fifo_read(FLACParseContext *fpc, int offset, int *len) in flac_fifo_read() argument
159 AVFifoBuffer *f = fpc->fifo_buf; in flac_fifo_read()
168 static int find_headers_search_validate(FLACParseContext *fpc, int offset) in find_headers_search_validate() argument
173 header_buf = flac_fifo_read_wrap(fpc, offset, in find_headers_search_validate()
175 &fpc->wrap_buf, in find_headers_search_validate()
176 &fpc->wrap_buf_allocated_size); in find_headers_search_validate()
177 if (frame_header_is_valid(fpc->avctx, header_buf, &fi)) { in find_headers_search_validate()
[all …]
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnvfx_fragprog.c49 temp(struct nvfx_fpc *fpc) in temp() argument
51 int idx = __builtin_ctzll(~fpc->r_temps); in temp()
53 if (idx >= fpc->max_temps) { in temp()
58 fpc->r_temps |= (1ULL << idx); in temp()
59 fpc->r_temps_discard |= (1ULL << idx); in temp()
64 release_temps(struct nvfx_fpc *fpc) in release_temps() argument
66 fpc->r_temps &= ~fpc->r_temps_discard; in release_temps()
67 fpc->r_temps_discard = 0ULL; in release_temps()
71 nvfx_fp_imm(struct nvfx_fpc *fpc, float a, float b, float c, float d) in nvfx_fp_imm() argument
74 int idx = fpc->imm_data.size >> 4; in nvfx_fp_imm()
[all …]
/third_party/icu/icu4c/source/test/testdata/
DNumberFormatTestCases.txt77 fpc: "en_US" 1234.56/USD "$1,234.56" 1234.56/USD
78 fpc: - 1234.56/JPY "\u00A51,235" 1235/JPY
81 #fpc: - 123/QQQ "QQQ123.00" 123/QQQ # QQQ is fake
82 fpc: - 123/GTQ "GTQ 123.00" 123/GTQ
84 fpc: - 1/INR "\u20b91.00" 1/INR
85 fpc: - 2/INR "\u20b92.00" 2/INR
87 fpc: - 100/YDD "YDD 100.00" 100/YDD
88 fpc: - 100/CNY "CN\u00a5100.00" 100/CNY
/third_party/musl/src/fenv/s390x/
Dfenv.c6 unsigned fpc; in get_fpc() local
7 __asm__ __volatile__("efpc %0" : "=r"(fpc)); in get_fpc()
8 return fpc; in get_fpc()
11 static inline void set_fpc(unsigned fpc) in set_fpc() argument
13 __asm__ __volatile__("sfpc %0" :: "r"(fpc)); in set_fpc()
/third_party/boost/libs/test/test/writing-test-ts/
Dfp-comparisons-test.cpp257 namespace fpc = boost::math::fpc;
265 ::fpc::close_at_tolerance<double> pred( ::fpc::percent_tolerance( epsilon ), ::fpc::FPC_WEAK ); in BOOST_AUTO_TEST_CASE()
269 BOOST_TEST( !check_is_close( fp1, fp2, ::fpc::percent_tolerance( epsilon ) ) ); in BOOST_AUTO_TEST_CASE()
276 …BOOST_CHECK_PREDICATE( ::fpc::close_at_tolerance<double>( ::fpc::percent_tolerance( epsilon ), ::f… in BOOST_AUTO_TEST_CASE()
278 … BOOST_TEST( !::fpc::close_at_tolerance<double>( ::fpc::percent_tolerance( epsilon ) )(fp1, fp2) ); in BOOST_AUTO_TEST_CASE()
Dfp-multiprecision-comparison-test.cpp42 namespace boost { namespace math { namespace fpc {
117 BOOST_TEST( a == b, tt::tolerance( tt::fpc::percent_tolerance( eps * 100 ) ) ); in BOOST_AUTO_TEST_CASE()
145 …BOOST_TEST( a == b, tt::tolerance( tt::fpc::percent_tolerance<cpp_dec_float_50_et>( eps * 100 ) ) … in BOOST_AUTO_TEST_CASE()
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/format/
DNumberFormatTestCases.txt80 fpc: "en_US" 1234.56/USD "$1,234.56" 1234.56/USD
81 fpc: - 1234.56/JPY "¥1,235" 1235/JPY
84 # fpc: - 123/QQQ "QQQ123.00" 123/QQQ # QQQ is fake
85 fpc: - 123/GTQ "GTQ 123.00" 123/GTQ
87 fpc: - 1/INR "₹1.00" 1/INR
89 fpc: - 2/INR "₹2.00" 2/INR
91 fpc: - 100/YDD "YDD 100.00" 100/YDD
92 fpc: - 100/CNY "CN¥100.00" 100/CNY
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberFormatTestCases.txt80 fpc: "en_US" 1234.56/USD "$1,234.56" 1234.56/USD
81 fpc: - 1234.56/JPY "¥1,235" 1235/JPY
84 # fpc: - 123/QQQ "QQQ123.00" 123/QQQ # QQQ is fake
85 fpc: - 123/GTQ "GTQ 123.00" 123/GTQ
87 fpc: - 1/INR "₹1.00" 1/INR
89 fpc: - 2/INR "₹2.00" 2/INR
91 fpc: - 100/YDD "YDD 100.00" 100/YDD
92 fpc: - 100/CNY "CN¥100.00" 100/CNY
/third_party/boost/boost/test/tools/
Dfpc_op.hpp104 fpc::small_with_tolerance<FPT> P( fpc_tolerance<FPT>() ); in compare_fpv_near_zero()
119 fpc::small_with_tolerance<FPT> P( fpc_tolerance<FPT>() ); in compare_fpv_near_zero()
140 fpc::close_at_tolerance<FPT> P( fpc_tolerance<FPT>(), fpc::FPC_STRONG ); in compare_fpv()
163 fpc::close_at_tolerance<FPT> P( fpc_tolerance<FPT>(), fpc::FPC_WEAK ); in compare_fpv()
179 (fpc::tolerance_based<Lhs>::value && \
180 fpc::tolerance_based<Rhs>::value) || \
181 (fpc::tolerance_based<Lhs>::value && \
184 fpc::tolerance_based<Rhs>::value) \
Dfpc_tolerance.hpp29 namespace fpc = math::fpc;
86 tolerance( test_tools::fpc::percent_tolerance_t<FPT> v ) in tolerance()
89 …lass_based_fixture<test_tools::local_fpc_tolerance<FPT>,FPT>( boost::math::fpc::fpc_detail::fracti… in tolerance()
Dfloating_point_comparison.hpp40 namespace fpc { namespace
233 …explicit close_at_tolerance( ToleranceType tolerance, fpc::strength fpc_strength = FPC_STRONG ) in close_at_tolerance()
246 fpc::strength strength() const { return m_strength; } in strength()
279 fpc::strength m_strength;
309 return fpc::fpc_detail::fpt_abs( fpv ) <= m_tolerance; in operator ()()
/third_party/boost/libs/test/doc/examples/
Ddecorator_13.run-fail.cpp13 namespace fpc = boost::test_tools::fpc;
34 * utf::tolerance(fpc::percent_tolerance(0.05)))
41 * utf::tolerance(fpc::percent_tolerance(0.5)))
Dtolerance_04.run-fail.cpp15 namespace boost { namespace math { namespace fpc { namespace
/third_party/boost/boost/test/tools/detail/
Dtolerance_manip.hpp57 BOOST_STATIC_ASSERT_MSG( (fpc::tolerance_based<FPT>::value), in operator %()
119 BOOST_STATIC_ASSERT_MSG( (fpc::tolerance_based<FPT>::value), in tolerance()
130 tolerance( fpc::percent_tolerance_t<FPT> v ) in tolerance()
132 BOOST_STATIC_ASSERT_MSG( (fpc::tolerance_based<FPT>::value), in tolerance()
/third_party/boost/boost/test/tools/old/
Dimpl.hpp290 namespace fpc = math::fpc;
304fpc::close_at_tolerance<typename tt_detail::comp_supertype<FPT1,FPT2>::type> pred( tolerance, fpc:… in operator ()()
338 return fpc::is_small( fpv, tolerance ); in operator ()()
348 return fpc::is_small( fpv, tolerance ); in check_is_small()
Dinterface.hpp207 …::boost::test_tools::check_is_close_t(), "", WARN, CHECK_CLOSE, (L)(R)(::boost::math::fpc::percent…
209 …::boost::test_tools::check_is_close_t(), "", CHECK, CHECK_CLOSE, (L)(R)(::boost::math::fpc::percen…
211 …::boost::test_tools::check_is_close_t(), "", REQUIRE, CHECK_CLOSE, (L)(R)(::boost::math::fpc::perc…
/third_party/musl/arch/s390x/bits/
Duser.h10 unsigned fpc; member
22 unsigned fpc; member
Dsignal.h24 unsigned fpc; member
45 unsigned fpc; member
/third_party/boost/libs/math/example/
Dbrent_minimise_example.cpp93 return boost::math::fpc::close_at_tolerance<FPT>(tolerance) (left, right); in is_close_to()
106 using boost::math::fpc::close_at_tolerance; in is_close()
107 using boost::math::fpc::is_small; in is_close()
108 using boost::math::fpc::FPC_STRONG; in is_close()
223 using boost::math::fpc::close_at_tolerance; in main()
224 using boost::math::fpc::is_small; in main()
/third_party/boost/libs/test/example/
Dunit_test_example_10.cpp13 using boost::math::fpc::close_at_tolerance;
14 using boost::math::fpc::percent_tolerance;
/third_party/boost/libs/qvm/test/
Dtest_qvm.hpp31 … return boost::math::fpc::close_at_tolerance<float>(tolerance,boost::math::fpc::FPC_STRONG)(a,b); in close_at_tolerance()
38 … return boost::math::fpc::close_at_tolerance<double>(tolerance,boost::math::fpc::FPC_STRONG)(a,b); in close_at_tolerance()
/third_party/icu/icu4c/source/test/intltest/
Dpptest.cpp117 FieldPosition fpc(fp); in TestFieldPosition() local
118 if (fpc.getField() == 7) { in TestFieldPosition()
/third_party/boost/libs/test/doc/html/
Dstandalone_HTML.manifest375 boost/math/fpc/close_at_tolerance.html
376 boost/math/fpc/is_abstr_idm45267287028352.html
377 boost/math/fpc/percent_tolerance_t.html
378 boost/math/fpc/small_with_tolerance.html
379 boost/math/fpc/tolerance_based.html
380 boost/math/fpc/tolerance_based_delegate.html
381 boost/math/fpc/toleranc_idm45267287002304.html
382 boost/math/fpc/toleranc_idm45267286999776.html
/third_party/gettext/gettext-tools/tests/
Dxgettext-rst-227 { fpc 3.0.0 chokes on this: "Error: UTF-8 code greater than 65535 found" }
/third_party/openssl/crypto/poly1305/
Dpoly1305_ieee754.c101 static const u32 fpc = 1; variable
146 asm volatile ("lfpc %0"::"m"(fpc)); in poly1305_init()
268 asm volatile ("lfpc %0"::"m"(fpc)); in poly1305_blocks()

12