Home
last modified time | relevance | path

Searched refs:los (Results 1 – 25 of 5714) sorted by relevance

12345678910>>...229

/dports/games/nazghul/nazghul-0.7.1/src/
H A Dlos.c29 extern int FLOODFILL_Init(struct los *los);
30 extern int ANGBAND_Init(struct los *los);
41 int (*init) (struct los * los);
49 struct los *los; in los_create() local
63 los = (struct los *) malloc(sizeof(struct los)); in los_create()
64 if (!los) in los_create()
67 memset(los, 0, sizeof(struct los)); in los_create()
69 los->w = w; in los_create()
95 void los_destroy(struct los *los) in los_destroy() argument
98 los->destroy(los); in los_destroy()
[all …]
H A Dfloodfill.c26 static void FLOODFILL_destroy(struct los *los) in FLOODFILL_destroy() argument
30 static int floodfillCheckDistance(struct los *los, int mx, int my) in floodfillCheckDistance() argument
39 if (los->r <= 0) in floodfillCheckDistance()
40 return (!(mx < 0 || mx >= los->w || my < 0 || my >= los->h)); in floodfillCheckDistance()
71 if (vx < 0 || vx >= los->w || vy < 0 || vy >= los->h) in FLOODFILL_computeRecursive()
90 if (!los->alpha[mindex] && ((vx != los->w / 2) || (vy != los->h / 2))) in FLOODFILL_computeRecursive()
107 static void FLOODFILL_compute(struct los *los) in FLOODFILL_compute() argument
112 len = los->w * los->h * sizeof(unsigned char); in FLOODFILL_compute()
118 FLOODFILL_computeRecursive(los, los->w / 2, los->h / 2, in FLOODFILL_compute()
119 los->w / 2, los->h / 2); in FLOODFILL_compute()
[all …]
H A Dangband.c678 void update_view(struct los *los) in update_view() argument
686 pg = los->h / 2 * los->w + los->w / 2; in update_view()
689 memset(los->vmask, 0, los->w * los->h); in update_view()
735 if (p->x > los->w / 2 || p->y > los->h / 2) in update_view()
751 if (g < 0 || g >= (los->w * los->h)) in update_view()
805 static void ANGBAND_destroy(struct los *los) in ANGBAND_destroy() argument
807 free(los->data); in ANGBAND_destroy()
810 static void ANGBAND_compute(struct los *los) in ANGBAND_compute() argument
812 update_view(los); in ANGBAND_compute()
813 los->vmask[(los->w * los->h) / 2] = 1; /* make center always in ANGBAND_compute()
[all …]
H A Dlos.h32 struct los { struct
87 void (*compute) (struct los * los); argument
96 void (*destroy) (struct los * los); argument
111 extern struct los *los_create(const char *algorithm, int width, int height,
117 extern void los_destroy(struct los *los);
/dports/games/libretro-prboom/libretro-prboom-cc80175/src/
H A Dp_sight.c151 P_DivlineSide(los.t2x, los.t2y, &divl)) in P_CrossSubsector()
158 (opentop < los.minz) || (openbottom > los.maxz)) in P_CrossSubsector()
181 if (los.topslope <= los.bottomslope) in P_CrossSubsector()
206 side2 = R_PointOnSide(los.t2x, los.t2y, bsp); in P_CrossBSPNode_LxDoom()
298 los.topslope = (los.bottomslope = t2->z - (los.sightzstart = in P_CheckSight()
301 los.strace.dx = (los.t2x = t2->x) - (los.strace.x = t1->x); in P_CheckSight()
302 los.strace.dy = (los.t2y = t2->y) - (los.strace.y = t1->y); in P_CheckSight()
320 los.maxz = t2->z + t2->height; los.minz = los.sightzstart; in P_CheckSight()
322 los.maxz = los.sightzstart; los.minz = t2->z; in P_CheckSight()
324 los.maxz = t2->z + t2->height; los.minz = t2->z; in P_CheckSight()
[all …]
/dports/games/prboom/prboom-2.5.0/src/
H A Dp_sight.c156 P_DivlineSide(los.t2x, los.t2y, &divl)) in P_CrossSubsector()
163 (opentop < los.minz) || (openbottom > los.maxz)) in P_CrossSubsector()
186 if (los.topslope <= los.bottomslope) in P_CrossSubsector()
211 side2 = R_PointOnSide(los.t2x, los.t2y, bsp); in P_CrossBSPNode_LxDoom()
303 los.topslope = (los.bottomslope = t2->z - (los.sightzstart = in P_CheckSight()
306 los.strace.dx = (los.t2x = t2->x) - (los.strace.x = t1->x); in P_CheckSight()
307 los.strace.dy = (los.t2y = t2->y) - (los.strace.y = t1->y); in P_CheckSight()
325 los.maxz = t2->z + t2->height; los.minz = los.sightzstart; in P_CheckSight()
327 los.maxz = los.sightzstart; los.minz = t2->z; in P_CheckSight()
329 los.maxz = t2->z + t2->height; los.minz = t2->z; in P_CheckSight()
[all …]
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/
H A Dp_sight.c146 if (P_DivlineSide(los->strace.x, los->strace.y, &divl) == in P_CrossSubsecPolyObj()
147 P_DivlineSide(los->t2x, los->t2y, &divl)) in P_CrossSubsecPolyObj()
246 P_DivlineSide(los->t2x, los->t2y, &divl)) in P_CrossSubsector()
259 fracx = los->strace.x + FixedMul(los->strace.dx, frac); in P_CrossSubsector()
260 fracy = los->strace.y + FixedMul(los->strace.dy, frac); in P_CrossSubsector()
297 if (los->topslope <= los->bottomslope) in P_CrossSubsector()
384 los_t los; in P_CheckSight() local
422 (los.bottomslope = t2->z - (los.sightzstart = in P_CheckSight()
425 los.strace.dx = (los.t2x = t2->x) - (los.strace.x = t1->x); in P_CheckSight()
426 los.strace.dy = (los.t2y = t2->y) - (los.strace.y = t1->y); in P_CheckSight()
[all …]
/dports/games/prboom-plus/prboom-plus-2.5.1.3/src/
H A Dp_sight.c522 if (P_DivlineCrossed(los.strace.x, los.strace.y, los.t2x, los.t2y, &divl)) in P_CrossSubsector_PrBoom()
587 if (los.topslope <= los.bottomslope) in P_CrossSubsector_PrBoom()
623 if (P_DivlineCrossed(los.strace.x, los.strace.y, los.t2x, los.t2y, &divl)) in P_CrossSubsector_Doom()
681 if (los.topslope <= los.bottomslope) in P_CrossSubsector_Doom()
727 if (P_DivlineCrossed(los.strace.x, los.strace.y, los.t2x, los.t2y, &divl)) in P_CrossSubsector_Boom()
779 if (los.topslope <= los.bottomslope) in P_CrossSubsector_Boom()
903 los.topslope = (los.bottomslope = t2->z - (los.sightzstart = in P_CheckSight()
906 los.strace.dx = (los.t2x = t2->x) - (los.strace.x = t1->x); in P_CheckSight()
907 los.strace.dy = (los.t2y = t2->y) - (los.strace.y = t1->y); in P_CheckSight()
925 los.maxz = t2->z + t2->height; los.minz = los.sightzstart; in P_CheckSight()
[all …]
/dports/science/R-cran-etm/etm/R/
H A Dclos_intern.R5 los <- matrix(rep(x$time, 3), ncol = 3, byrow = FALSE) functionVar
16 los[, 2] <- out$los0
17 los[, 3] <- out$los1
28 los.diff <- los[, 3] / los[, 2]
30 los.diff <- los[, 3] - los[, 2]
47 ldiff <- los[, 3] - los[, 2]
72 los <- matrix(rep(x$time, 3), ncol = 3, byrow = FALSE) functionVar
86 los[, 2] <- out$los0
87 los[, 3] <- out$los1
100 tmp <- list(los, phi2, phi3)
[all …]
H A Dclos_pure.R29 los <- matrix(rep(times, 3), ncol = 3, byrow = FALSE) functionVar
30 phi2 <- phi3 <- matrix(0, nrow(los), 3)
34 los[length(times)-1, 2:3] <- rep(tau, 2)
46 los[i, 3] <- times[i + 1] + matrix(diffs, nrow=1) %*%
50 phi2[i, 2] <- aj[2, 3, dim(aj)[3]] * los[i, 3]
66 tmp <- list(los)#, phi2, phi3)
84 ldiff <- los[, 3] - los[, 2]
111 los <- matrix(rep(times, 3), ncol = 3, byrow = FALSE) functionVar
114 los[length(times)-1, 2:3] <- rep(tau, 2)
143 los.diff <- los[, 3] - los[, 2]
[all …]
/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/
H A Dlosglobal.cc38 const coord_def o = los->get_center(); in _save_los()
54 if (los->see_cell(ri)) in _save_los()
86 los.update(); in _update_globallos_at()
87 _save_los(&los, l); in _update_globallos_at()
93 los.update(); in _update_globallos_at()
94 _save_los(&los, l); in _update_globallos_at()
99 los_def los(p, opc_solid); in _update_globallos_at() local
100 los.update(); in _update_globallos_at()
101 _save_los(&los, l); in _update_globallos_at()
107 los.update(); in _update_globallos_at()
[all …]
H A Dlos-def.cc22 los_def::los_def(const los_def& los) in los_def() argument
23 : show(los.show), center(los.center), in los_def()
24 opc(los.opc->clone()), bds(los.bds) in los_def()
28 los_def& los_def::operator=(const los_def& los) in operator =() argument
30 if (this != &los) in operator =()
32 init(los.center, *los.opc, los.bds); in operator =()
33 show = los.show; in operator =()
/dports/databases/grass7/grass-7.8.6/lib/ogsf/
H A Dgs_query.c67 if (0 == GS_v3dir(los[FROM], los[TO], u_d)) { in gs_los_intersect1()
76 tlen = GS_distance(los[FROM], los[TO]); in gs_los_intersect1()
85 a[X] = los[FROM][X]; in gs_los_intersect1()
86 a[Y] = los[FROM][Y]; in gs_los_intersect1()
87 a[Z] = los[FROM][Z]; in gs_los_intersect1()
208 if (0 == GS_v3dir(los[FROM], los[TO], u_d)) { in gs_los_intersect()
214 GS_v3eq(bgn, los[FROM]); in gs_los_intersect()
215 GS_v3eq(end, los[TO]); in gs_los_intersect()
538 GS_v3dir(los[FROM], los[TO], dir); in gs_setlos_enterdata()
539 maxdist = GS_distance(los[FROM], los[TO]); in gs_setlos_enterdata()
[all …]
/dports/editors/ted/Ted-2.23/appUtil/
H A DsioLzw.c572 LzwState * ls= &(los->losState); in sioOutLzwGifWriteCode()
582 los->losSosLzw ) == EOF ) in sioOutLzwGifWriteCode()
608 LzwState * ls= &(los->losState); in sioOutLzwGifClose()
622 los->losSosLzw ) == EOF ) in sioOutLzwGifClose()
630 free( los ); in sioOutLzwGifClose()
663 LzwState * ls= &(los->losState); in sioOutLzwGifWriteBytes()
714 _InsertHashTable( &(los->losHashTable), in sioOutLzwGifWriteBytes()
746 LzwGifOutputStream * los; in sioOutLzwGifOpen() local
750 if ( ! los ) in sioOutLzwGifOpen()
753 los->losSosLzw= sosLzw; in sioOutLzwGifOpen()
[all …]
/dports/math/R-cran-robustbase/robustbase/man/
H A Dlos.Rd1 \name{los}
2 \alias{los}
9 \usage{data(los, package="robustbase")}
34 summary(los) # quite skewed, with median(.) = 8
35 plot(table(los))
36 boxplot(los, horizontal=TRUE, add=TRUE, col = "red", axes=FALSE)
39 hist(log(los))
40 boxplot(log(los), add=TRUE, col=2, border=2, horizontal = TRUE, at = -1)
43 adjbox(los, col = "gray", staplecol="red", outcol = "red",
45 boxplot(los, add = TRUE, staplewex= 0.2, outcex= 0.5, outpch= 4,
[all …]
/dports/games/spring/spring_98.0/AI/Skirmish/Shard/data/ai/BA/
H A Dloshandler.lua148 local los = 0
154 los = 2
158 los = 1
160 los = 2
163 los = 2
173 known[id] = los
175 e.los = los
184 if los == 1 then
186 e.los = los
187 known[id] = los
[all …]
H A Dscouthandler.lua29 local los
34 los = 2
36 los = 0
39 los = ai.loshandler:GroundLos(position)
41 return los
88 local los
93 los = 2
95 los = 0
98 los = ai.loshandler:GroundLos(p)
100 if los == 2 or los == 3 or not ai.targethandler:IsSafePosition(p, unit, 1) then
/dports/astro/stellarium/stellarium-0.21.3/skycultures/northern_andes/
H A Ddescription.es.utf86 humano aprendió a comprender las señales que el cosmos, las plantas, los
7 animales, el clima y otros elementos emiten constantemente. Entonces los
8 sabios aprendieron a advertir sobre los cambios que afectan a los seres
15 y registrar los movimientos del sol, la luna, los planetas o las estrellas.</p>
20 los siglos. Estos seres han registrado los movimientos cósmicos en el
26 <p>Aquí contamos lo que encontramos en los cielos ecuatoriales:</p>
39 <p align="justify">Según el cronista colonial Juan de Betanzos "los indios conocieron los años
96 el final de un ciclo, aparentemente los seres humanos los descubrieron y
107 que los antepasados apreciaron para medir los tiempos. Llamado en los Andes
112 brillantes o estrellas; los seres astrales están alojados en los "puntos
[all …]
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthQt/
H A DLOSControlWidget.cpp56 osg::Group* los() { return _los.get(); } in los() function in __anon0592ff050111::LOSListWidgetItem
59 void setLOS(osg::Group* los) { _los = los; } in setLOS() argument
210 if (!los) in addLOSNode()
219 _root->addChild(los); in addLOSNode()
234 if (losItem && losItem->los()) in onItemDoubleClicked()
255 if (losItem && losItem->los()) in onItemChanged()
361 if (losItem && losItem->los()) in onRemoveSelectedLOS()
362 _root->removeChild(losItem->los()); in onRemoveSelectedLOS()
372 if (losItem && losItem->los()) in onEditSelectedLOS()
380 _root->removeChild(losItem->los()); in onEditSelectedLOS()
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/gui-lib/embedded-gui/private/tests/
H A Dtest-alignment.rkt24 los-equal?
30 los-equal?
36 los-equal?
45 los-equal?
55 los-equal?
65 los-equal?
82 los-equal?
100 los-equal?
123 los-equal?
135 los-equal?
[all …]
/dports/games/klavaro/klavaro-3.11/data/
H A Des.words44 los
92 los
95 los
108 los
170 los
200 los
212 los
231 los
274 los
319 los
[all …]
H A Des.paragraphs1 …tarianismo hay algunos que no admiten la ingesta de productos derivados de los animales (como el h…
3los derechos de los animales, por no estar de acuerdo con el trato que se da a los animales al usa…
5los derechos de animales, proponiendo alternativas al consumo de carne. Dentro de los principios d…
7los que no solo son utilizados, martirizados y matados decenas de miles de animales cada año, sino…
9los ganaderos de lidia, que destinan anualmente decenas de miles de animales a estos espectáculos …
11 …e infravalora los intereses fundamentales de los demás animales, como son el interés a la vida y a…
13los argumentos iniciales, si realmente el intelecto o aptitud para hablar fuesen los parámetros a …
15 … pero a finales de los años treinta sufrió una dura frenada, debido a las guerras y las represione…
21 …as urbanas que en rurales. El esperanto es particularmente predominante en los países del norte y …
23 …su modularidad y su adaptabilidad lo que lo hacen uno de los sistemas más flexibles de todos los t…
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/gui-lib/mrlib/private/aligned-pasteboard/tests/
H A Dtest-alignment.rkt26 (test los-equal?
31 (test los-equal?
37 (test los-equal?
43 (test los-equal?
51 (test los-equal?
61 (test los-equal?
74 (test los-equal?
80 (test los-equal?
88 (test los-equal?
98 (test los-equal?
[all …]
/dports/java/javamail/javamail-JAVAMAIL-1_6_2/dsn/src/main/java/com/sun/mail/dsn/
H A DDeliveryStatus.java185 LineOutputStream los = null; in writeTo() local
187 los = (LineOutputStream) os; in writeTo()
189 los = new LineOutputStream(os); in writeTo()
192 writeInternetHeaders(messageDSN, los); in writeTo()
193 los.writeln(); in writeTo()
195 writeInternetHeaders(recipientDSN[i], los); in writeTo()
196 los.writeln(); in writeTo()
201 LineOutputStream los) throws IOException { in writeInternetHeaders() argument
204 los.writeln((String)e.nextElement()); in writeInternetHeaders()
/dports/www/reportmagic/rmagic-2.21/lang/es/
H A Dcdata.ini21 # Este campo le indica a Report Magic como presentar los contenidos de las
22 # columnas. Los tipos v�lidos son los siguientes:
86 LongName = Hora en la que empiezan los &uacute;ltimos 7 d&iacute;as
90 LongName = Hora en la que terminan los &uacute;ltimos 7 d&iacute;as
119 LongName = Peticiones fallidas en los &uacute;ltimos 7 d&iacute;as
129 LongName = Peticiones redirigidas en los &uacute;ltimos 7 d&iacute;as
139 LongName = L&iacute;neas de los ficheros de log sin c&oacute;digo de estado en los &uacute;ltimos 7…
208 LongName = Porcentaje de los bytes
234 Activity = %0 bytes servidos en los &uacute;ltimos 7 d&iacute;as.
280 Col1_LongName2 = Este informe muestra todos los resultados.
[all …]

12345678910>>...229