Home
last modified time | relevance | path

Searched refs:_F (Results 251 – 275 of 6179) sorted by relevance

1...<<11121314151617181920>>...248

/dports/astro/py-ro/RO-3.6.9/python/RO/Astro/llv/
H A Dgeoc.py13 _F = 1.0/298.257 variable
14 _B = (1.0-_F)**2
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libigl/igl/opengl/glfw/
H A Dmap_texture.cpp16 const Eigen::MatrixBase<DerivedF> & _F, in map_texture() argument
27 return map_texture(_V,_F,_U,in_data,w,h,nc,out_data,out_w,out_h,out_nc); in map_texture()
34 const Eigen::MatrixBase<DerivedF> & _F, in map_texture() argument
66 Eigen::RowMajor> F = _F.template cast<int>(); in map_texture()
/dports/graphics/wings/libigl-2.1.0/include/igl/opengl/glfw/
H A Dmap_texture.cpp16 const Eigen::MatrixBase<DerivedF> & _F, in map_texture() argument
27 return map_texture(_V,_F,_U,in_data,w,h,nc,out_data,out_w,out_h,out_nc); in map_texture()
34 const Eigen::MatrixBase<DerivedF> & _F, in map_texture() argument
66 Eigen::RowMajor> F = _F.template cast<int>(); in map_texture()
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/
H A Dtyping_extensions.pyi37 _F = TypeVar("_F", bound=Callable[..., Any])
50 def final(f: _F) -> _F: ...
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/cpu/z80/
H A Dz80ops.h1243 OP(ed,40) { _B = IN(_BC); _F = (_F & CF) | SZP[_B]; } /* IN B,(C) */
1252 OP(ed,48) { _C = IN(_BC); _F = (_F & CF) | SZP[_C]; } /* IN C,(C) */
1261 OP(ed,50) { _D = IN(_BC); _F = (_F & CF) | SZP[_D]; } /* IN D,(C) */
1270 OP(ed,58) { _E = IN(_BC); _F = (_F & CF) | SZP[_E]; } /* IN E,(C) */
1279 OP(ed,60) { _H = IN(_BC); _F = (_F & CF) | SZP[_H]; } /* IN H,(C) */
1288 OP(ed,68) { _L = IN(_BC); _F = (_F & CF) | SZP[_L]; } /* IN L,(C) */
1297 OP(ed,70) { UINT8 res = IN(_BC); _F = (_F & CF) | SZP[res]; } /* IN 0,(C) */
1306 OP(ed,78) { _A = IN(_BC); _F = (_F & CF) | SZP[_A]; } /* IN E,(C) */
1643 OP(op,2f) { _A ^= 0xff; _F = (_F&(SF|ZF|PF|CF))|HF|NF|(_A&(YF|XF)); } /* CPL */
1652 OP(op,37) { _F = (_F & (SF|ZF|PF)) | CF | (_A & (YF|XF)); } /* SCF */
[all …]
/dports/math/pari/pari-2.13.3/src/functions/number_fields/
H A Dbnflog6 a prime number. Return the logarithmic l-class group Cl~_F.
9 the logarithmic $\ell$-class group $\widetilde{Cl}_F$
17 \item $D$ is the vector of elementary divisors for $\widetilde{Cl}_F$.
/dports/graphics/xournalpp/xournalpp-1.1.0/src/control/
H A DXournalMain.cpp119 … return {MigrateStatus::Success, FS(_F(msg) % oldPath.u8string() % newConfigPath.u8string())}; in migrateSettings()
126 … FS(_F(msg) % oldPath.u8string() % newConfigPath.u8string() % except.what())}; in migrateSettings()
156 …msg += FS(_F("You're using \"{1}/{2}\" branch. Send Bugreport will direct you to this repo's issue… in checkForErrorlog()
159 msg += FS(_F("The most recent log file name: {1}") % errorList[0].string()); in checkForErrorlog()
187 msg = FS(_F("Errorlog cannot be deleted. You have to do it manually.\nLogfile: {1}") % in checkForErrorlog()
446 …string msg = FS(_F("Missing the needed UI file:\n{1}\n .app corrupted?\nPath: {2}") % relativePath… in initResourcePath()
464 …string msg = FS(_F("<span foreground='red' size='x-large'>Missing the needed UI file:\n<b>{1}</b><… in initResourcePath()
557 string msg = FS(_F("Sorry, Xournal++ cannot open remote files at the moment.\n" in on_startup()
/dports/misc/ezc3d/ezc3d-Release_1.4.6/src/modules/
H A DForcePlatforms.cpp82 return _F.size(); in nbFrames()
115 return _F; in forces()
358 _F.resize(nFramesTotal); in extractData()
382 _F[cmp] = _refFrame * force_raw; in extractData()
385 _M[cmp] = _F[cmp].cross(_CoP[cmp]) - _Tz[cmp]; in extractData()
424 _F[cmp] = _refFrame * force_raw; in extractData()
/dports/math/R-cran-NMF/NMF/man/
H A DSNMF-nmf.Rd59 WH ||_F^2 + \eta ||W||_F^2 + \beta (\sum_{j=1}^p
61 \end{array} }{ min_{W,H} 1/2 (|| A - WH ||_F^2 + eta
62 ||W||_F^2 + beta (sum_j ||H[,j]||_1^2))
H A Dfcnnls.Rd56 \deqn{ \begin{array}{l} \min \|Y - X K\|_F\\ \mbox{s.t. }
57 K>=0 \end{array} }{min ||Y - X K||_F, s.t. K>=0}
61 x r} respectively, and \eqn{\|.\|_F}{|.|_F} is the
81 squares problem, i.e. \eqn{\min \|Y - X K\|_F^2}{min ||Y
82 - X K||_F^2} , so as to determine the initial passive
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/
H A Dtyping_extensions.pyi30 _F = TypeVar("_F", bound=Callable[..., Any])
43 def final(f: _F) -> _F: ...
/dports/graphics/xournalpp/xournalpp-1.1.0/src/control/jobs/
H A DAutosaveJob.cpp15 string msg = FS(_F("Error while autosaving: {1}") % this->error); in afterRun()
42 g_message("%s", FS(_F("Autosaving to {1}") % filepath.string()).c_str()); in run()
/dports/math/linbox/linbox-1.6.3/linbox/matrix/matrixdomain/
H A Dopencl-domain.inl77 _F,
272 _F,
727 _F.one,
929 _F.one,
1098 Operand3>()(D,_F.one,C,_F.one,A,B);
1293 Operand3>()(D,_F.one,C,_F.one,A,B);
1486 return muladdin<Operand1,Operand2,Operand3>(_F.one,C,_F.one,A,B);
1549 Operand3>()(D,_F.one,C,_F.mOne,A,B);
1744 Operand3>()(D,_F.one,C,_F.mOne,A,B);
2003 Operand3>()(D,_F.mOne,C,_F.one,A,B);
[all …]
/dports/math/maxima/maxima-5.43.2/share/contrib/diffequations/
H A Dode1_lie.mac135 [_F:gen[1],_H:gen[2],dydt:%Ax*y/%A,dudt:%A],
136 [_F, ratsimp(_F*dydt+_H*dudt)]
160 [_F:gen[1],_H:gen[2],dydt,dudt,_xi,_eta],
161 _xi:_F,
164 _eta: _F*dydt+_H*dudt,
181 [ _F, _H, _xi, _eta, u ],
211 _F:radcan(gen[1]),
213 _xi:_F,
215 _eta: ratsimp(( _H - _F*%px*y )/%p),
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbitmq_top/src/
H A Drabbit_top_util.erl135 guess_initial_call({supervisor, _F, _A}) -> supervisor;
136 guess_initial_call({supervisor2, _F, _A}) -> supervisor;
137 guess_initial_call({cowboy_protocol, _F, _A}) -> cowboy_protocol;
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/@python2/
H A Dtyping.pyi39 _F = TypeVar("_F", bound=Callable[..., Any])
41 def final(f: _F) -> _F: ...
42 def overload(f: _F) -> _F: ...
67 def no_type_check(f: _F) -> _F: ...
68 def no_type_check_decorator(decorator: _F) -> _F: ...
493 def type_check_only(func_or_cls: _F) -> _F: ...
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/@python2/
H A Dtyping.pyi39 _F = TypeVar("_F", bound=Callable[..., Any])
41 def final(f: _F) -> _F: ...
42 def overload(f: _F) -> _F: ...
67 def no_type_check(f: _F) -> _F: ...
68 def no_type_check_decorator(decorator: _F) -> _F: ...
493 def type_check_only(func_or_cls: _F) -> _F: ...
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/hipe/icode/
H A Dhipe_icode_callgraph.erl117 {M, _F, _A} = hipe_icode:call_fun(I),
125 {M, _F, _A} = hipe_icode:enter_fun(I),
148 get_local_calls([{{_M, _F, _A} = MFA, Icode}|Left], RemoveFun, Acc) ->
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/hipe/icode/
H A Dhipe_icode_callgraph.erl117 {M, _F, _A} = hipe_icode:call_fun(I),
125 {M, _F, _A} = hipe_icode:enter_fun(I),
148 get_local_calls([{{_M, _F, _A} = MFA, Icode}|Left], RemoveFun, Acc) ->
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/hipe/icode/
H A Dhipe_icode_callgraph.erl117 {M, _F, _A} = hipe_icode:call_fun(I),
125 {M, _F, _A} = hipe_icode:enter_fun(I),
148 get_local_calls([{{_M, _F, _A} = MFA, Icode}|Left], RemoveFun, Acc) ->
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbit/src/
H A Dcode_server_cache.erl42 handle_call({maybe_call_mfa, {Mod, _F, _A, _D} = MFA}, _From, #state{modules = ModuleMap} = State0)…
63 handle_maybe_call_mfa(false, {_M, _F, _A, Default}, State) ->
/dports/biology/infernal/infernal-1.1.3/testsuite/
H A Dsrp-euk.sto14 ZEA.M._F ..NCC.gAGCUC.uguagcgaGAGCUuguaa.CCUa...ag.....cGGG
15 #=GR ZEA.M._F SS ...>>..>>>>>.........<<<<<......>>>............<<<
90 ZEA.M._F GGCauuaAGGUGGUGuggaUGUUUc.cuGAcgga....UUCUGggcc.ug
91 #=GR ZEA.M._F SS <<.....>>>>>>>>....>>>>>....>>........>>>>>.......
166 ZEA.M._F ...GGCUUG.uaugUgccacuggcCGGCCUGcCcgUUCCAagUUG.GuuG
167 #=GR ZEA.M._F SS ...>>>>>>.....>.........>>>>>>>.>..>>>>>..>>>.>..>
242 ZEA.M._F u...ggCUGgu.GGGG.cucgGGCgaagGCCugg.gcCUCUuUAGa.Ccu
243 #=GR ZEA.M._F SS ......>>>...>>>>.....>>>....<<<......<<<<.<<<..>..
318 ZEA.M._F gaaGcGGCAGgcauggCGugaggCUGgcuucaCAGagcagCGaucaCUcG
470 ZEA.M._F aacucggu.c.CAGAG..ccUCauu.AAACAgacCACCAUCUuu
[all …]
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/stdlib/src/
H A Dio_lib_fread.erl122 fread([_F|_Format], [_C|_Line], _N, _Results) ->
167 fread1([$l|Format], _F, Sup, _U, Line, N, Res, _AllFormat) ->
169 fread1(_Format, _F, _Sup, _U, [], N, Res, AllFormat) ->
172 fread1(_Format, _F, _Sup, _U, eof, 0, [], _AllFormat) ->
175 fread1(_Format, _F, _Sup, _U, eof, _N, _Res, _AllFormat) ->
199 fread1([$-|Format], _F, Sup, false, Line, N, Res) ->
246 fread1([$~|Format], _F, _Sup, _U, [$~|Line], N, Res) ->
248 fread1(_Format, _F, _Sup, _U, _Line, _N, _Res) ->
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/stdlib/src/
H A Dio_lib_fread.erl122 fread([_F|_Format], [_C|_Line], _N, _Results) ->
167 fread1([$l|Format], _F, Sup, _U, Line, N, Res, _AllFormat) ->
169 fread1(_Format, _F, _Sup, _U, [], N, Res, AllFormat) ->
172 fread1(_Format, _F, _Sup, _U, eof, 0, [], _AllFormat) ->
175 fread1(_Format, _F, _Sup, _U, eof, _N, _Res, _AllFormat) ->
199 fread1([$-|Format], _F, Sup, false, Line, N, Res) ->
246 fread1([$~|Format], _F, _Sup, _U, [$~|Line], N, Res) ->
248 fread1(_Format, _F, _Sup, _U, _Line, _N, _Res) ->
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/stdlib/src/
H A Dio_lib_fread.erl122 fread([_F|_Format], [_C|_Line], _N, _Results) ->
167 fread1([$l|Format], _F, Sup, _U, Line, N, Res, _AllFormat) ->
169 fread1(_Format, _F, _Sup, _U, [], N, Res, AllFormat) ->
172 fread1(_Format, _F, _Sup, _U, eof, 0, [], _AllFormat) ->
175 fread1(_Format, _F, _Sup, _U, eof, _N, _Res, _AllFormat) ->
199 fread1([$-|Format], _F, Sup, false, Line, N, Res) ->
246 fread1([$~|Format], _F, _Sup, _U, [$~|Line], N, Res) ->
248 fread1(_Format, _F, _Sup, _U, _Line, _N, _Res) ->

1...<<11121314151617181920>>...248