Home
last modified time | relevance | path

Searched refs:npaths (Results 1 – 25 of 390) sorted by relevance

12345678910>>...16

/dports/math/blacs/BLACS_shared/SRC/MPI/INTERNAL/
H A DBI_MpathBS.c3 void BI_MpathBS(BLACSCONTEXT *ctxt, BLACBUFF *bp, SDRVPTR send, int npaths) in BI_MpathBS() argument
16 if (npaths == FULLCON) npaths = Np_1; in BI_MpathBS()
18 if (npaths > 0) /* paths are increasing rings */ in BI_MpathBS()
27 npaths = -npaths; in BI_MpathBS()
32 if (npaths > Np_1) npaths = Np_1; in BI_MpathBS()
33 pathlen = Np_1 / npaths; in BI_MpathBS()
38 lastlong = (Np_1 % npaths) * (pathlen+1); /* last node in long ring */ in BI_MpathBS()
H A DBI_MpathBR.c3 void BI_MpathBR(BLACSCONTEXT *ctxt, BLACBUFF *bp, SDRVPTR send, int src, int npaths) in BI_MpathBR() argument
19 if (npaths == FULLCON) npaths = Np_1; in BI_MpathBR()
21 if (npaths > 0) in BI_MpathBR()
30 npaths = -npaths; in BI_MpathBR()
35 if (npaths > Np_1) npaths = Np_1; in BI_MpathBR()
37 pathlen = Np_1 / npaths; in BI_MpathBR()
38 lastlong = (Np_1%npaths) * (pathlen+1); in BI_MpathBR()
/dports/math/blacs/BLACS/SRC/MPI/INTERNAL/
H A DBI_MpathBS.c3 void BI_MpathBS(BLACSCONTEXT *ctxt, BLACBUFF *bp, SDRVPTR send, int npaths) in BI_MpathBS() argument
16 if (npaths == FULLCON) npaths = Np_1; in BI_MpathBS()
18 if (npaths > 0) /* paths are increasing rings */ in BI_MpathBS()
27 npaths = -npaths; in BI_MpathBS()
32 if (npaths > Np_1) npaths = Np_1; in BI_MpathBS()
33 pathlen = Np_1 / npaths; in BI_MpathBS()
38 lastlong = (Np_1 % npaths) * (pathlen+1); /* last node in long ring */ in BI_MpathBS()
H A DBI_MpathBR.c3 void BI_MpathBR(BLACSCONTEXT *ctxt, BLACBUFF *bp, SDRVPTR send, int src, int npaths) in BI_MpathBR() argument
19 if (npaths == FULLCON) npaths = Np_1; in BI_MpathBR()
21 if (npaths > 0) in BI_MpathBR()
30 npaths = -npaths; in BI_MpathBR()
35 if (npaths > Np_1) npaths = Np_1; in BI_MpathBR()
37 pathlen = Np_1 / npaths; in BI_MpathBR()
38 lastlong = (Np_1%npaths) * (pathlen+1); in BI_MpathBR()
/dports/math/scalapack/scalapack-2.1.0/BLACS/SRC/
H A DBI_MpathBS.c3 void BI_MpathBS(BLACSCONTEXT *ctxt, BLACBUFF *bp, SDRVPTR send, int npaths) in BI_MpathBS() argument
16 if (npaths == FULLCON) npaths = Np_1; in BI_MpathBS()
18 if (npaths > 0) /* paths are increasing rings */ in BI_MpathBS()
27 npaths = -npaths; in BI_MpathBS()
32 if (npaths > Np_1) npaths = Np_1; in BI_MpathBS()
33 pathlen = Np_1 / npaths; in BI_MpathBS()
38 lastlong = (Np_1 % npaths) * (pathlen+1); /* last node in long ring */ in BI_MpathBS()
H A DBI_MpathBR.c3 void BI_MpathBR(BLACSCONTEXT *ctxt, BLACBUFF *bp, SDRVPTR send, int src, int npaths) in BI_MpathBR() argument
19 if (npaths == FULLCON) npaths = Np_1; in BI_MpathBR()
21 if (npaths > 0) in BI_MpathBR()
30 npaths = -npaths; in BI_MpathBR()
35 if (npaths > Np_1) npaths = Np_1; in BI_MpathBR()
37 pathlen = Np_1 / npaths; in BI_MpathBR()
38 lastlong = (Np_1%npaths) * (pathlen+1); in BI_MpathBR()
/dports/science/tfel/tfel-3.4.0/mfront/src/
H A DSearchPathsHandler.cxx62 const auto npaths = tfel::utilities::tokenize(p, ';'); in addSearchPaths() local
64 const auto npaths = tfel::utilities::tokenize(p, ':'); in addSearchPaths() local
66 msf.paths.insert(msf.paths.begin(), npaths.begin(), npaths.end()); in addSearchPaths()
77 const auto npaths = tfel::utilities::tokenize(p, ';'); in SearchPathsHandler() local
79 const auto npaths = tfel::utilities::tokenize(p, ':'); in SearchPathsHandler()
81 this->paths.insert(this->paths.begin(), npaths.begin(), npaths.end()); in SearchPathsHandler()
/dports/science/tfel-edf/tfel-3.2.1/mfront/src/
H A DSearchPathsHandler.cxx61 const auto npaths = tfel::utilities::tokenize(p,';');
63 const auto npaths = tfel::utilities::tokenize(p,':');
66 npaths.begin(),npaths.end());
79 const auto npaths = tfel::utilities::tokenize(p,';');
81 const auto npaths = tfel::utilities::tokenize(p,':');
84 npaths.begin(),npaths.end());
/dports/devel/py-ijson/ijson-3.1.4/ijson/backends/yajl2_c/
H A Dparse_basecoro.c52 Py_ssize_t npaths = PyList_Size(gen->path); in parse_basecoro_send_impl() local
58 N_M1(PyList_SetSlice(gen->path, npaths - 1, npaths, NULL)); in parse_basecoro_send_impl()
59 npaths--; in parse_basecoro_send_impl()
60 prefix = PySequence_GetItem(gen->path, npaths - 1); in parse_basecoro_send_impl()
68 N_N(last_path = PySequence_GetItem(gen->path, npaths - 2)); in parse_basecoro_send_impl()
69 if (npaths > 2) { in parse_basecoro_send_impl()
76 PyList_SetItem(gen->path, npaths - 1, new_path); in parse_basecoro_send_impl()
78 prefix = PySequence_GetItem(gen->path, npaths - 2); in parse_basecoro_send_impl()
81 prefix = PySequence_GetItem(gen->path, npaths - 1); in parse_basecoro_send_impl()
91 N_N(last_path = PySequence_GetItem(gen->path, npaths - 1)); in parse_basecoro_send_impl()
/dports/net/tigervnc-server/tigervnc-1.12.0/unix/xserver/hw/dmx/
H A Ddmxfont.c65 dmxGetFontPath(int *npaths) in dmxGetFontPath() argument
74 newfp = malloc(*npaths + len); in dmxGetFontPath()
76 fp = xallocarray(*npaths, sizeof(*fp)); in dmxGetFontPath()
80 for (i = 0; i < *npaths; i++) { in dmxGetFontPath()
88 for (i = 0; i < *npaths; i++) in dmxGetFontPath()
125 int npaths; in dmxSetFontPath() local
130 fp = dmxGetFontPath(&npaths); in dmxSetFontPath()
285 int npaths; in dmxBELoadFont() local
296 fp = dmxGetFontPath(&npaths); in dmxBELoadFont()
316 for (i = 0; i < npaths; i++) in dmxBELoadFont()
[all …]
/dports/x11-servers/xwayland/xorg-server-1.20.13/hw/dmx/
H A Ddmxfont.c65 dmxGetFontPath(int *npaths) in dmxGetFontPath() argument
74 newfp = malloc(*npaths + len); in dmxGetFontPath()
76 fp = xallocarray(*npaths, sizeof(*fp)); in dmxGetFontPath()
80 for (i = 0; i < *npaths; i++) { in dmxGetFontPath()
88 for (i = 0; i < *npaths; i++) in dmxGetFontPath()
125 int npaths; in dmxSetFontPath() local
130 fp = dmxGetFontPath(&npaths); in dmxSetFontPath()
285 int npaths; in dmxBELoadFont() local
296 fp = dmxGetFontPath(&npaths); in dmxBELoadFont()
316 for (i = 0; i < npaths; i++) in dmxBELoadFont()
[all …]
/dports/x11-servers/xorg-vfbserver/xorg-server-1.20.13/hw/dmx/
H A Ddmxfont.c65 dmxGetFontPath(int *npaths) in dmxGetFontPath() argument
74 newfp = malloc(*npaths + len); in dmxGetFontPath()
76 fp = xallocarray(*npaths, sizeof(*fp)); in dmxGetFontPath()
80 for (i = 0; i < *npaths; i++) { in dmxGetFontPath()
88 for (i = 0; i < *npaths; i++) in dmxGetFontPath()
125 int npaths; in dmxSetFontPath() local
130 fp = dmxGetFontPath(&npaths); in dmxSetFontPath()
285 int npaths; in dmxBELoadFont() local
296 fp = dmxGetFontPath(&npaths); in dmxBELoadFont()
316 for (i = 0; i < npaths; i++) in dmxBELoadFont()
[all …]
/dports/x11-servers/xorg-dmx/xorg-server-1.20.13/hw/dmx/
H A Ddmxfont.c65 dmxGetFontPath(int *npaths) in dmxGetFontPath() argument
74 newfp = malloc(*npaths + len); in dmxGetFontPath()
76 fp = xallocarray(*npaths, sizeof(*fp)); in dmxGetFontPath()
80 for (i = 0; i < *npaths; i++) { in dmxGetFontPath()
88 for (i = 0; i < *npaths; i++) in dmxGetFontPath()
125 int npaths; in dmxSetFontPath() local
130 fp = dmxGetFontPath(&npaths); in dmxSetFontPath()
285 int npaths; in dmxBELoadFont() local
296 fp = dmxGetFontPath(&npaths); in dmxBELoadFont()
316 for (i = 0; i < npaths; i++) in dmxBELoadFont()
[all …]
/dports/x11-servers/xephyr/xorg-server-1.20.13/hw/dmx/
H A Ddmxfont.c65 dmxGetFontPath(int *npaths) in dmxGetFontPath() argument
74 newfp = malloc(*npaths + len); in dmxGetFontPath()
76 fp = xallocarray(*npaths, sizeof(*fp)); in dmxGetFontPath()
80 for (i = 0; i < *npaths; i++) { in dmxGetFontPath()
88 for (i = 0; i < *npaths; i++) in dmxGetFontPath()
125 int npaths; in dmxSetFontPath() local
130 fp = dmxGetFontPath(&npaths); in dmxSetFontPath()
285 int npaths; in dmxBELoadFont() local
296 fp = dmxGetFontPath(&npaths); in dmxBELoadFont()
316 for (i = 0; i < npaths; i++) in dmxBELoadFont()
[all …]
/dports/x11-servers/xarcan/xarcan-0.6.0/hw/dmx/
H A Ddmxfont.c65 dmxGetFontPath(int *npaths) in dmxGetFontPath() argument
74 newfp = malloc(*npaths + len); in dmxGetFontPath()
76 fp = xallocarray(*npaths, sizeof(*fp)); in dmxGetFontPath()
80 for (i = 0; i < *npaths; i++) { in dmxGetFontPath()
88 for (i = 0; i < *npaths; i++) in dmxGetFontPath()
125 int npaths; in dmxSetFontPath() local
130 fp = dmxGetFontPath(&npaths); in dmxSetFontPath()
285 int npaths; in dmxBELoadFont() local
296 fp = dmxGetFontPath(&npaths); in dmxBELoadFont()
316 for (i = 0; i < npaths; i++) in dmxBELoadFont()
[all …]
/dports/x11-servers/xorg-nestserver/xorg-server-1.20.13/hw/dmx/
H A Ddmxfont.c65 dmxGetFontPath(int *npaths) in dmxGetFontPath() argument
74 newfp = malloc(*npaths + len); in dmxGetFontPath()
76 fp = xallocarray(*npaths, sizeof(*fp)); in dmxGetFontPath()
80 for (i = 0; i < *npaths; i++) { in dmxGetFontPath()
88 for (i = 0; i < *npaths; i++) in dmxGetFontPath()
125 int npaths; in dmxSetFontPath() local
130 fp = dmxGetFontPath(&npaths); in dmxSetFontPath()
285 int npaths; in dmxBELoadFont() local
296 fp = dmxGetFontPath(&npaths); in dmxBELoadFont()
316 for (i = 0; i < npaths; i++) in dmxBELoadFont()
[all …]
/dports/x11-servers/xorg-server/xorg-server-1.20.13/hw/dmx/
H A Ddmxfont.c65 dmxGetFontPath(int *npaths) in dmxGetFontPath() argument
74 newfp = malloc(*npaths + len); in dmxGetFontPath()
76 fp = xallocarray(*npaths, sizeof(*fp)); in dmxGetFontPath()
80 for (i = 0; i < *npaths; i++) { in dmxGetFontPath()
88 for (i = 0; i < *npaths; i++) in dmxGetFontPath()
125 int npaths; in dmxSetFontPath() local
130 fp = dmxGetFontPath(&npaths); in dmxSetFontPath()
285 int npaths; in dmxBELoadFont() local
296 fp = dmxGetFontPath(&npaths); in dmxBELoadFont()
316 for (i = 0; i < npaths; i++) in dmxBELoadFont()
[all …]
/dports/games/zaz/zaz-1.0.1/src/
H A Dlevel.cpp175 uint npaths = paths.size(); in FixData() local
177 while (ballSizes.size() < npaths - 1) in FixData()
180 while (startFeedRates.size() < npaths - 1) in FixData()
183 while (endFeedRates.size() < npaths - 1) in FixData()
189 while (ballsToDraw.size() < npaths - 1) in FixData()
206 uint npaths; in LoadData() local
214 sl >> npaths; in LoadData()
217 for (uint i = 0; i < npaths; ++i) in LoadData()
337 while (endFeedRates.size() < npaths - 1) in LoadData()
364 while (ballsToDraw.size() < npaths - 1) in LoadData()
[all …]
/dports/graphics/argyllcms/Argyll_V1.9.2/spectro/
H A Dxdg_bds.c301 xdg_ifree(paths, fnames, npaths); in xdg_bds()
667 for (i = 0; i < npaths; i++) { in xdg_bds()
673 if (i < npaths) { in xdg_bds()
709 free((*paths)[npaths]); in xdg_bds()
721 npaths++; in xdg_bds()
820 npaths++; in xdg_bds()
825 return npaths; in xdg_bds()
851 xdg_ifree(paths, fnames, npaths); in xdg_bds()
853 xdg_ifree(NULL, fnames, npaths); in xdg_bds()
858 for (i = 0; i < npaths; i++) in xdg_bds()
[all …]
/dports/graphics/openicc-config/config-0.1.0/src/libopenicc/
H A Dxdg_bds.c290 xdg_ifree(paths, fnames, npaths); in xdg_bds()
656 for (i = 0; i < npaths; i++) { in xdg_bds()
662 if (i < npaths) { in xdg_bds()
698 free((*paths)[npaths]); in xdg_bds()
710 npaths++; in xdg_bds()
807 npaths++; in xdg_bds()
812 return npaths; in xdg_bds()
838 xdg_ifree(paths, fnames, npaths); in xdg_bds()
840 xdg_ifree(NULL, fnames, npaths); in xdg_bds()
845 for (i = 0; i < npaths; i++) in xdg_bds()
[all …]
/dports/graphics/agg/agg-2.5/examples/
H A Dparse_lion.cpp163 unsigned npaths = 0; in parse_lion() local
174 colors[npaths] = agg::rgb8_packed(c); in parse_lion()
175 path_idx[npaths] = path.start_new_path(); in parse_lion()
176 npaths++; in parse_lion()
213 return npaths; in parse_lion()
/dports/devel/cook/cook-2.30/find_libs/
H A Dmain.c118 int npaths = 0; in main() local
158 path[npaths++] = syspath[k]; in main()
159 for (k = 0; k < npaths; ++k) in main()
188 if (k >= npaths) in main()
196 npaths -= nsyspaths; in main()
205 path[npaths++] = arglex_value.alv_string; in main()
/dports/databases/grass7/grass-7.8.6/lib/db/dbmi_driver/
H A Dd_listdb.c30 int npaths; in db_d_list_databases() local
35 DB_RECV_STRING_ARRAY(&path, &npaths); in db_d_list_databases()
38 stat = db_driver_list_databases(path, npaths, &handles, &count); in db_d_list_databases()
39 db_free_string_array(path, npaths); in db_d_list_databases()
/dports/sysutils/osinfo-db-tools/osinfo-db-tools-1.9.0/tools/
H A Dosinfo-db-util.c123 gsize npaths = 0; in osinfo_db_get_file() local
130 paths[npaths++] = osinfo_db_get_custom_path(custom, root); in osinfo_db_get_file()
133 paths[npaths++] = osinfo_db_get_user_path(root); in osinfo_db_get_file()
136 paths[npaths++] = osinfo_db_get_local_path(root); in osinfo_db_get_file()
139 paths[npaths++] = osinfo_db_get_system_path(root); in osinfo_db_get_file()
141 for (i = 0; i < npaths; i++) { in osinfo_db_get_file()
/dports/devel/samurai/samurai-1.2-16-gca5a6ba/
H A Dparse.c75 e->outimpidx = npaths; in parseedge()
78 e->nout = npaths; in parseedge()
88 e->inimpidx = npaths - e->nout; in parseedge()
94 e->inorderidx = npaths - e->nout; in parseedge()
97 e->nin = npaths - e->nout; in parseedge()
132 npaths = 0; in parseedge()
165 deftarg = xreallocarray(deftarg, ndeftarg + npaths, sizeof(*deftarg)); in parsedefault()
166 for (i = 0; i < npaths; ++i) { in parsedefault()
176 npaths = 0; in parsedefault()

12345678910>>...16