Home
last modified time | relevance | path

Searched refs:tr_b (Results 1 – 25 of 39) sorted by relevance

12

/dports/cad/gmsh/gmsh-4.9.2-source/utils/converters/brl-cad/
H A Dprinting.h83 case OP_UNION: return o << p->tr_b.tb_left << " u " << p->tr_b.tb_right;
84 case OP_INTERSECT:return o << p->tr_b.tb_left << " + " << p->tr_b.tb_right;
85 case OP_SUBTRACT: return o << p->tr_b.tb_left << " - " << p->tr_b.tb_right;
H A DBRLFile.cpp372 left=PerformBoolean(tp->tr_b.tb_left); in PerformBoolean()
373 right=PerformBoolean(tp->tr_b.tb_right); in PerformBoolean()
/dports/net/wayvnc/wayvnc-0.4.1/src/
H A Dtransform-util.c222 enum wl_output_transform tr_a, enum wl_output_transform tr_b) in wv_output_transform_compose() argument
224 uint32_t flipped = (tr_a ^ tr_b) & WL_OUTPUT_TRANSFORM_FLIPPED; in wv_output_transform_compose()
227 if (tr_b & WL_OUTPUT_TRANSFORM_FLIPPED) { in wv_output_transform_compose()
231 rotated = (tr_b - tr_a) & rotation_mask; in wv_output_transform_compose()
233 rotated = (tr_a + tr_b) & rotation_mask; in wv_output_transform_compose()
/dports/games/xorgramana/XorGramana-0.0.8/
H A Dicons.c176 SDL_Surface* icon_half_assed_size(SDL_Surface* s, bool transparent, int tr_r, int tr_g, int tr_b);
347 SDL_Surface *load_image(char *name, bool transparent, int tr_r, int tr_g, int tr_b) in load_image() argument
359 tr_r, tr_g, tr_b)); in load_image()
374 SDL_Surface* icon_duplicate(SDL_Surface* s, bool transparent, int tr_r, int tr_g, int tr_b) in icon_duplicate() argument
397 tr_r, tr_g, tr_b)); in icon_duplicate()
408 SDL_Surface* icon_half_assed_size(SDL_Surface* s, bool transparent, int tr_r, int tr_g, int tr_b) in icon_half_assed_size() argument
435 tr_r, tr_g, tr_b)); in icon_half_assed_size()
H A Dicons.h248 SDL_Surface *load_image(char *name, bool transparent, int tr_r, int tr_g, int tr_b);
249 SDL_Surface* icon_duplicate(SDL_Surface* s, bool transparent, int tr_r, int tr_g, int tr_b);
250 SDL_Surface* icon_half_assed_size(SDL_Surface* s, bool transparent, int tr_r, int tr_g, int tr_b);
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/mkldnn/tests/gtests/
H A Dtest_gemm_validation.hpp36 const bool tr_b = p.transB && (p.transB == 'T' || p.transB == 't'); in call() local
53 const b_dt b_elem = tr_b ? pb(in, ik) : pb(ik, in); in call()
72 const bool tr_b = p.transB && (p.transB == 'T' || p.transB == 't'); in call() local
95 const double b_elem = (tr_b ? pb(n, k) : pb(k, n)) - ob; in call()
H A Dtest_gemm_data_preparation.hpp208 const bool tr_b = (p.transB == 'T' || p.transB == 't'); in get_matrix_size() local
210 sizeB = tr_b ? p.ldb * p.N : p.ldb * p.K; in get_matrix_size()
229 p.tr_b() ? layout_t::ROW_MAJOR : layout_t::COL_MAJOR, p.N, p.K, in fill_matrices()
H A Dtest_gemm_params.hpp72 bool tr_b() const { return transB == 'T' || transB == 't'; } in tr_b() function
/dports/math/onednn/oneDNN-2.5.1/tests/gtests/
H A Dtest_gemm_validation.hpp36 const bool tr_b = p.transB && (p.transB == 'T' || p.transB == 't'); in call() local
53 const b_dt b_elem = tr_b ? pb(in, ik) : pb(ik, in); in call()
72 const bool tr_b = p.transB && (p.transB == 'T' || p.transB == 't'); in call() local
95 const double b_elem = (tr_b ? pb(n, k) : pb(k, n)) - ob; in call()
H A Dtest_gemm_data_preparation.hpp208 const bool tr_b = (p.transB == 'T' || p.transB == 't'); in get_matrix_size() local
210 sizeB = tr_b ? p.ldb * p.N : p.ldb * p.K; in get_matrix_size()
229 p.tr_b() ? layout_t::ROW_MAJOR : layout_t::COL_MAJOR, p.N, p.K, in fill_matrices()
H A Dtest_gemm_params.hpp72 bool tr_b() const { return transB == 'T' || transB == 't'; } in tr_b() function
/dports/net/wayvnc/wayvnc-0.4.1/include/
H A Dtransform-util.h31 enum wl_output_transform tr_a, enum wl_output_transform tr_b);
/dports/audio/cmus/cmus-2.9.1/
H A Dtrack.c307 struct shuffle_track *tr_b = tree_node_to_shuffle_track(b); in compare_rand() local
309 if (tr_a->rand < tr_b->rand) in compare_rand()
311 if (tr_a->rand > tr_b->rand) in compare_rand()
/dports/science/py-cirq-aqt/Cirq-0.12.0/cirq-core/cirq/linalg/
H A Dtransformations_test.py346 tr_b = np.trace(b)
350 np.testing.assert_almost_equal(cirq.partial_trace(tensor, []), tr_a * tr_b * tr_c)
351 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [0]), a * tr_b * tr_c)
353 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [2]), c * tr_a * tr_b)
361 cirq.partial_trace(tensor, [0, 2]), np.reshape(np.kron(a, c), (2, 4, 2, 4)) * tr_b
/dports/science/py-cirq-core/Cirq-0.13.1/cirq-core/cirq/linalg/
H A Dtransformations_test.py346 tr_b = np.trace(b)
350 np.testing.assert_almost_equal(cirq.partial_trace(tensor, []), tr_a * tr_b * tr_c)
351 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [0]), a * tr_b * tr_c)
353 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [2]), c * tr_a * tr_b)
361 cirq.partial_trace(tensor, [0, 2]), np.reshape(np.kron(a, c), (2, 4, 2, 4)) * tr_b
/dports/science/py-cirq-pasqal/Cirq-0.13.1/cirq-core/cirq/linalg/
H A Dtransformations_test.py346 tr_b = np.trace(b)
350 np.testing.assert_almost_equal(cirq.partial_trace(tensor, []), tr_a * tr_b * tr_c)
351 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [0]), a * tr_b * tr_c)
353 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [2]), c * tr_a * tr_b)
361 cirq.partial_trace(tensor, [0, 2]), np.reshape(np.kron(a, c), (2, 4, 2, 4)) * tr_b
/dports/science/py-cirq-google/Cirq-0.13.0/cirq-core/cirq/linalg/
H A Dtransformations_test.py346 tr_b = np.trace(b)
350 np.testing.assert_almost_equal(cirq.partial_trace(tensor, []), tr_a * tr_b * tr_c)
351 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [0]), a * tr_b * tr_c)
353 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [2]), c * tr_a * tr_b)
361 cirq.partial_trace(tensor, [0, 2]), np.reshape(np.kron(a, c), (2, 4, 2, 4)) * tr_b
/dports/science/py-cirq-ionq/Cirq-0.13.1/cirq-core/cirq/linalg/
H A Dtransformations_test.py346 tr_b = np.trace(b)
350 np.testing.assert_almost_equal(cirq.partial_trace(tensor, []), tr_a * tr_b * tr_c)
351 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [0]), a * tr_b * tr_c)
353 np.testing.assert_almost_equal(cirq.partial_trace(tensor, [2]), c * tr_a * tr_b)
361 cirq.partial_trace(tensor, [0, 2]), np.reshape(np.kron(a, c), (2, 4, 2, 4)) * tr_b
/dports/math/z3/z3-z3-4.8.13/src/test/
H A Ddl_query.cpp120 table_relation & tr_b = static_cast<table_relation &>(rel_b); in dl_query_test() local
121 table_base & table_b = tr_b.get_table(); in dl_query_test()
/dports/math/py-z3-solver/z3-z3-4.8.10/src/test/
H A Ddl_query.cpp120 table_relation & tr_b = static_cast<table_relation &>(rel_b);
121 table_base & table_b = tr_b.get_table();
/dports/x11/squeekboard/squeekboard-d49ce45de0956432cef9b957f806d9377fee4bc0/src/
H A Dpopover.rs279 human_names.sort_unstable_by(|(tr_a, layout_a), (tr_b, layout_b)| { in show()
284 _ => compare_current_locale(&tr_a.0, &tr_b.0) in show()
/dports/x11-toolkits/wlroots/wlroots-0.12.0/types/
H A Dwlr_output.c1222 enum wl_output_transform tr_a, enum wl_output_transform tr_b) { in wlr_output_transform_compose() argument
1223 uint32_t flipped = (tr_a ^ tr_b) & WL_OUTPUT_TRANSFORM_FLIPPED; in wlr_output_transform_compose()
1226 if (tr_b & WL_OUTPUT_TRANSFORM_FLIPPED) { in wlr_output_transform_compose()
1230 rotated = (tr_b - tr_a) & rotation_mask; in wlr_output_transform_compose()
1232 rotated = (tr_a + tr_b) & rotation_mask; in wlr_output_transform_compose()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/share/extensions/tests/
H A Dtest_inkex_elements_base.py175 tr_b = Transform(translate=(-20, 15))
177 elem.transform = tr_b
/dports/x11-toolkits/wlroots/wlroots-0.12.0/include/wlr/types/
H A Dwlr_output.h456 enum wl_output_transform tr_a, enum wl_output_transform tr_b);
/dports/science/py-obspy/obspy-1.2.2/obspy/core/tests/
H A Dtest_stream.py1834 for tr_b in [tr2, tr3, tr4]:
1836 st = Stream([tr_a, tr_b])
1841 for tr_b in [tr5, tr6]:
1843 st = Stream([tr_a, tr_b])
1847 st_result = Stream([tr1, tr_b])
1851 for tr_b in [tr_01, tr_02]:
1853 st = Stream([tr_a, tr_b])
1857 st_result = Stream([tr1, tr_b])
1878 for tr_b in [tr7, tr8, tr9, tr10, tr11, tr12, tr13]:
1880 st = Stream([tr_a, tr_b])
[all …]

12