Home
last modified time | relevance | path

Searched refs:newfirst (Results 1 – 25 of 99) sorted by relevance

1234

/dports/mail/mls/mls-1.3/
H A Dmls_list.c107 nTptr akt,akt2,newfirst; // actual in old, new in SortQuote() local
109 newfirst=NULL; in SortQuote()
118 newfirst=InsertEntry(newfirst,akt2,compCount); // add to new list in SortQuote()
120 return newfirst; in SortQuote()
127 nTptr akt,akt2,newfirst; // actual in old, new in SortSize() local
129 newfirst=NULL; in SortSize()
138 newfirst=InsertEntry(newfirst,akt2,compCount); // add to new list in SortSize()
140 return newfirst; in SortSize()
/dports/textproc/htmlise/htmlise-0.2/
H A Dmarkup.c75 struct paragraph *newfirst, *P; in create_container() local
81 alloc_struct(paragraph, newfirst); in create_container()
82 *newfirst = *first; in create_container()
88 first->contents = newfirst; in create_container()
96 newfirst->next = newfirst->prev = NULL; in create_container()
98 newfirst->next->prev = newfirst; in create_container()
99 last->next = newfirst->prev = NULL; in create_container()
/dports/mail/qmail-contrib/fastforward-0.51/
H A Dstrset.c96 int *newfirst; local
101 newfirst = (int *) alloc(sizeof(int) * (newmask + 1));
102 if (!newfirst) return 0;
104 for (h = 0;h <= newmask;++h) newfirst[h] = -1;
110 sl->next = newfirst[h];
111 newfirst[h] = i;
115 set->first = newfirst;
/dports/mail/fastforward/fastforward-0.51/
H A Dstrset.c96 int *newfirst; local
101 newfirst = (int *) alloc(sizeof(int) * (newmask + 1));
102 if (!newfirst) return 0;
104 for (h = 0;h <= newmask;++h) newfirst[h] = -1;
110 sl->next = newfirst[h];
111 newfirst[h] = i;
115 set->first = newfirst;
/dports/devel/rudiments/rudiments-1.2.2/include/rudiments/private/
H A Dlinkedlistinlines.h393 if (!newfirst) { in insertionSort()
396 newfirst=node; in insertionSort()
403 node->setNext(newfirst); in insertionSort()
405 newfirst->setPrevious(node); in insertionSort()
406 newfirst=node; in insertionSort()
469 first=newfirst; in insertionSort()
540 if (!newfirst) { in heapSort()
543 newfirst=node; in heapSort()
547 node->setNext(newfirst); in heapSort()
549 newfirst=node; in heapSort()
[all …]
H A Dsinglylinkedlistinlines.h585 if (!newfirst) { in insertionSort()
587 newfirst=node; in insertionSort()
594 node->setNext(newfirst); in insertionSort()
595 newfirst=node; in insertionSort()
610 previous=newfirst; in insertionSort()
633 first=newfirst; in insertionSort()
704 if (!newfirst) { in heapSort()
706 newfirst=node; in heapSort()
709 node->setNext(newfirst); in heapSort()
710 newfirst=node; in heapSort()
[all …]
/dports/math/xplot/xplot-0.90.7.1/
H A Dcoord.c173 coord *newfirst, coord *newlast) in zoom_in_coord() argument
187 *newfirst = impls[(int)ctype]->unmap(first, last, n, xf); in zoom_in_coord()
190 if (impls[(int)ctype]->cmp(*newfirst, *newlast) == 0) { in zoom_in_coord()
191 *newfirst = first; in zoom_in_coord()
202 coord *newfirst, coord *newlast) in drag_coord() argument
213 *newfirst = impls[(int)ctype]->add(first, diff); in drag_coord()
217 *newfirst = first; in drag_coord()
222 *newfirst = impls[(int)ctype]->subtract(first, diff); in drag_coord()
H A Dcoord.h73 coord *newfirst, coord *newlast);
78 coord *newfirst, coord *newlast);
/dports/biology/emboss/EMBOSS-6.6.0/scripts/
H A DmakeMake.pl118 if($1 ne $firstchar) {$firstchar = $1;$newfirst=1}
119 if($newfirst && $firstchar ge "l" && $set == 1) {
143 if($1 ne $firstchar) {$firstchar = $1;$newfirst=1}
144 if($newfirst && $firstchar ge "l" && $set == 1) {
/dports/science/lammps/lammps-stable_29Sep2021/src/
H A Drandom_mars.cpp192 int newactive[2],newfirst[2],newlast[2]; in select_subset() local
235 newfirst[0] = newfirst[1] = -1; in select_subset()
262 if (newfirst[which] < 0) newfirst[which] = oldindex; in select_subset()
272 first[0] = newfirst[0]; in select_subset()
273 first[1] = newfirst[1]; in select_subset()
/dports/emulators/mess/mame-mame0226/3rdparty/bx/include/tinystl/
H A Dbuffer.h148 pointer newfirst = (pointer)Alloc::static_allocate(sizeof(T) * capacity); in buffer_reserve() local
149 buffer_move_urange(newfirst, b->first, b->last); in buffer_reserve()
152 b->first = newfirst; in buffer_reserve()
153 b->last = newfirst + size; in buffer_reserve()
154 b->capacity = newfirst + capacity; in buffer_reserve()
184 T* newfirst = (T*)Alloc::static_allocate(sizeof(T) * size); in buffer_shrink_to_fit() local
185 buffer_move_urange(newfirst, b->first, b->last); in buffer_shrink_to_fit()
187 b->first = newfirst; in buffer_shrink_to_fit()
188 b->last = newfirst + size; in buffer_shrink_to_fit()
H A Dstring.h151 pointer newfirst = (pointer)Alloc::static_allocate(capacity + 1); in reserve() local
152 for (pointer it = m_first, newit = newfirst, end = m_last; it != end; ++it, ++newit) { in reserve()
160 m_first = newfirst; in reserve()
161 m_last = newfirst + _size; in reserve()
/dports/emulators/mame/mame-mame0226/3rdparty/bx/include/tinystl/
H A Dbuffer.h148 pointer newfirst = (pointer)Alloc::static_allocate(sizeof(T) * capacity); in buffer_reserve() local
149 buffer_move_urange(newfirst, b->first, b->last); in buffer_reserve()
152 b->first = newfirst; in buffer_reserve()
153 b->last = newfirst + size; in buffer_reserve()
154 b->capacity = newfirst + capacity; in buffer_reserve()
184 T* newfirst = (T*)Alloc::static_allocate(sizeof(T) * size); in buffer_shrink_to_fit() local
185 buffer_move_urange(newfirst, b->first, b->last); in buffer_shrink_to_fit()
187 b->first = newfirst; in buffer_shrink_to_fit()
188 b->last = newfirst + size; in buffer_shrink_to_fit()
H A Dstring.h151 pointer newfirst = (pointer)Alloc::static_allocate(capacity + 1); in reserve() local
152 for (pointer it = m_first, newit = newfirst, end = m_last; it != end; ++it, ++newit) { in reserve()
160 m_first = newfirst; in reserve()
161 m_last = newfirst + _size; in reserve()
/dports/graphics/leptonica/leptonica-1.76.0/prog/
H A Dfiles_reg.c137 char *newfirst = NULL; in TestPathJoin() local
147 newfirst = stringNew("\"\""); in TestPathJoin()
149 newfirst = stringNew(first); in TestPathJoin()
159 fprintf(stderr, "join: %s + %s --> %s\n", newfirst, newsecond, newpath); in TestPathJoin()
161 lept_free(newfirst); in TestPathJoin()
/dports/mail/vmailmgr/vmailmgr-0.97/daemon/
H A Dcommand.cc34 bool command::replace_first_two(mystring newfirst) in replace_first_two() argument
39 args[0] = new mystring(newfirst); in replace_first_two()
/dports/japanese/im-ja/im-ja-1.5/src/skk/
H A Dskklib.c552 searchOkuri(cl,okuri,newfirst) in searchOkuri() argument
555 CandList **newfirst;
561 if (newfirst)
562 *newfirst = &(ll->okuri);
566 if (newfirst && cl->dicitem) {
570 *newfirst = &(cl->dicitem->cand);
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/NassiShneiderman/
H A Dcommands.cpp497 NassiBrick *newfirst = m_last->GetNext(); in Do() local
498 if ( newfirst ) in Do()
500 newfirst->SetPrevious( nullptr ); in Do()
501 newfirst->SetParent( nullptr ); in Do()
503 m_nfc->SetFirstBrick( newfirst ); in Do()
/dports/emulators/mednafen/mednafen/src/nes/ppu/
H A Dppu.cpp862 int newfirst = firstpixel; in DoLine() local
864 if(newfirst & 7) in DoLine()
866 newfirst = (newfirst + 7) &~7; in DoLine()
868 RefreshLine(newfirst); in DoLine()
873 FastRefreshLine(newfirst >> 3, target); in DoLine()
876 FastCopySprites(newfirst >> 3, target, skip); in DoLine()
878 MDFN_FastArraySet(MDFN_ASSUME_ALIGNED(target + newfirst, 8), 0x40 | 0x3C, 256 - newfirst); in DoLine()
881 FastLineEffects(newfirst >> 3, target); in DoLine()
884 InputScanlineHook(target, newfirst, 256); in DoLine()
/dports/devel/sunpromake/schily-2021-09-18/patch/
H A Dpatch.c822 LINENUM newfirst = pch_newfirst() + last_offset; in abort_hunk() local
824 LINENUM newlast = newfirst + pch_repl_lines() - 1; in abort_hunk()
844 if (newlast < newfirst) in abort_hunk()
846 else if (newlast == newfirst) in abort_hunk()
848 (Llong)newfirst, minuses); in abort_hunk()
851 (Llong)newfirst, in abort_hunk()
/dports/devel/smake/schily-2021-09-18/patch/
H A Dpatch.c822 LINENUM newfirst = pch_newfirst() + last_offset; in abort_hunk() local
824 LINENUM newlast = newfirst + pch_repl_lines() - 1; in abort_hunk()
844 if (newlast < newfirst) in abort_hunk()
846 else if (newlast == newfirst) in abort_hunk()
848 (Llong)newfirst, minuses); in abort_hunk()
851 (Llong)newfirst, in abort_hunk()
/dports/devel/sccs/schily-2021-09-18/patch/
H A Dpatch.c822 LINENUM newfirst = pch_newfirst() + last_offset; in abort_hunk() local
824 LINENUM newlast = newfirst + pch_repl_lines() - 1; in abort_hunk()
844 if (newlast < newfirst) in abort_hunk()
846 else if (newlast == newfirst) in abort_hunk()
848 (Llong)newfirst, minuses); in abort_hunk()
851 (Llong)newfirst, in abort_hunk()
/dports/devel/schilybase/schily-2021-09-18/patch/
H A Dpatch.c822 LINENUM newfirst = pch_newfirst() + last_offset; in abort_hunk() local
824 LINENUM newlast = newfirst + pch_repl_lines() - 1; in abort_hunk()
844 if (newlast < newfirst) in abort_hunk()
846 else if (newlast == newfirst) in abort_hunk()
848 (Llong)newfirst, minuses); in abort_hunk()
851 (Llong)newfirst, in abort_hunk()
/dports/net/rscsi/schily-2021-09-18/patch/
H A Dpatch.c822 LINENUM newfirst = pch_newfirst() + last_offset; in abort_hunk() local
824 LINENUM newlast = newfirst + pch_repl_lines() - 1; in abort_hunk()
844 if (newlast < newfirst) in abort_hunk()
846 else if (newlast == newfirst) in abort_hunk()
848 (Llong)newfirst, minuses); in abort_hunk()
851 (Llong)newfirst, in abort_hunk()
/dports/archivers/star/schily-2021-09-18/patch/
H A Dpatch.c822 LINENUM newfirst = pch_newfirst() + last_offset; in abort_hunk() local
824 LINENUM newlast = newfirst + pch_repl_lines() - 1; in abort_hunk()
844 if (newlast < newfirst) in abort_hunk()
846 else if (newlast == newfirst) in abort_hunk()
848 (Llong)newfirst, minuses); in abort_hunk()
851 (Llong)newfirst, in abort_hunk()

1234