Home
last modified time | relevance | path

Searched refs:repeat (Results 1 – 25 of 95) sorted by relevance

1234

/titanic_54/usr/src/contrib/ast/src/cmd/ksh93/edit/
H A Dvi.c118 int repeat; /* repeat count for motion cmds */ member
396 vp->repeat = 1; in ed_viread()
729 vp->repeat = 1; in cntlmode()
757 vp->lastrepeat = vp->repeat; in cntlmode()
765 vp->repeat = 1; in cntlmode()
774 vp->repeat = vp->lastrepeat; in cntlmode()
793 vp->lastrepeat = vp->repeat; in cntlmode()
795 vp->repeat = 1; in cntlmode()
869 curhline += vp->repeat; in cntlmode()
912 curhline -= vp->repeat; in cntlmode()
[all …]
/titanic_54/usr/src/lib/efcode/fcode_test/
H A Dloop.fth26 ." Interactive begin .. while .. repeat: "
27 " no loop (1) " 1 begin 0 while 1- repeat .passed?
28 " loop to 0 (1)" 9 begin dup while 1- repeat 0= .passed?
30 ." Compiled begin .. while .. repeat: "
31 : btest1 1 begin 0 while 1- repeat .passed? ;
32 : btest2 9 begin dup while 1- repeat 0= .passed? ;
/titanic_54/usr/src/lib/libcommputil/common/
H A Dsdp.c730 sdp_repeat_t *repeat; in sdp_get_length() local
771 repeat = time->t_repeat; in sdp_get_length()
772 while (repeat != NULL) { in sdp_get_length()
774 len += snprintf(buf, 1, "%llu", repeat->r_interval); in sdp_get_length()
775 len += snprintf(buf, 1, "%llu", repeat->r_duration) + 1; in sdp_get_length()
776 list = repeat->r_offset; in sdp_get_length()
782 repeat = repeat->r_next; in sdp_get_length()
834 sdp_repeat_t *repeat; in sdp_clone_session() local
891 repeat = time->t_repeat; in sdp_clone_session()
892 while (repeat != NULL) { in sdp_clone_session()
[all …]
H A Dsdp_parse_helper.c178 sdp_free_repeat(sdp_repeat_t *repeat) in sdp_free_repeat() argument
182 while (repeat != NULL) { in sdp_free_repeat()
183 next_repeat = repeat->r_next; in sdp_free_repeat()
184 sdp_free_list(repeat->r_offset); in sdp_free_repeat()
185 free(repeat); in sdp_free_repeat()
186 repeat = next_repeat; in sdp_free_repeat()
H A Dsdp_parse.c586 sdp_repeat_t *repeat; in sdp_parse_repeat() local
616 repeat = time->t_repeat; in sdp_parse_repeat()
617 if (repeat == NULL) { in sdp_parse_repeat()
620 while (repeat->r_next != NULL) in sdp_parse_repeat()
621 repeat = repeat->r_next; in sdp_parse_repeat()
622 repeat->r_next = new_repeat; in sdp_parse_repeat()
666 if (repeat != NULL) in sdp_parse_repeat()
667 repeat->r_next = NULL; in sdp_parse_repeat()
/titanic_54/usr/src/cmd/csplit/
H A Dcsplit.c450 offset_t repeat, toline; in num_arg() local
467 if ((asc_to_ll(rep, &repeat) == ERR) || repeat < 0L) in num_arg()
471 for (; repeat > 0LL; repeat--) { in num_arg()
476 for (; repeat > 0LL; repeat--) in num_arg()
/titanic_54/usr/src/boot/sys/boot/forth/
H A Dpnp.4th69 repeat
85 repeat
95 repeat
123 repeat
135 repeat
145 repeat
201 repeat
H A Dsupport.4th190 repeat
213 while 1+ swap 1- repeat
225 while 1+ swap 1- repeat
227 repeat
354 repeat
369 repeat
432 repeat
529 repeat
541 repeat
555 repeat
[all …]
H A Dbeadm.4th56 repeat
75 repeat
103 repeat
135 repeat
357 repeat
476 repeat
/titanic_54/usr/src/common/ficl/softcore/
H A Dficl.fr29 repeat 2drop 0 0 (local)
71 repeat $7F xor 2* or
72 begin dup $80 u< 0= while emit repeat drop
H A Djhlocal.fr120 repeat
152 repeat
165 repeat
181 repeat
205 repeat
218 repeat
H A Dficllocal.fr25 repeat
39 repeat
/titanic_54/usr/src/cmd/vgrind/
H A Dvgrindefs.src33 read readln readonly record recursive rem rep repeat res\
45 program record repeat set then to type until var while with oct hex\
58 neq next not or otherwise repeat restart resume sr0 sr1 srd srr sl0 sl1\
75 glob goto history if logout nice nohup onintr repeat set\
96 repeat return static suspend then to until using while\
108 real repeat return select string subroutine substr until:
111 :bb=\d(begin|case|for|if|loop|record|repeat|while|with)\d:\
121 record repeat return set then to type\
/titanic_54/usr/src/lib/libnisdb/
H A Dldap_val.c279 n[c].repeat = val[c].repeat; in cloneValue()
622 val->repeat = item->repeat; in getMappingItemVal()
919 if (!v1->repeat && !v2->repeat) in explodeValues()
921 else if (v1->repeat && !v2->repeat) in explodeValues()
923 else if (!v1->repeat && v2->repeat) in explodeValues()
937 if (!v1->repeat && !v2->repeat) { in explodeValues()
963 } else if (v1->repeat && !v2->repeat) { in explodeValues()
989 } else if (!v1->repeat && v2->repeat) { in explodeValues()
1052 v->repeat = 0; in explodeValues()
1281 val->repeat = i->repeat; in getMappingItem()
[all …]
H A Dldap_ruleval.c372 inVal[num].repeat = 0; in addVal2RuleValue()
480 int repeat = 0; in buildLvalue() local
487 repeat = r->repeat; in buildLvalue()
525 if (repeat && val != 0) in buildLvalue()
526 val->repeat = repeat; in buildLvalue()
771 if (!lval->repeat) { in addLdapRuleValue()
H A Dldap_structs.h61 int repeat; /* Should value be repeated ? */ member
H A Dldap_nisdbquery.c343 int repeat; in createQuery() local
388 for (i = 0, repeat = 1; i < rvq->numColumns; i++) { in createQuery()
417 if (r >= repeat) { in createQuery()
424 repeat *= rvq->colVal[i].numVals; in createQuery()
802 if (lval->numVals == 1 && lval->repeat) in createNisPlusEntry()
804 else if (lval->numVals > 1 && rval->repeat) in createNisPlusEntry()
/titanic_54/usr/src/lib/libsqlite/test/
H A Ddate.test119 proc repeat {n txt} {
127 datetest 3.16 "strftime('[repeat 200 %Y]','2003-10-31')" [repeat 200 2003]
128 datetest 3.17 "strftime('[repeat 200 abc%m123]','2003-10-31')" \
129 [repeat 200 abc10123]
/titanic_54/usr/src/lib/libc/i386/gen/
H A Dstrchr.s80 lea -0x01010101(%ebx), %ecx / repeat with tmpword
84 jz searchchar / repeat if char not found
/titanic_54/usr/src/cmd/tr/
H A Dstr.c145 goto repeat;
155 goto repeat;
160 repeat:
/titanic_54/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs_msg.c178 log->repeat++; in emlxs_msg_log()
183 } else if (log->repeat) { in emlxs_msg_log()
226 log->repeat); in emlxs_msg_log()
234 log->repeat = 0; in emlxs_msg_log()
/titanic_54/usr/src/lib/libtecla/common/
H A Dgetline.c250 ViRepeat repeat; /* Information needed to implement the vi */ member
1820 gl->vi.repeat.action.fn = 0; in new_GetLine()
1821 gl->vi.repeat.action.data = 0; in new_GetLine()
1822 gl->vi.repeat.count = 0; in new_GetLine()
1823 gl->vi.repeat.input_curpos = 0; in new_GetLine()
1824 gl->vi.repeat.command_curpos = 0; in new_GetLine()
1825 gl->vi.repeat.input_char = '\0'; in new_GetLine()
1826 gl->vi.repeat.saved = 0; in new_GetLine()
1827 gl->vi.repeat.active = 0; in new_GetLine()
7130 if(gl->vi.repeat.active) { in KT_KEY_FN()
[all …]
/titanic_54/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
H A Demlxs_msg.h104 uint32_t repeat; /* repeat counter */ member
/titanic_54/usr/src/tools/cscope-fast/
H A Dcommand.c335 goto repeat; in command()
359 goto repeat; in command()
405 repeat: in command()
/titanic_54/usr/src/lib/pam_modules/authtok_check/
H A Dauthtok_check.c446 uint_t repeat = 1; in check_composition() local
472 if (++repeat > maxrepeat) in check_composition()
473 maxrepeat = repeat; in check_composition()
475 repeat = 1; in check_composition()

1234