Home
last modified time | relevance | path

Searched refs:newn (Results 1 – 25 of 638) sorted by path

12345678910>>...26

/dports/astro/qmapshack/qmapshack-V_1.16.1/3rdparty/alglib/src/
H A Dlinalg.cpp16685 ae_int_t newn; in sparsetransposecrs() local
16709 newn = oldm; in sparsetransposecrs()
16715 s->n = newn; in sparsetransposecrs()
16822 ae_int_t newn; in sparsecopytransposecrsbuf() local
16837 newn = oldm; in sparsecopytransposecrsbuf()
16844 s1->n = newn; in sparsecopytransposecrsbuf()
/dports/audio/csoundqt/CsoundQt-0.9.8.1/src/
H A Dconfiglists.cpp127 int i,newn, n = csoundGetMIDIDevList(cs, nullptr, 0); in getMidiInputDevices() local
129 newn = csoundGetMIDIDevList(cs,devs,0); in getMidiInputDevices()
130 if (newn != n) { in getMidiInputDevices()
256 int i,newn, n = csoundGetMIDIDevList(cs, nullptr, 1); in getMidiOutputDevices() local
258 newn = csoundGetMIDIDevList(cs,devs,1); in getMidiOutputDevices()
259 if (newn != n) { in getMidiOutputDevices()
369 int i,newn, n = csoundGetAudioDevList(cs, nullptr, 0); in getAudioInputDevices() local
371 newn = csoundGetAudioDevList(cs,devs,0); in getAudioInputDevices()
372 if (newn != n) { in getAudioInputDevices()
543 newn = csoundGetAudioDevList(cs,devs,1); in getAudioOutputDevices()
[all …]
/dports/audio/faust/faust-2.37.3/tools/physicalModeling/mesh2faust/vega/libraries/sparseMatrix/
H A DsparseMatrix.cpp1830 int newn = numRows + numAddedRows; in IncreaseNumRows() local
1832 rowLength = (int*) realloc (rowLength, sizeof(int) * newn); in IncreaseNumRows()
1836 columnIndices = (int**) realloc (columnIndices, sizeof(int*) * newn); in IncreaseNumRows()
1840 columnEntries = (double**) realloc (columnEntries, sizeof(double*) * newn); in IncreaseNumRows()
1844 numRows = newn; in IncreaseNumRows()
/dports/audio/festival/speech_tools/base_class/
H A DEST_TSimpleVector.cc67 template<class T> void EST_TSimpleVector<T>::resize(int newn, int set) in resize() argument
74 this->just_resize(newn, &old_vals); in resize()
/dports/audio/id3mtag/id3-0.80/
H A Dsetid3v2.cpp102 extern "C" void copy_failure(const char* oldn, const char* newn) in copy_failure() argument
104 if(oldn == newn) { in copy_failure()
109 guard::err = newn + emsg + oldn + '\''; in copy_failure()
/dports/audio/moony-lv2/moony-0.36.0/lpeg-1.0.2/
H A Dlpvm.c81 int max, newn; in doublestack() local
87 newn = 2 * n; /* new size */ in doublestack()
88 if (newn > max) newn = max; in doublestack()
89 newstack = (Stack *)lua_newuserdata(L, newn * sizeof(Stack)); in doublestack()
92 *stacklimit = newstack + newn; in doublestack()
/dports/audio/musescore/MuseScore-3.6.1/thirdparty/freetype/
H A DChangeLog.213938 2003-11-02 Patrick Welche <prlw1@newn.cam.ac.uk>
/dports/biology/emboss/EMBOSS-6.6.0/scripts/
H A Dfixdeprecated.pl97 ($oldn, $newn, $olda, $newa) = split(/ /, $x);
99 $nkey = "$oldn\_$newn";
151 $newtext = "$newn(";
/dports/biology/hhsuite/hh-suite-3.3.0/src/cs/
H A Dmatrix.h45 void Resize(size_t newn, size_t newm);
46 void Assign(size_t newn, size_t newm, const T &a);
142 void Matrix<T>::Resize(size_t newn, size_t newm) { in Resize() argument
144 if (newn != nn || newm != mm) { in Resize()
149 nn = newn; in Resize()
159 void Matrix<T>::Assign(size_t newn, size_t newm, const T& a) { in Assign() argument
161 if (newn != nn || newm != mm) { in Assign()
166 nn = newn; in Assign()
H A Dprofile-inl.h118 void Profile<Abc>::Resize(size_t newn) { in Resize() argument
120 if (newn != nn) { in Resize()
125 nn = newn; in Resize()
134 void Profile<Abc>::Assign(size_t newn, const double& a) { in Assign() argument
136 if (newn != nn) { in Assign()
141 nn = newn; in Assign()
H A Dprofile.h47 void Resize(size_t newn);
48 void Assign(size_t newn, const double &a);
H A Dvector.h40 void Resize(size_t newn);
41 void Assign(size_t newn, const T &a);
111 void Vector<T>::Resize(size_t newn) { in Resize() argument
112 if (newn != nn) { in Resize()
114 nn = newn; in Resize()
120 void Vector<T>::Assign(size_t newn, const T& a) { in Assign() argument
121 if (newn != nn) { in Assign()
123 nn = newn; in Assign()
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/admesh/
H A Dnormals.cpp176 stl_normal *newn = pool.construct(); in stl_fix_normal_directions() local
177 newn->facet_num = stl->neighbors_start[facet_num].neighbor[j]; in stl_fix_normal_directions()
178 newn->next = head->next; in stl_fix_normal_directions()
179 head->next = newn; in stl_fix_normal_directions()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/bdd/mtr/
H A DmtrGroup.c168 *newn; in Mtr_MakeGroup() local
200 newn->elder = newn->younger = newn->child = NULL; in Mtr_MakeGroup()
202 return(newn); in Mtr_MakeGroup()
226 newn->younger = newn->child = NULL; in Mtr_MakeGroup()
227 return(newn); in Mtr_MakeGroup()
234 return(newn); in Mtr_MakeGroup()
253 return(newn); in Mtr_MakeGroup()
296 return(newn); in Mtr_MakeGroup()
314 newn->low = low; in Mtr_MakeGroup()
315 newn->size = size; in Mtr_MakeGroup()
[all …]
/dports/cad/admesh/admesh-0.98.4/src/
H A Dnormals.c103 struct stl_normal *newn; in stl_fix_normal_directions() local
149 newn = (struct stl_normal*)malloc(sizeof(struct stl_normal)); in stl_fix_normal_directions()
150 if(newn == NULL) perror("stl_fix_normal_directions"); in stl_fix_normal_directions()
151 newn->facet_num = stl->neighbors_start[facet_num].neighbor[j]; in stl_fix_normal_directions()
152 newn->next = head->next; in stl_fix_normal_directions()
153 head->next = newn; in stl_fix_normal_directions()
/dports/cad/electric/electric-7.00/src/db/
H A Ddbgeom.c321 REGISTER INTBIG i, oldcount, oldn, newn, bestoldnode, bestnewnode; in db_addtortnode() local
354 newn = i; in db_addtortnode()
367 db_rtnbbox(rtn, newn, &lowestxv, &highestxv, &lowestyv, &highestyv); in db_addtortnode()
370 if (i == newn) continue; in db_addtortnode()
386 newrtn->pointers[0] = temp.pointers[newn]; in db_addtortnode()
387 temp.pointers[newn] = (UINTBIG)NORTNODE; in db_addtortnode()
/dports/cad/gmsh/gmsh-4.9.2-source/Common/
H A Davl.cpp352 avl_node *newn; in new_node() local
354 newn = ALLOC(avl_node, 1); in new_node()
355 newn->key = key; in new_node()
356 newn->value = value; in new_node()
357 newn->height = 0; in new_node()
358 newn->left = newn->right = NIL(avl_node); in new_node()
359 return newn; in new_node()
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/Netgen/libsrc/stlgeom/
H A Dstlgeom.cpp283 Vec3d newn(sol(0), sol(1), sol(2)); in SmoothNormals() local
284 newn /= (newn.Length() + 1e-24); in SmoothNormals()
286 GetTriangle(i).SetNormal(newn); in SmoothNormals()
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/blossom/concorde97/XSTUFF/
H A DXflow.c268 Xnodeptr *newn; local
271 newn = Xnodeptralloc ();
272 newn->next = (Xnodeptr *) NULL;
273 newn->this = n;
275 q->tail->next = newn;
277 q->head = newn;
279 q->tail = newn;
291 Xnodeptr *newn = q->head; local
292 Xnode *n = newn->this;
294 q->head = newn->next;
[all …]
/dports/cad/gplcver/gplcver-2.12a.src/src/
H A Dv_ex2.c6955 word32 r, newn;
6961 newn = r*SHORTBASE + (u[i] >> (WBITS/2));
6962 quot[i] = (newn / v0) << (WBITS/2);
6963 r = newn % v0;
6965 newn = r*SHORTBASE + (u[i] & ALL1HW);
6966 quot[i] |= (newn / v0);
6967 r = newn % v0;
/dports/cad/netgen/netgen-6.2.2105/libsrc/stlgeom/
H A Dstlgeom.cpp401 Vec3d newn(sol(0), sol(1), sol(2)); in SmoothNormals() local
402 newn /= (newn.Length() + 1e-24); in SmoothNormals()
404 GetTriangle(i).SetNormal(newn); in SmoothNormals()
/dports/cad/opencascade/opencascade-7.6.0/src/TopOpeBRepBuild/
H A DTopOpeBRepBuild_WireEdgeSet.cxx249 Standard_Integer newn = NbClosingShapes(myCurrentShapeNeighbours); in MakeNeighboursList() local
258 if (newn >= 2 ) { in MakeNeighboursList()
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/include/opendb/
H A Ddb.h4654 void swapCapnode(dbCapNode* orig, dbCapNode* newn);
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/src/db/
H A DdbCCSeg.cpp746 _dbCapNode* newn = (_dbCapNode*) new_; in swapCapnode() local
748 uint nid = newn->getOID(); in swapCapnode()
764 seg->_next[sidx] = newn->_cc_segs; in swapCapnode()
765 newn->_cc_segs = seg->getOID(); in swapCapnode()
H A DdbJournal.cpp1326 _dbCapNode* newn = (_dbCapNode*) dbCapNode::getCapNode(_block, ncap_id); in redo_updateCCSegField() local
1336 ((dbCCSeg*) seg)->swapCapnode((dbCapNode*) orig, (dbCapNode*) newn); in redo_updateCCSegField()

12345678910>>...26