/titanic_44/usr/src/lib/efcode/fcode_test/ |
H A D | loop.fth | 26 ." 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_44/usr/src/lib/libcommputil/common/ |
H A D | sdp.c | 730 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 D | sdp_parse_helper.c | 178 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 D | sdp_parse.c | 586 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_44/usr/src/cmd/csplit/ |
H A D | csplit.c | 450 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_44/usr/src/lib/libshell/common/edit/ |
H A D | vi.c | 123 int repeat; /* repeat count for motion cmds */ member 401 vp->repeat = 1; in ed_viread() 730 vp->repeat = 1; in cntlmode() 756 vp->lastrepeat = vp->repeat; in cntlmode() 764 vp->repeat = 1; in cntlmode() 773 vp->repeat = vp->lastrepeat; in cntlmode() 792 vp->lastrepeat = vp->repeat; in cntlmode() 794 vp->repeat = 1; in cntlmode() 857 curhline += vp->repeat; in cntlmode() 887 curhline -= vp->repeat; in cntlmode() [all …]
|
/titanic_44/usr/src/cmd/vgrind/ |
H A D | vgrindefs.src | 33 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_44/usr/src/lib/libnisdb/ |
H A D | ldap_val.c | 278 n[c].repeat = val[c].repeat; in cloneValue() 621 val->repeat = item->repeat; in getMappingItemVal() 918 if (!v1->repeat && !v2->repeat) in explodeValues() 920 else if (v1->repeat && !v2->repeat) in explodeValues() 922 else if (!v1->repeat && v2->repeat) in explodeValues() 936 if (!v1->repeat && !v2->repeat) { in explodeValues() 962 } else if (v1->repeat && !v2->repeat) { in explodeValues() 988 } else if (!v1->repeat && v2->repeat) { in explodeValues() 1051 v->repeat = 0; in explodeValues() 1280 val->repeat = i->repeat; in getMappingItem() [all …]
|
H A D | ldap_ruleval.c | 371 inVal[num].repeat = 0; in addVal2RuleValue() 484 int repeat = 0; in buildLvalue() local 491 repeat = r->repeat; in buildLvalue() 529 if (repeat && val != 0) in buildLvalue() 530 val->repeat = repeat; in buildLvalue() 777 if (!lval->repeat) { in addLdapRuleValue()
|
H A D | ldap_structs.h | 61 int repeat; /* Should value be repeated ? */ member
|
H A D | ldap_nisdbquery.c | 343 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_44/usr/src/lib/libsqlite/test/ |
H A D | date.test | 119 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_44/usr/src/lib/libc/i386/gen/ |
H A D | strchr.s | 80 lea -0x01010101(%ebx), %ecx / repeat with tmpword 84 jz searchchar / repeat if char not found
|
/titanic_44/usr/src/cmd/tr/ |
H A D | str.c | 145 goto repeat; 155 goto repeat; 160 repeat:
|
/titanic_44/usr/src/uts/common/io/fibre-channel/fca/emlxs/ |
H A D | emlxs_msg.c | 178 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_44/usr/src/lib/libtecla/common/ |
H A D | getline.c | 250 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_44/usr/src/uts/common/sys/fibre-channel/fca/emlxs/ |
H A D | emlxs_msg.h | 104 uint32_t repeat; /* repeat counter */ member
|
/titanic_44/usr/src/tools/cscope-fast/ |
H A D | command.c | 335 goto repeat; in command() 359 goto repeat; in command() 405 repeat: in command()
|
/titanic_44/usr/src/lib/pam_modules/authtok_check/ |
H A D | authtok_check.c | 446 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()
|
/titanic_44/usr/src/lib/libc/port/locale/ |
H A D | regcomp.c | 98 static void repeat(struct parse *p, sopno start, int from, int to); 460 repeat(p, pos, count, count2); in p_ere_exp() 638 repeat(p, pos, count, count2); in p_simp_re() 985 repeat(struct parse *p, in repeat() function 1011 repeat(p, start+1, 1, to); in repeat() 1031 repeat(p, copy, 1, to-1); in repeat() 1039 repeat(p, copy, from-1, to-1); in repeat() 1043 repeat(p, copy, from-1, to); in repeat()
|
/titanic_44/usr/src/lib/libbc/libc/gen/common/ |
H A D | hsearch.c | 57 #define repeat for(;;) macro 160 repeat { in main()
|
/titanic_44/usr/src/psm/stand/bootblks/common/ |
H A D | boot.fth | 189 repeat 269 repeat 2drop ( name$ ) 317 repeat 2drop 2drop ( ) 435 repeat 442 repeat 518 repeat
|
/titanic_44/usr/src/cmd/fm/fminject/common/ |
H A D | inj_lex.l | 88 <S0>repeat { return (INJ_TOK_REPEAT); }
|
/titanic_44/usr/src/lib/cfgadm_plugins/shp/common/ |
H A D | shp.c | 787 prt_led_mode(const char *ap_id, int repeat, char **errstring, in prt_led_mode() argument 809 if (!repeat) in prt_led_mode() 885 int len, fd, i = 0, repeat = 0; in cfga_private_func() local 904 repeat = 1; in cfga_private_func() 982 return (prt_led_mode(ap_id, repeat, errstring, in cfga_private_func()
|
/titanic_44/usr/src/lib/libc/port/gen/ |
H A D | hsearch.c | 66 #define repeat for (;;) macro 161 repeat { in main()
|