Home
last modified time | relevance | path

Searched refs:lf2 (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/dports/graphics/lfview/lfview-1.1a/plugins/
H A Dlf2dec.c27 LF2 *lf2; in read_lf2() local
58 return lf2; in read_lf2()
63 LF2 *lf2; in read_lf2_from_data() local
81 lf2->size = lf2->width * lf2->height; in read_lf2_from_data()
92 return lf2; in read_lf2_from_data()
97 LF2 *lf2; in init_lf2() local
172 lf2->size = lf2->width * lf2->height; in read_size()
273 idx = (i % lf2->width) + lf2->width * (lf2->height - i / lf2->width - 1); in extract_body()
297 idx = (i % lf2->width) + lf2->width * (lf2->height - i / lf2->width - 1); in extract_body()
356 idx = (i % lf2->width) + lf2->width * (lf2->height - i / lf2->width - 1); in extract_body_from_data()
[all …]
H A Dplugin_lf.c1356 LF2 *lf2; in plugin_get_lf2() local
1360 lf2 = read_lf2_from_data(data[0], size[0]); in plugin_get_lf2()
1361 img[0].width = lf2->width; in plugin_get_lf2()
1362 img[0].height = lf2->height; in plugin_get_lf2()
1363 img[0].color_num = lf2->color_num; in plugin_get_lf2()
1365 if (lf2->transparent == 0xff) { in plugin_get_lf2()
1368 img[0].transparent = lf2->transparent; in plugin_get_lf2()
1376 for (i = 0; i < lf2->color_num; i++) { in plugin_get_lf2()
1377 img[0].palette[i].r = lf2->palette[i][LF2_R]; in plugin_get_lf2()
1378 img[0].palette[i].g = lf2->palette[i][LF2_G]; in plugin_get_lf2()
[all …]
/dports/sysutils/u-boot-tools/u-boot-2020.07/lib/efi_selftest/
H A Defi_selftest_load_initrd.c90 struct efi_load_file_protocol *lf2; in execute() local
109 (void **)&lf2); in execute()
119 status = lf2->load_file(lf2, dp2, false, NULL, &buffer); in execute()
125 status = lf2->load_file(NULL, dp2, false, &buffer_size, &buffer); in execute()
136 status = lf2->load_file(lf2, dp2_invalid, false, &buffer_size, &buffer); in execute()
142 status = lf2->load_file(lf2, dp2_invalid, false, &buffer_size, &buffer); in execute()
153 status = lf2->load_file(lf2, dp2, true, &buffer_size, &buffer); in execute()
164 status = lf2->load_file(lf2, dp2, false, &buffer_size, NULL); in execute()
177 status = lf2->load_file(lf2, dp2, false, &buffer_size, &buffer); in execute()
191 status = lf2->load_file(lf2, dp2, false, &buffer_size, buf); in execute()
/dports/x11-toolkits/p5-Tk/Tk-804.035/demos/demos/widget_lib/
H A Dlabelframe.pl34 my $lf2 = $TOP->Labelframe(qw/-pady 2 -padx 2/);
35 $lf2->grid(qw/-row 0 -column 1 -pady 2m -padx 2m/);
38 $cb = $lf2->Checkbutton(
41 -command => sub {&labelframe_buttons($lf2, $cb, \$lfdummy2)},
44 $lf2->configure(-labelwidget => $cb);
47 $lf2->Checkbutton(-text => $str)->pack(qw/-side top -fill x -pady 2/);
50 &labelframe_buttons($lf2, $cb, \$lfdummy2);
/dports/devel/brz/breezy-3.2.0/breezy/tests/
H A Dtest_lockdir.py133 lf2.attempt_lock()
168 info2 = lf2.peek()
258 holder_info = lf2.peek()
262 lf2.attempt_lock()
263 self.addCleanup(lf2.unlock)
264 lf2.confirm()
274 holder_info = lf2.peek()
280 lf2.attempt_lock()
281 self.addCleanup(lf2.unlock)
282 lf2.confirm()
[all …]
/dports/java/jfreechart/jfreechart-1.0.17/tests/org/jfree/chart/axis/
H A DPeriodAxisLabelInfoTest.java91 Font lf2 = new Font("SansSerif", Font.BOLD, 9); in testEquals() local
117 info1 = new PeriodAxisLabelInfo(c2, df2, sp2, lf2, lp1, b1, s1, dp1); in testEquals()
119 info2 = new PeriodAxisLabelInfo(c2, df2, sp2, lf2, lp1, b1, s1, dp1); in testEquals()
122 info1 = new PeriodAxisLabelInfo(c2, df2, sp2, lf2, lp2, b1, s1, dp1); in testEquals()
124 info2 = new PeriodAxisLabelInfo(c2, df2, sp2, lf2, lp2, b1, s1, dp1); in testEquals()
127 info1 = new PeriodAxisLabelInfo(c2, df2, sp2, lf2, lp2, b2, s1, dp1); in testEquals()
129 info2 = new PeriodAxisLabelInfo(c2, df2, sp2, lf2, lp2, b2, s1, dp1); in testEquals()
132 info1 = new PeriodAxisLabelInfo(c2, df2, sp2, lf2, lp2, b2, s2, dp1); in testEquals()
134 info2 = new PeriodAxisLabelInfo(c2, df2, sp2, lf2, lp2, b2, s2, dp1); in testEquals()
137 info1 = new PeriodAxisLabelInfo(c2, df2, sp2, lf2, lp2, b2, s2, dp2); in testEquals()
[all …]
/dports/devel/p5-Future/Future-0.47/t/
H A D40mutex.t47 my $lf2 = $mutex->enter( sub { $f2 = t::Future::Subclass->new } );
50 isa_ok( $lf2, "t::Future::Subclass", '$lf2' );
52 is_oneref( $lf2, '$lf2 has one ref' );
60 ok( $lf2->is_ready, 'second locked future ready after $f2->done' );
67 is_oneref( $lf2, '$lf2 has one ref at EOT' );
78 my $lf2 = $mutex->enter( sub { $f2 = Future->new } );
87 ok( $lf2->is_ready, 'second locked future ready after $f2->done' );
/dports/net/liblinphone/linphone-3.12.0/tester/
H A Dvcard_tester.c277 LinphoneFriend *lf2 = NULL; in friends_sqlite_storage() local
328 BC_ASSERT_PTR_NOT_NULL(lf2->lc); in friends_sqlite_storage()
742 LinphoneFriend *lf2 = NULL; in carddav_integration() local
803 linphone_friend_unref(lf2); in carddav_integration()
931 linphone_friend_unref(lf2); in carddav_server_to_client_and_client_to_sever_sync()
959 LinphoneFriend *lf2 = NULL; in find_friend_by_ref_key_test() local
964 BC_ASSERT_PTR_NOT_NULL(lf2); in find_friend_by_ref_key_test()
965 if (!lf2) { in find_friend_by_ref_key_test()
1023 LinphoneFriend *lf2; in find_friend_by_ref_key_empty_list_test() local
1025 BC_ASSERT_PTR_NULL(lf2); in find_friend_by_ref_key_empty_list_test()
[all …]
/dports/lang/nwcc/nwcc_0.8.3/tests/
H A Dstruct_value_init.c22 struct trash lf2 = { 456 }; in main() local
23 struct trash lol = x? lf: lf2; in main()
26 struct trash3 three0 = { 111, lf2 }; in main()
40 printf("%d\n", lf2.x); in main()
H A Daggbug.c17 struct trash lf2 = { 456 }; in main() local
18 struct trash lol = x? lf: lf2; in main()
/dports/math/libpgmath/flang-d07daf3/test/f90_correct/src/
H A Dim00.f55 lf2() = i7 .eq. d3 + 4
84 lrslts(15) = lf2()
93 if (lf() .or. .not. lf2() .or. lf3()) rslts(20) = 2
94 if (lf2() .and. lf()) rslts(21) = 2
H A Dim10.f34 logical and, l1, l2, lf1, lf2, lf3, lf4 local
63 lf2(cc) = real(cc) .gt. 0.0 .or. aimag(cc) .gt. 0
107 lrslts(25) = lf2( cc )
108 lrslts(26) = lf2( - cc )
116 if (x2 .eq. 2.0 .and. lf2( (-1.0, 1.0) )) rslts(29) = 1
/dports/textproc/scim-openvanilla/openvanilla-0.7.2.20070514/Loaders/Win32/OVIME/
H A DUtils.cpp98 LOGFONT lf2; in RefreshUI() local
135 memcpy( &lf2, lfptr, sizeof( lf2) ); in RefreshUI()
143 CompY = ptSrc.y + abs(lf2.lfHeight)*localDPIY/tm.tmDigitizedAspectY; in RefreshUI()
156 CandY= ptSrc.y + abs(lf2.lfHeight)*localDPIY/tm.tmDigitizedAspectY; in RefreshUI()
/dports/textproc/openvanilla-framework/openvanilla-0.7.2.20070514/Loaders/Win32/OVIME/
H A DUtils.cpp98 LOGFONT lf2;
135 memcpy( &lf2, lfptr, sizeof( lf2) );
143 CompY = ptSrc.y + abs(lf2.lfHeight)*localDPIY/tm.tmDigitizedAspectY;
156 CandY= ptSrc.y + abs(lf2.lfHeight)*localDPIY/tm.tmDigitizedAspectY;
/dports/finance/R-cran-ccgarch/ccgarch/R/
H A Dloglik_dcc.R25 lf2 <- numeric(nobs) functionVar
30 lf2[i] <- -0.5*(log(det(R)) +sum(tmpz*crossprod(invR, tmpz)))
32 sum(lf1 + lf2)
H A Dgrad_dcc2.R19 lf2 <- numeric(ndim) functionVar
29 lf2[i] <- 0.5*(log(det(R2)) +sum(dvar[i,]*crossprod(invR2, dvar[i,])))
31 c(sum((lf1 - lf)/d), sum((lf2 - lf)/d) )
H A Ddcc_estimation.R58 lf2 <- numeric(nobs) functionVar
62 lf2[i] <- -0.5*(log(det(R)) +sum(std.resid[i,]*crossprod(invR, std.resid[i,])))
64 loglik <- sum(lf1 + lf2)
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/Test/System.Web.UI/
H A DLosFormatterTest.cs70 LosFormatter lf2 = new LosFormatter (true, (byte []) null); in Ctor_BoolByteArray()
71 Assert.AreEqual (expected, NoKeyRoundTrip (lf2, "true, null"), "2"); in Ctor_BoolByteArray()
94 LosFormatter lf2 = new LosFormatter (true, (string) null); in Ctor_BoolString()
95 Assert.AreEqual (expected, NoKeyRoundTrip (lf2, "true, null"), "2"); in Ctor_BoolString()
145 LosFormatter lf2 = new LosFormatter (true, (string) null); in SerializeOverloads()
146 string r2 = SerializeOverloads (lf2, "true, null"); in SerializeOverloads()
/dports/emulators/ppsspp/ppsspp-1.12.3/ext/glslang/Test/
H A Dhlsl.rw.vec2.bracket.frag73 float2 lf2 = uf2;
78 g_tTex1df2[c1] = lf2;
96 g_tTex2df2[c2] = lf2;
102 g_tTex3df2[c3] = lf2;
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/ext/glslang/Test/
H A Dhlsl.rw.vec2.bracket.frag73 float2 lf2 = uf2;
78 g_tTex1df2[c1] = lf2;
96 g_tTex2df2[c2] = lf2;
102 g_tTex3df2[c3] = lf2;
/dports/emulators/mess/mame-mame0226/3rdparty/bgfx/3rdparty/glslang/Test/
H A Dhlsl.rw.vec2.bracket.frag73 float2 lf2 = uf2;
78 g_tTex1df2[c1] = lf2;
96 g_tTex2df2[c2] = lf2;
102 g_tTex3df2[c3] = lf2;
/dports/emulators/mame/mame-mame0226/3rdparty/bgfx/3rdparty/glslang/Test/
H A Dhlsl.rw.vec2.bracket.frag73 float2 lf2 = uf2;
78 g_tTex1df2[c1] = lf2;
96 g_tTex2df2[c2] = lf2;
102 g_tTex3df2[c3] = lf2;
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/ext/glslang/Test/
H A Dhlsl.rw.vec2.bracket.frag73 float2 lf2 = uf2;
78 g_tTex1df2[c1] = lf2;
96 g_tTex2df2[c2] = lf2;
102 g_tTex3df2[c3] = lf2;
/dports/graphics/waifu2x-ncnn-vulkan/waifu2x-ncnn-vulkan-20210521/src/ncnn/glslang/Test/
H A Dhlsl.rw.vec2.bracket.frag73 float2 lf2 = uf2;
78 g_tTex1df2[c1] = lf2;
96 g_tTex2df2[c2] = lf2;
102 g_tTex3df2[c3] = lf2;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/glslang/src/Test/
H A Dhlsl.rw.vec2.bracket.frag73 float2 lf2 = uf2;
78 g_tTex1df2[c1] = lf2;
96 g_tTex2df2[c2] = lf2;
102 g_tTex3df2[c3] = lf2;

12345678910>>...12