Home
last modified time | relevance | path

Searched refs:lig (Results 1 – 25 of 2029) sorted by relevance

12345678910>>...82

/dports/biology/molden/molden5.8/test/
H A Ddock_lig.mol211 1 C 97.8156 -11.0822 -22.2908 C.3 1 lig 0.000
12 2 C 96.7137 -12.0351 -21.8152 C.3 1 lig 0.000
13 3 C 97.2019 -13.4825 -21.9005 C.3 1 lig 0.000
14 4 C 98.4732 -13.6661 -21.0727 C.3 1 lig 0.000
15 5 C 99.5708 -12.7145 -21.5428 C.3 1 lig 0.000
16 6 C 99.0815 -11.2703 -21.4601 C.3 1 lig 0.000
17 7 C 96.3473 -11.6972 -20.3717 C.3 1 lig 0.000
18 8 C 95.2731 -12.6406 -19.8420 C.3 1 lig 0.000
19 9 C 95.7739 -14.0852 -19.9255 C.3 1 lig 0.000
20 10 C 96.1225 -14.4330 -21.3714 C.3 1 lig 0.000
[all …]
/dports/x11-wm/enlightenment/enlightenment-0.24.2/src/bin/system/
H A De_system_backlight.c20 else if (nval > lig->max) nval = lig->max; in _light_set()
35 sysctlbyname(lig->dev, NULL, NULL, &(lig->val), sizeof(lig->val)); in _light_set()
52 sysctlbyname(lig->dev, &(lig->val), &plen, NULL, 0); in _light_get()
92 lig->val = lig->val_set; in _cb_worker()
93 _light_set(lig, lig->val); in _cb_worker()
108 val = ((1000 * lig->val) + 500) / lig->max; in _cb_worker_message()
114 free(lig); in _cb_worker_message()
155 if (lig->max <= 0) lig->max = 255; in _light_add()
159 sysctlbyname(lig->dev, &(lig->val), &plen, NULL, 0); in _light_add()
166 lig->val_set = lig->max; in _light_add()
[all …]
/dports/graphics/birdfont/birdfont-2.29.5/libbirdfont/
H A DLigatures.vala55 GlyphSequence lig;
81 iter (gs, lig);
104 ContextualLigature lig;
113 lig.backtrack = text;
127 ContextualLigature lig;
136 lig.input = text;
159 lig.lookahead = text;
173 Ligature lig;
178 lig.set_ligature ();
191 lig.ligatures = text;
[all …]
/dports/print/texlive-base/texlive-20150521-source/texk/ttf2pk2/
H A Dligkern.c216 lig *lig; in checkligkern() local
228 for (lig = ti->ligs; lig; lig = lig->next) in checkligkern()
232 if (lig == NULL) in checkligkern()
234 lig = newlig(); in checkligkern()
235 lig->succ = newstring(mlist[1]); in checkligkern()
236 lig->next = ti->ligs; in checkligkern()
237 ti->ligs = lig; in checkligkern()
239 lig->sub = newstring(mlist[3]); in checkligkern()
240 lig->op = op; in checkligkern()
244 lig->boundleft = 1; in checkligkern()
[all …]
/dports/print/freetype/freetype-1.3.1/contrib/ttf2pk/
H A Dligkern.c212 lig *lig; in checkligkern() local
224 for (lig = ti->ligs; lig; lig = lig->next) in checkligkern()
228 if (lig == NULL) in checkligkern()
230 lig = newlig(); in checkligkern()
231 lig->succ = newstring(mlist[1]); in checkligkern()
232 lig->next = ti->ligs; in checkligkern()
233 ti->ligs = lig; in checkligkern()
235 lig->sub = newstring(mlist[3]); in checkligkern()
236 lig->op = op; in checkligkern()
240 lig->boundleft = 1; in checkligkern()
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/stdfx/
H A Digs_color_rgb_hls.cpp6 double &lig, /* 0.0...1.0 lightness(明度) */ in rgb_to_hls() argument
14 lig = (maxi + mini) / 2.0; in rgb_to_hls()
20 if (lig <= 0.5) { in rgb_to_hls()
76 const double lig, /* 0.0...1.0 lightness(明度) */ in hls_to_rgb() argument
83 red = gre = blu = lig; in hls_to_rgb()
86 (lig <= 0.5) ? (lig * (1.0 + sat)) : (lig + sat - lig * sat); in hls_to_rgb()
87 const double m1 = 2.0 * lig - m2; in hls_to_rgb()
H A Digs_hls_add.cpp13 double hue, lig, sat, alp; in pixel_rgba_() local
14 igs::color::rgb_to_hls(red_in, gre_in, blu_in, hue, lig, sat); in pixel_rgba_()
27 lig += lig_noise; in pixel_rgba_()
28 lig = (lig < 0.0) ? 0.0 : ((1.0 < lig) ? 1.0 : lig); in pixel_rgba_()
39 igs::color::hls_to_rgb(hue, lig, sat, red_out, gre_out, blu_out); in pixel_rgba_()
244 double lig = in change_template_() local
246 lig = (lig < 0.0) ? 0.0 : ((1.0 < lig) ? 1.0 : lig); in change_template_()
249 image_array[0] = static_cast<IT>(lig * mul_val); in change_template_()
H A Digs_hls_noise_in_camera.cpp361 double hue, lig, sat; in pixel_rgb() local
377 lig += lignoise * alp_in; in pixel_rgb()
378 if (lig < 0.0) { in pixel_rgb()
379 lig = 0.0; in pixel_rgb()
380 } else if (1.0 < lig) { in pixel_rgb()
381 lig = 1.0; in pixel_rgb()
486 lig += shift_value; in change_template_()
487 lig += lig_noise; in change_template_()
488 if (lig < 0.0) { in change_template_()
489 lig = 0.0; in change_template_()
[all …]
H A Digs_hls_adjust.cpp23 double hue, lig, sat; in pixel_rgba_() local
24 igs::color::rgb_to_hls(red_in, gre_in, blu_in, hue, lig, sat); in pixel_rgba_()
44 lig -= lig_pivot; in pixel_rgba_()
45 lig *= lig_scale; in pixel_rgba_()
46 lig += lig_pivot; in pixel_rgba_()
47 lig += lig_shift; in pixel_rgba_()
48 lig = (lig < 0.0) ? 0.0 : ((1.0 < lig) ? 1.0 : lig); in pixel_rgba_()
57 igs::color::hls_to_rgb(hue, lig, sat, red_out, gre_out, blu_out); in pixel_rgba_()
/dports/cad/astk-serveur/astk-2020.0/ASTK_CLIENT/lib/
H A Dihm_satellite.tcl39 set lig 0
47 incr lig
55 incr lig
63 incr lig
72 incr lig
74 incr lig
78 incr lig
83 incr lig
85 grid $astk::ihm(satellite).subtit.lv0 -row $lig -column 0
89 incr lig
[all …]
/dports/cad/astk-client/astk-2020.0/ASTK_CLIENT/lib/
H A Dihm_satellite.tcl39 set lig 0
47 incr lig
55 incr lig
63 incr lig
72 incr lig
74 incr lig
78 incr lig
83 incr lig
85 grid $astk::ihm(satellite).subtit.lv0 -row $lig -column 0
89 incr lig
[all …]
/dports/math/curv/curv-0.5/examples/tests/
H A Dsf1.curv10 lig = normalize[-0.4, 0.6, 0.7];
12 dif = clamp[dot[nor, lig], 0, 1];
13 bac = clamp[dot[nor, normalize[-lig.[X], lig.[Y], 0]], 0, 1]
17 spe = clamp[dot[ref, lig], 0, 1] ^ 16;
38 vec3 lig = normalize( vec3(-0.4, 0.6, 0.7) );
40 float dif = clamp( dot( nor, lig ), 0.0, 1.0 );
41 …float bac = clamp( dot( nor, normalize(vec3(-lig.x,lig.y,0.0))), 0.0, 1.0 )*clamp( 1.0-pos.z,0.0,1…
44 float spe = pow(clamp( dot( ref, lig ), 0.0, 1.0 ),16.0);
/dports/science/py-pymol/pymol-open-source-2.4.0/modules/pymol/
H A Dpreset.py108 lig = "_preset_lig"
115 util.cbc(lig,_self=cmd)
120 cmd.show("sticks",lig)
124 if cmd.count_atoms(lig):
134 if cmd.count_atoms(lig):
139 cmd.delete(lig)
190 lig = "_preset_lig"
199 util.cbc(lig,_self=cmd)
209 cmd.show("sticks",lig)
213 if cmd.count_atoms(lig):
[all …]
/dports/science/agrum/aGrUM-29e540d8169268e8fe5d5c69bc4b2b1290f12320/src/agrum/BN/io/UAI/
H A DUAIBNReader_tpl.h108 auto lig = [&]() -> int { in buildFromQuartets()
116 if (!isInt()) this->_addFatalError_(lig(), col(), "int expected"); in buildFromQuartets()
124 if (current >= max) this->_addFatalError_(lig(), col(), "Not enough data in UAI file"); in buildFromQuartets()
140 _addWarning_(lig(), col(), "Number of CPTs should be the same as number of nodes"); in buildFromQuartets()
146 if (nbrPar == 0) _addError_(lig(), col(), "0 is not possible here"); in buildFromQuartets()
159 if (s.contains(nodePot)) _addError_(lig(), col(), "Parents already defined"); in buildFromQuartets()
172 _addFatalError_(lig(), col(), "Size does not fit between parents and parameters"); in buildFromQuartets()
181 if (current != max - 1) _addError_(lig(), col(), "Too many data in this file"); in buildFromQuartets()
270 _parser_->errors().addError(s, _streamName_, lig, col); in _addFatalError_()
275 _parser_->errors().addError(s, _streamName_, lig, col); in _addError_()
[all …]
/dports/science/agrum/aGrUM-29e540d8169268e8fe5d5c69bc4b2b1290f12320/src/agrum/MN/io/UAI/
H A DUAIMNReader_tpl.h110 auto lig = [&]() -> int { in buildFromQuartets()
118 if (!isInt()) this->_addFatalError_(lig(), col(), "int expected"); in buildFromQuartets()
126 if (current >= max) this->_addFatalError_(lig(), col(), "Not enough data in UAI file"); in buildFromQuartets()
135 if (mod < 2) _addError_(lig(), col(), "Number of modalities should be greater than 2."); in buildFromQuartets()
146 if (nbrVar == 0) _addError_(lig(), col(), "0 is not possible here"); in buildFromQuartets()
152 if (nod >= nbrNode) _addError_(lig(), col(), "Not enough variables in the MarkovNet"); in buildFromQuartets()
163 _addFatalError_(lig(), col(), "Size does not fit between clique and parameters"); in buildFromQuartets()
174 if (current != max - 1) _addError_(lig(), col(), "Too many data in this file"); in buildFromQuartets()
263 _parser_->errors().addError(s, _streamName_, lig, col); in _addFatalError_()
269 _parser_->errors().addError(s, _streamName_, lig, col); in _addError_()
[all …]
/dports/biology/iqtree/IQ-TREE-2.0.6/utils/
H A Dbionj.h133 int lig; /* matrix line */ in Initialize() local
139 for(lig=1; lig <= n; lig++) in Initialize()
154 trees[lig].head=name; in Initialize()
155 trees[lig].tail=name; in Initialize()
161 delta[lig][col]=distance; in Initialize()
227 for(lig=1; lig <= n; lig++) in Symmetrize()
229 for(col=1; col< lig; col++) in Symmetrize()
231 if(delta[lig][col] != delta[col][lig]) in Symmetrize()
233 value= (delta[lig][col]+delta[col][lig])/2; in Symmetrize()
234 delta[lig][col]=value; in Symmetrize()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/output_stream/src/fortran/
H A Dstrdsp.f13 subroutine strdsp(mat,d,lig,col,ll,lunit,iw,cw) argument
47 integer mat(*),d(*),lig,col,ll,lunit,iw(*) local
54 if(lig*col.gt.1) dl='!'
64 if (col.eq.0.or.lig.eq.0) return
71 do 10 i=1,lig
108 do 60 l=1,lig
112 ldg=(k-1)*lig+l
149 if(l.ne.lig) then
/dports/science/openbabel/openbabel-3.1.1/test/pdb_ligands_sdf/
H A Dfetch.py4 pdb,lig = line.rstrip().split() variable
5 print(pdb,lig)
6 …tructIdList=%s&instanceType=all&excludeUnobserved=false&includeHydrogens=false'%(lig,pdb),bar=None)
7 os.rename(fname, '%s_%s.sdf'%(pdb,lig))
/dports/mail/thunderbird-dictionaries/dictionaries/spell-de-AT.xpi/
H A Dde-AT.aff114 SFX A lig elig [^aeiouhlr���]lig
115 SFX A lig elige [^aeiouhlr���]lig
116 SFX A lig eliger [^aeiouhlr���]lig
117 SFX A lig eligen [^aeiouhlr���]lig
118 SFX A lig eligem [^aeiouhlr���]lig
119 SFX A lig eliges [^aeiouhlr���]lig
160 SFX C lig eligere [^aeiouhlr���]lig
161 SFX C lig eligerer [^aeiouhlr���]lig
162 SFX C lig eligeren [^aeiouhlr���]lig
163 SFX C lig eligerem [^aeiouhlr���]lig
[all …]
/dports/mail/thunderbird-dictionaries/dictionaries/spell-de-CH.xpi/
H A Dde-CH.aff114 SFX A lig elig [^aeiouhlr���]lig
115 SFX A lig elige [^aeiouhlr���]lig
116 SFX A lig eliger [^aeiouhlr���]lig
117 SFX A lig eligen [^aeiouhlr���]lig
118 SFX A lig eligem [^aeiouhlr���]lig
119 SFX A lig eliges [^aeiouhlr���]lig
160 SFX C lig eligere [^aeiouhlr���]lig
161 SFX C lig eligerer [^aeiouhlr���]lig
162 SFX C lig eligeren [^aeiouhlr���]lig
163 SFX C lig eligerem [^aeiouhlr���]lig
[all …]
/dports/mail/thunderbird-dictionaries/dictionaries/spell-de-DE.xpi/
H A Dde-DE.aff114 SFX A lig elig [^aeiouhlr���]lig
115 SFX A lig elige [^aeiouhlr���]lig
116 SFX A lig eliger [^aeiouhlr���]lig
117 SFX A lig eligen [^aeiouhlr���]lig
118 SFX A lig eligem [^aeiouhlr���]lig
119 SFX A lig eliges [^aeiouhlr���]lig
160 SFX C lig eligere [^aeiouhlr���]lig
161 SFX C lig eligerer [^aeiouhlr���]lig
162 SFX C lig eligeren [^aeiouhlr���]lig
163 SFX C lig eligerem [^aeiouhlr���]lig
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/dimg/filters/bw/
H A Dtonalityfilter.cpp82 int hue, sat, lig; in filterImage() local
85 mask.getHSL(&hue, &sat, &lig); in filterImage()
95 lig = lround(0.3 * ptr[2] + 0.59 * ptr[1] + 0.11 * ptr[0]); in filterImage()
97 mask.setHSL(hue, sat, lig, sixteenBit); in filterImage()
120 lig = lround(0.3 * ptr[2] + 0.59 * ptr[1] + 0.11 * ptr[0]); in filterImage()
122 mask.setHSL(hue, sat, lig, sixteenBit); in filterImage()
/dports/games/ponscripter-07th-mod/ponscripter-fork-3.0.0/src/
H A Dencoding.cpp208 const ligature* lig = ligs.find(string, fi); in Charsz_impl() local
209 return lig ? lig->seqlen : 1; in Charsz_impl()
216 const ligature* lig = ligs.find(string, fi); in Charsz_impl() local
217 if (lig) return lig->seqlen; in Charsz_impl()
269 const ligature* lig = ligs.find(string, fi); in Decode_impl() local
270 if (lig) { in Decode_impl()
271 bytes = lig->seqlen; in Decode_impl()
272 return lig->codepoint; in Decode_impl()
294 if (lig) { in Decode_impl()
295 bytes = lig->seqlen; in Decode_impl()
[all …]
/dports/german/hunspell/igerman98-20161207/myspell/
H A Dde_all.aff.in123 SFX A lig elig [^aeiouhlr���]lig
124 SFX A lig elige [^aeiouhlr���]lig
125 SFX A lig eliger [^aeiouhlr���]lig
126 SFX A lig eligen [^aeiouhlr���]lig
127 SFX A lig eligem [^aeiouhlr���]lig
128 SFX A lig eliges [^aeiouhlr���]lig
168 SFX C lig eligere [^aeiouhlr���]lig
169 SFX C lig eligerer [^aeiouhlr���]lig
170 SFX C lig eligeren [^aeiouhlr���]lig
171 SFX C lig eligerem [^aeiouhlr���]lig
[all …]
/dports/german/aspell/igerman98-20161207/myspell/
H A Dde_all.aff.in123 SFX A lig elig [^aeiouhlr���]lig
124 SFX A lig elige [^aeiouhlr���]lig
125 SFX A lig eliger [^aeiouhlr���]lig
126 SFX A lig eligen [^aeiouhlr���]lig
127 SFX A lig eligem [^aeiouhlr���]lig
128 SFX A lig eliges [^aeiouhlr���]lig
168 SFX C lig eligere [^aeiouhlr���]lig
169 SFX C lig eligerer [^aeiouhlr���]lig
170 SFX C lig eligeren [^aeiouhlr���]lig
171 SFX C lig eligerem [^aeiouhlr���]lig
[all …]

12345678910>>...82