Home
last modified time | relevance | path

Searched refs:Srl (Results 1 – 25 of 349) sorted by relevance

12345678910>>...14

/dports/astro/R-cran-maptools/maptools/R/
H A Dspmaps.R51 Srl <- vector(mode="list", length=n) functionVar
66 Srl[[i]] <- Lines(srl, ID=IDss[i])
72 Srl <- Srl[!drop_Lines]
73 if (length(Srl) <= 0L) stop("map2SpatialLines: no Lines output")
74 res <- SpatialLines(Srl, proj4string=proj4string)
111 Srl <- vector(mode="list", length=n) functionVar
129 Srl[[i]] <- Polygons(srl, ID=IDss[i])
130 if (checkHoles) Srl[[i]] <- checkPolygonsHoles(Srl[[i]])
136 Srl <- Srl[!drop_Polygons]
137 if (length(Srl) <= 0L) stop("map2SpatialPolygons: no Polygons output")
[all …]
H A DnowrapRecenter.R24 Srl <- lapply(pls, .nowrapPolygons, offset=offset, eps=eps, functionVar
26 Srl <- Srl[!sapply(Srl, is.null)]
27 res <- as.SpatialPolygons.PolygonsList(Srl,
89 Srl <- vector(mode="list", length=nP) functionVar
102 Srl[[j]] <- Polygon(coords=crds, hole=hole)
104 res <- Polygons(Srl, ID=ID)
134 Srl <- vector(mode="list", length=nP)
143 Srl[[j]] <- Polygon(coords=crds)
145 res <- Polygons(Srl, ID=ID)
174 Srl <- lapply(pls, .nowrapLines, offset=offset, eps=eps) functionVar
[all …]
H A Dunion.R29 Srl <- vector(mode="list", length=n) functionVar
34 Srl[[i]] <- Polygons(
67 Srl[[i]] <- Polygons(Srli, ID=IDss[i])
70 res <- as.SpatialPolygons.PolygonsList(Srl, proj4string=proj4CRS)
H A DreadSplus.R75 Srl <- vector(mode = "list", length = nareas) functionVar
87 Srl[[i]] <- Polygons(srl, ID = IDs[i,2])
90 res <- as.SpatialPolygons.PolygonsList(Srl, proj4string = proj4string)
H A DRgshhs.R172 Srl <- vector(mode="list", length=n) functionVar
197 Srl[[i]] <- checkPolygonsGEOS(pls0, properly=properly)
199 Srl[[i]] <- pls0
202 res <- as.SpatialPolygons.PolygonsList(Srl,
284 Srl <- vector(mode="list", length=n)
303 Srl[[i]] <- Polygons(srl, ID=IDss[i])
305 res <- as.SpatialPolygons.PolygonsList(Srl,
H A Dsp_tools.R89 Srl <- vector(mode="list", length=n) functionVar
139 Srl[[i]] <- Polygons(srl, ID=IDss[i])
141 res <- as.SpatialPolygons.PolygonsList(Srl, proj4string=proj4string)
H A DcheckHoles.R53 Srl <- vector(mode="list", length=nP) functionVar
61 Srl[[j]] <- Polygon(coords=crds, hole=hole)
63 res <- Polygons(Srl, ID=ID)
/dports/devel/llvm11/llvm-11.0.1.src/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp246 SDValue Srl = Or.getOperand(0); in SelectSROI() local
247 if (isa<ConstantSDNode>(Srl.getOperand(1)) && in SelectSROI()
253 RS1 = Srl.getOperand(0); in SelectSROI()
263 RS1 = Srl.getOperand(0); in SelectSROI()
398 SDValue Srl = Or.getOperand(0); in SelectSROIW() local
399 if (isa<ConstantSDNode>(Srl.getOperand(1)) && in SelectSROIW()
404 RS1 = Srl.getOperand(0); in SelectSROIW()
438 SDValue Srl = Or.getOperand(1); in SelectRORIW() local
440 SDValue And = Srl.getOperand(0); in SelectRORIW()
486 SDValue Srl = Or.getOperand(1); in SelectFSRIW() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp244 SDValue Srl = Or.getOperand(0); in SelectSROI() local
245 if (isa<ConstantSDNode>(Srl.getOperand(1)) && in SelectSROI()
251 RS1 = Srl.getOperand(0); in SelectSROI()
261 RS1 = Srl.getOperand(0); in SelectSROI()
358 SDValue Srl = Or.getOperand(0); in SelectSROIW() local
359 if (isa<ConstantSDNode>(Srl.getOperand(1)) && in SelectSROIW()
364 RS1 = Srl.getOperand(0); in SelectSROIW()
397 SDValue Srl = Or.getOperand(1); in SelectRORIW() local
400 if (Srl.getOpcode() == ISD::SHL) in SelectRORIW()
401 std::swap(Shl, Srl); in SelectRORIW()
[all …]
/dports/devel/z88dk/z88dk/libsrc/target/cpc/cpcrslib/
H A Dcpc_PutSpTileMap.asm49 Srl l ; x0/2 label
50 Srl h label
51 Srl h label
52 Srl h ; y0/8 label
57 Srl l ; (x0+ancho)/2 label
58 Srl h label
59 Srl h label
60 Srl h; (y0+alto)/2 label
/dports/math/R-cran-sp/sp/R/
H A DSpatialPolygons-methods.R1 SpatialPolygons <- function(Srl, pO, proj4string=CRS(as.character(NA))) { argument
14 stopifnot(length(pO) == length(Srl))
16 stopifnot(is.list(Srl))
21 res <- .Call(SpatialPolygons_c, Srl, pO, proj4string)
93 as.SpatialPolygons.PolygonsList <- function(Srl, proj4string=CRS(as.character(NA))) { argument
94 if (any(sapply(Srl, function(x) !is(x, "Polygons"))))
102 res <- SpatialPolygons(Srl, proj4string=proj4string)
H A DGridTopology-methods.R158 Srl <- vector(mode="list", length=nPolygons) functionVar
169 Srl[[i]] <- Polygons(list(Polygon(coords = coords)), ID = IDs[i])
170 comment(Srl[[i]]) <- "0"
172 res <- SpatialPolygons(Srl, proj4string = proj4string)
H A Drecenter.R11 Srl <- lapply(pls, recenter.Polygons) functionVar
12 res <- SpatialPolygons(Srl, proj4string=projargs)
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/CodeGen/tests/
H A DShiftTest.cpp81 jitter.Srl(m_shiftAmount); in Compile()
85 jitter.Srl(m_shiftAmount); in Compile()
92 jitter.Srl(); in Compile()
97 jitter.Srl(); in Compile()
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/
H A Dscsp_dsp_jit.cpp163 jit.Srl(); in op1()
170 jit.Srl(4); in op1()
247 jit.Srl(8); in op2()
279 jit.Srl(); in op2()
287 jit.Srl(); in op2()
304 jit.Srl(); in op2()
330 jit.Srl(12); in op3()
577 jit.Srl(8); in op5()
/dports/devel/sope/SOPE/sope-xml/STXSaxDriver/ExtraSTX/
H A DCOPYRIGHT4 Copyright (C) 2004 eXtrapola Srl
11 I'm glad to confirm that eXtrapola Srl, as the copyright holder on the
/dports/devel/sope2/SOPE/sope-xml/STXSaxDriver/Model/
H A DCOPYRIGHT3 Copyright (C) 2004 eXtrapola Srl
10 I'm glad to confirm that eXtrapola Srl, as the copyright holder on the
/dports/devel/sope2/SOPE/sope-xml/STXSaxDriver/ExtraSTX/
H A DCOPYRIGHT4 Copyright (C) 2004 eXtrapola Srl
11 I'm glad to confirm that eXtrapola Srl, as the copyright holder on the
/dports/devel/sope/SOPE/sope-xml/STXSaxDriver/
H A DCOPYRIGHT2 Copyright (C) 2004 eXtrapola Srl
13 I'm glad to confirm that eXtrapola Srl, as the copyright holder on the
/dports/devel/sope/SOPE/sope-xml/STXSaxDriver/Model/
H A DCOPYRIGHT3 Copyright (C) 2004 eXtrapola Srl
10 I'm glad to confirm that eXtrapola Srl, as the copyright holder on the
/dports/devel/sope2/SOPE/sope-xml/STXSaxDriver/
H A DCOPYRIGHT2 Copyright (C) 2004 eXtrapola Srl
13 I'm glad to confirm that eXtrapola Srl, as the copyright holder on the
/dports/graphics/gmt/gmt-6.3.0/test/modern/
H A Dpanels.sh4 gmt subplot begin 2x2 -Fs3i -M5p -A -Scb -Srl -Bwstr -R0/80/0/10
/dports/graphics/gmt/gmt-6.3.0/test/subplot/
H A Dsubplot_3.0.sh17 gmt subplot begin 2x2 -Fs8c -Srl -R-2/2/0/10 -T"3.0: -Srl"
H A Dsubplot_4.0.sh17 gmt subplot begin 2x2 -Fs8c -Scb -Srl -R-2/2/0/10 -T"4.0: -Srl -Scb"
H A Dsubplot_3.2.sh17 gmt subplot begin 2x2 -Fs8c -Srl -R-2/2/0/10 -Bwsne -T"3.2: -Srl, -Bwsne override"

12345678910>>...14