/freebsd/contrib/arm-optimized-routines/string/arm/ |
H A D | asmdefs.h | 101 .macro cfirestorelist first, last 102 .cfi_restore \last 103 .if \last-\first 104 cfirestorelist \first, \last-1 109 .macro cfisavelist first, last, index=1 110 .cfi_offset \last, -4*(\index) 111 .if \last-\first 112 cfisavelist \first, \last-1, \index+1 116 .macro _prologue first=-1, last=-1, push_ip=PAC_LEAF_PUSH_IP, push_lr=0 124 .if \last == -1 [all …]
|
/freebsd/contrib/libdivsufsort/lib/ |
H A D | trsort.c | 79 tr_insertionsort(const saidx_t *ISAd, saidx_t *first, saidx_t *last) { in tr_insertionsort() argument 83 for(a = first + 1; a < last; ++a) { in tr_insertionsort() 167 tr_pivot(const saidx_t *ISAd, saidx_t *first, saidx_t *last) { in tr_pivot() argument 171 t = last - first; in tr_pivot() 176 return tr_median3(ISAd, first, middle, last - 1); in tr_pivot() 179 return tr_median5(ISAd, first, first + t, middle, last - 1 - t, last - 1); in tr_pivot() 185 last = tr_median3(ISAd, last - 1 - (t << 1), last - 1 - t, last - 1); in tr_pivot() 186 return tr_median3(ISAd, first, middle, last); in tr_pivot() 223 saidx_t *first, saidx_t *middle, saidx_t *last, in tr_partition() argument 229 for(b = middle - 1; (++b < last) && ((x = ISAd[*b]) == v);) { } in tr_partition() [all …]
|
H A D | sssort.c | 168 saidx_t *first, saidx_t *last, saidx_t depth) { in ss_insertionsort() argument 173 for(i = last - 2; first <= i; --i) { in ss_insertionsort() 175 do { *(j - 1) = *j; } while((++j < last) && (*j < 0)); in ss_insertionsort() 176 if(last <= j) { break; } in ss_insertionsort() 263 ss_pivot(const sauchar_t *Td, const saidx_t *PA, saidx_t *first, saidx_t *last) { in ss_pivot() argument 267 t = last - first; in ss_pivot() 272 return ss_median3(Td, PA, first, middle, last - 1); in ss_pivot() 275 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1); in ss_pivot() 281 last = ss_median3(Td, PA, last - 1 - (t << 1), last - 1 - t, last - 1); in ss_pivot() 282 return ss_median3(Td, PA, first, middle, last); in ss_pivot() [all …]
|
/freebsd/sys/contrib/zstd/lib/dictBuilder/ |
H A D | divsufsort.c | 258 int *first, int *last, int depth) { in ss_insertionsort() argument 263 for(i = last - 2; first <= i; --i) { in ss_insertionsort() 265 do { *(j - 1) = *j; } while((++j < last) && (*j < 0)); in ss_insertionsort() 266 if(last <= j) { break; } in ss_insertionsort() 353 ss_pivot(const unsigned char *Td, const int *PA, int *first, int *last) { in ss_pivot() argument 357 t = last - first; in ss_pivot() 362 return ss_median3(Td, PA, first, middle, last - 1); in ss_pivot() 365 return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1); in ss_pivot() 371 last = ss_median3(Td, PA, last - 1 - (t << 1), last - 1 - t, last - 1); in ss_pivot() 372 return ss_median3(Td, PA, first, middle, last); in ss_pivot() [all …]
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | stringprep.py | 80 last = 0 82 if last: 83 if last[0] == x[0]: 84 last = (last[0], last[1], last[2], last[3] + x[3]) 86 ret.append(last) 87 last = x 89 last = x 90 if last: 91 ret.append(last)
|
H A D | test-normalize.c | 50 char *last; in parse_vector() local 55 for(n = strtok_r(buf, " ", &last); in parse_vector() 57 n = strtok_r(NULL, " ", &last)) { in parse_vector() 85 char *last; in test() local 95 c = strtok_r(buf, ";", &last); in test() 100 if (strtok_r(NULL, ";", &last) == NULL) in test() 102 if (strtok_r(NULL, ";", &last) == NULL) in test() 104 c = strtok_r(NULL, ";", &last); in test() 108 if (strtok_r(NULL, ";", &last) == NULL) in test() 110 c = last; in test()
|
/freebsd/contrib/mandoc/ |
H A D | man_macro.c | 102 n = man->last; in man_unscope() 124 man->last = n; in man_unscope() 126 roff_node_delete(man, man->last); in man_unscope() 143 man->last = n; in man_unscope() 145 man->last->flags |= NODE_VALID; in man_unscope() 155 man->next = (man->last == to) ? in man_unscope() 171 n = man->last; in rew_scope() 197 n = man->last; in rew_scope() 220 for (nn = man->last->parent; nn; nn = nn->parent) in blk_close() 251 for (nn = man->last->parent; nn; nn = nn->parent) in blk_close() [all …]
|
H A D | mdoc_validate.c | 313 n = mdoc->last; in mdoc_validate() 331 mdoc->last = mdoc->last->child; in mdoc_validate() 332 while (mdoc->last != NULL) { in mdoc_validate() 334 if (mdoc->last == n) in mdoc_validate() 335 mdoc->last = mdoc->last->child; in mdoc_validate() 337 mdoc->last = mdoc->last->next; in mdoc_validate() 342 mdoc->last = n; in mdoc_validate() 366 check_args(mdoc, mdoc->last); in mdoc_validate() 376 if (n->last != NULL) in mdoc_validate() 377 n->last->flags &= ~NODE_DELIMO; in mdoc_validate() [all …]
|
H A D | man.c | 47 if (man->last->type != ROFFT_EQN || ln > man->last->line) in man_parseln() 82 while (man->last->parent->type != ROFFT_ROOT && in man_descope() 83 man_macro(man->last->parent->tok)->flags & MAN_ESCOPED) in man_descope() 84 man_unscope(man, man->last->parent); in man_descope() 97 man_unscope(man, man->last->parent); in man_descope() 98 roff_body_alloc(man, line, offs, man->last->tok); in man_descope() 130 if (man->last->tok == MAN_SH || man->last->tok == MAN_SS) in man_ptext() 132 if (man->last->type == ROFFT_TEXT && in man_ptext() 133 ((ep = man_hasc(man->last->string)) != NULL)) { in man_ptext() 172 man->last->flags |= NODE_EOS; in man_ptext() [all …]
|
/freebsd/usr.bin/mkuzip/ |
H A D | mkuz_fqueue.c | 71 fqp->last = ip; in mkuz_fqueue_enq() 92 fqp->last = cip_l; in mkuz_fqueue_enq_all() 110 for (ip = fqp->last; ip != NULL; ip = ip->prev) { in mkuz_fqueue_check() 125 while (fqp->last == NULL || !mkuz_fqueue_check(fqp, cmp_cb, cap)) { in mkuz_fqueue_deq_when() 128 if (cmp_cb(fqp->last->this, cap)) { in mkuz_fqueue_deq_when() 129 mip = fqp->last; in mkuz_fqueue_deq_when() 130 fqp->last = mip->prev; in mkuz_fqueue_deq_when() 131 if (fqp->last == NULL) { in mkuz_fqueue_deq_when() 141 newfirst = newlast = fqp->last; in mkuz_fqueue_deq_when() 143 for (ip = fqp->last->prev; ip != NULL; ip = ip->prev) { in mkuz_fqueue_deq_when() [all …]
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | chem.awk | 21 last = OTHER 154 printf("%s from last [].sw+(%g,0) to last [].sw to last [].nw to last [].nw+(%g,0)\n", 156 printf("%s from last [].se-(%g,0) to last [].se to last [].ne to last [].ne-(%g,0)\n", 174 n, $0, leave(type,dir+180), leave(last,dir) 185 last = type 187 labsave(lastname, last, dir) 188 labsave(n, last, dir) 236 fused = joinring(typeint, dir, last) 240 last = typeint 242 labsave(lastname, last, dir) [all …]
|
/freebsd/bin/mkdir/ |
H A D | mkdir.c | 131 int first, last, retval; in build() local 139 for (first = 1, last = 0; !last ; ++p) { in build() 141 last = 1; in build() 145 if (!last && p[1] == '\0') in build() 146 last = 1; in build() 165 if (last) in build() 167 if (mkdir(path, last ? omode : S_IRWXU | S_IRWXG | S_IRWXO) < 0) { in build() 174 if (last) in build() 182 if (last) in build() 191 if (!last) in build() [all …]
|
/freebsd/contrib/libxo/tests/core/saved/ |
H A D | test_07.X.out | 1 …last-name>გთხოვთ ახ</last-name><department>431</department><percent-time>90</percent-time><columns…
|
H A D | test_07.XP.out | 16 <last-name>გთხოვთ ახ</last-name> 25 <last-name>Οὐχὶ ταὐτὰ παρίσταταί μοι Jones</last-name> 34 <last-name>Patterson</last-name> 43 <last-name>Meter & Smith</last-name> 51 <last-name>012345678901234567890</last-name> 59 <last-name>საერთაშორისო</last-name>
|
H A D | test_05.XP.out | 35 <last-name>გთხოვთ ახ</last-name> 43 <last-name>Οὐχὶ ταὐτὰ παρίσταταί μοι Jones</last-name> 51 <last-name>Patterson</last-name> 59 <last-name>Meter & Smith</last-name> 66 <last-name>012345678901234567890</last-name> 73 <last-name>საერთაშორისო</last-name> 81 <last-name>෴ණ්ණ෴෴ණ්ණ෴෴ණ්ණ෴෴෴</last-name>
|
H A D | test_05.X.out | 1 …last-name>გთხოვთ ახ</last-name><department>431</department><percent-time>90</percent-time><benefit…
|
/freebsd/usr.bin/seq/ |
H A D | seq.c | 89 double first, last, incr, prev, cur, step; in main() local 95 last = incr = prev = 0.0; in main() 147 last = e_atof(argv[argc - 1]); in main() 156 errx(1, "zero %screment", (first < last) ? "in" : "de"); in main() 161 incr = (first < last) ? 1.0 : -1.0; in main() 163 if (incr <= 0.0 && first < last) in main() 166 if (incr >= 0.0 && first > last) in main() 180 fmt = generate_format(first, incr, last, equalize, pad); in main() 182 for (step = 1, cur = first; incr > 0 ? cur <= last : cur >= last; in main() 200 asprintf(&last_print, fmt, last) < 0 || in main() [all …]
|
/freebsd/contrib/bmake/ |
H A D | lst.c | 104 list->last = ln; in Lst_Prepend() 119 ln = LstNodeNew(list->last, NULL, datum); in Lst_Append() 121 if (list->last == NULL) { in Lst_Append() 123 list->last = ln; in Lst_Append() 125 list->last->next = ln; in Lst_Append() 126 list->last = ln; in Lst_Append() 146 if (list->last == ln) in Lst_Remove() 147 list->last = ln->prev; in Lst_Remove() 198 src->first->prev = dst->last; in Lst_MoveAll() 199 if (dst->last ! in Lst_MoveAll() [all...] |
/freebsd/contrib/ncurses/progs/ |
H A D | tabs.c | 91 int last = 1; in do_tabs() local 100 if (last < stop) { in do_tabs() 101 while (last++ < stop) { in do_tabs() 102 if (last > max_cols) in do_tabs() 109 last = stop; in do_tabs() 188 int last = 0; in print_ruler() local 205 for (n = 0, last = 0; (tab_list[n] > 0) && (last < max_cols); ++n) { in print_ruler() 208 while (++last < stop) { in print_ruler() 209 if (last <= max_cols) { in print_ruler() 215 if (last <= max_cols) { in print_ruler() [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/hash/ |
H A D | h_hash.c | 71 #define CHOMP(buf, len, last) \ argument 76 last = 1; \ 84 int len, outlen, last; in regress() local 87 last = 0; in regress() 90 CHOMP(buf, len, last); in regress() 96 while (!last && in regress() 99 CHOMP(buf, len, last); in regress() 109 while (!last && in regress() 112 CHOMP(buf, len, last); in regress()
|
/freebsd/contrib/netbsd-tests/lib/libc/regex/ |
H A D | debug.c | 57 int last; in regprint() local 99 last = -1; in regprint() 102 if (last < 0) { in regprint() 104 last = c; in regprint() 107 if (last >= 0) { in regprint() 108 if (last != c-1) in regprint() 111 last = -1; in regprint() 129 ssize_t last; in s_print() local 177 last = -1; in s_print() 180 if (last < 0) { in s_print() [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/gen/ |
H A D | t_randomid.c | 41 uint32_t last[65536]; variable 56 memset(last, 0, sizeof(last)); in ATF_TC_BODY() 64 if (last[id] > 0) { in ATF_TC_BODY() 65 diff = n - last[id]; in ATF_TC_BODY() 73 id, last[id], n, diff, lowest); in ATF_TC_BODY() 83 last[id] = n; in ATF_TC_BODY()
|
/freebsd/sbin/ipf/libipf/ |
H A D | ipft_tx.c | 232 char *last; in parseline() local 234 last = strchr(*cpp, ','); in parseline() 235 if (!last) { in parseline() 239 *last++ = '\0'; in parseline() 240 tcp->th_sport = htons(tx_portnum(last)); in parseline() 252 char *last; in parseline() local 254 last = strchr(*cpp, ','); in parseline() 255 if (!last) { in parseline() 259 *last++ = '\0'; in parseline() 260 tcp->th_dport = htons(tx_portnum(last)); in parseline() [all …]
|
/freebsd/contrib/wpa/src/utils/ |
H A D | edit.c | 178 struct edit_history *h, *match = NULL, *last = NULL; in history_add() local 189 last = h; in history_add() 200 if (count >= HISTORY_MAX && last) { in history_add() 201 dl_list_del(&last->list); in history_add() 202 os_free(last); in history_add() 561 static enum edit_key_code esc_seq_to_key1_no(char last) in esc_seq_to_key1_no() argument 563 switch (last) { in esc_seq_to_key1_no() 578 static enum edit_key_code esc_seq_to_key1_shift(char last) in esc_seq_to_key1_shift() argument 580 switch (last) { in esc_seq_to_key1_shift() 595 static enum edit_key_code esc_seq_to_key1_alt(char last) in esc_seq_to_key1_alt() argument [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | charconv | 34 constexpr to_chars_result to_chars(char* first, char* last, see below value, 36 to_chars_result to_chars(char* first, char* last, bool value, 39 to_chars_result to_chars(char* first, char* last, float value); 40 to_chars_result to_chars(char* first, char* last, double value); 41 to_chars_result to_chars(char* first, char* last, long double value); 43 to_chars_result to_chars(char* first, char* last, float value, 45 to_chars_result to_chars(char* first, char* last, double value, 47 to_chars_result to_chars(char* first, char* last, long double value, 50 to_chars_result to_chars(char* first, char* last, float value, 52 to_chars_result to_chars(char* first, char* last, double value, [all …]
|