/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | sort.pm | 67 sub current { subroutine 95 my $current = sort::current(); # identify prevailing algorithm 161 print sort::current . "\n"; 165 print sort::current . "\n"; 185 print sort::current . "\n"; 190 print sort::current . "\n";
|
/osnet-11/usr/src/lib/libeti/menu/common/ |
H A D | chk.c | 41 _chk_top(MENU *m, int *top, ITEM *current) argument 43 if (Y(current) < *top) { 44 *top = Y(current); 46 if (Y(current) >= *top + Height(m)) { 47 *top = Y(current) - Height(m) + 1; 53 * relative to current. It is only used when current is 58 _chk_current(MENU *m, int *top, ITEM *current) argument 60 if (Y(current) < *top) { 61 *top = Y(current); [all...] |
H A D | topitem.c | 41 ITEM *current; local 58 /* Set current to toprow */ 59 current = IthItem(m, RowMajor(m) ? top * Cols(m) : top); 62 _affect_change(m, top, current);
|
H A D | curitem.c | 39 set_current_item(MENU *m, ITEM *current) argument 43 if (m && current && Imenu(current) == m) { 47 if (current != Current(m)) { 53 _chk_current(m, &top, current); 58 _affect_change(m, top, current);
|
H A D | driver.c | 43 ITEM *current; local 57 current = Current(m); 72 if (Right(current) == (ITEM *)0) { 76 current = Right(current); 80 if (Left(current) == (ITEM *)0) { 84 current = Left(current); 88 if (Up(current) == (ITEM *)0) { 92 current [all...] |
H A D | pattern.c | 62 _match(MENU *m, char c, ITEM **current) argument 67 * Indicates search has cycled past the current item. If the current 73 /* current item. Otherwise, search forward from the current item. */ 75 i = Index(*current); 109 if (i == Index(*current) && cycled) { 112 *current = IthItem(m, i); 141 ITEM *current; local 165 current [all...] |
/osnet-11/usr/src/lib/libldap4/common/ |
H A D | notif.c | 21 LDAPMessage *ldap_next_notif(LDAP *ld, LDAPMessage *current) argument 23 if ( current == NULLMSG ) 26 return current->lm_next;
|
/osnet-11/usr/src/cmd/sendmail/libsm/ |
H A D | config.c | 43 char **current; local 66 for (current = environ; *current != NULL; current++) 70 if (strncmp(str, *current, matchlen) == 0) 73 *current = (char *) str; 138 ** deleted from the current environment. 144 ** environ -- a pointer to the current environment.
|
/osnet-11/usr/src/lib/libc/port/fp/ |
H A D | file_decim.c | 58 int current; /* *cp or EOF */ local 64 current = ((pf->_flag & _IOWRT) ? \ 67 if (current != EOF) { \ 68 *++cp = (char)current; \ 72 current = EOF; \ 85 if (cp >= *ppc && current != EOF && myungetc(current, pf)
|
H A D | func_decim.c | 44 int current; /* *cp or EOF */ local 49 current = (*pget)(); \ 50 if (current != EOF) { \ 51 *++cp = (char)current; \ 55 current = EOF; \
|
H A D | string_decim.c | 43 int current; /* *cp or EOF */ local 46 current = (unsigned char)*cp; 50 current = (unsigned char)*++cp; \ 53 current = EOF; \
|
/osnet-11/usr/src/lib/libcommputil/common/ |
H A D | commp_util.c | 57 * Finds the token in the char buffer. *current will be pointing to the 62 commp_find_token(const char **begin, const char **current, const char *end, argument 65 *current = *begin; 66 while (*current < end) { 67 if (!last && (**current == token)) 69 else if (isspace(**current)) 71 (*current)++; 74 if (*current == *begin)
|
H A D | sdp_parse_helper.c | 338 const char *current; local 344 current = buf; 345 end = current + len; 347 if (commp_skip_white_space(¤t, end) != 0) 349 while (current < end) { 350 (void) commp_skip_white_space(¤t, end); 351 begin = current; 352 while (current < end) { 353 if (isspace(*current)) 355 ++current; [all...] |
/osnet-11/usr/src/lib/sun_fc/common/ |
H A D | Sun_fcGetFcpTargetMapping.cc | 75 HBA_UINT32 current = 0; local 116 for (count = current; count < limit; count++) { 118 &mappingV2->entry[count-current].ScsiId, 121 &mappingV2->entry[count-current].FcpId, 124 current = mapping->NumberOfEntries;
|
/osnet-11/usr/src/lib/efcode/fcdriver/ |
H A D | phandle.c | 140 device_t *current; local 151 current = MYSELF->device; 152 ASSERT(current); 163 pd->parent = (fc_phandle_t) revert_phandle(env, current->parent); 165 current->private = pd; 171 add_my_handle(env, pd->node, current);
|
H A D | build_tree.c | 141 device_t *current, *attach; local 176 env->attachment_pt = current = attach = env->current_device; 181 current->private = pd; 182 add_my_handle(env, pd->node, current); 183 install_property_vectors(env, current); 184 current = current->parent; 187 for (current = attach; current != NULL; current [all...] |
/osnet-11/usr/src/cmd/sendmail/db/log/ |
H A D | log_put.c | 115 /* Point the current LSN to the new file. */ 177 * Flush the current buffer contents to disk. 265 int current, ret; local 284 "log_flush: LSN past current end-of-log"); 298 * We may need to write the current buffer. We have to write the 299 * current buffer if the flush LSN is greater than or equal to the 302 current = 0; 308 current = 1; 327 * Set the last-synced LSN, using the LSN of the current buffer. If 328 * the current buffe [all...] |
/osnet-11/usr/src/lib/libsip/common/ |
H A D | sip_timeout.c | 95 sip_timeout_t *current, *last; local 104 current = timeout_current_start; 105 while (current != NULL) { 106 if (current->sip_timeout_id == id) { 107 if (current == timeout_current_start) { 109 current->sip_timeout_next; 112 current->sip_timeout_next; 114 if (current == timeout_current_end) 116 if (current->sip_timeout_callback_func_arg != 118 free(current 174 sip_timeout_t *current; local [all...] |
/osnet-11/usr/src/lib/libinstzones/common/ |
H A D | zones_str.c | 185 char *current; local 214 while ((current = strtok_r(NULL, a_separators, &lasts)) != 216 if (strcmp(current, a_token) == 0) {
|
/osnet-11/usr/src/lib/crypt_modules/bsdbf/ |
H A D | blowfish.c | 425 Blowfish_stream2word(const uint8_t *data, uint16_t databytes, uint16_t *current) argument 433 j = *current; 441 *current = j;
|
/osnet-11/usr/src/lib/libc/port/i18n/ |
H A D | wstod.c | 191 wchar_t current; /* always equal to *cp */ local 207 * condition (current == decpt) will correctly detect it. 221 current = *cp; 222 while (iswspace((wint_t)current)) 223 current = *++cp; 226 if (current == L'+') { 227 current = *++cp; 228 } else if (current == L'-') { 230 current = *++cp; 239 if (L'1' <= current [all...] |
/osnet-11/usr/src/lib/libuvfs/common/ |
H A D | door.c | 210 uint32_t current; local 212 current = atomic_add_32_nv(&fs->fs_cur_dthreads, 1); 213 if (current > fs->fs_max_dthreads) {
|
/osnet-11/usr/src/lib/libnisdb/ |
H A D | db_index_entry.cc | 77 current, // current pointer of this list local 78 other, // current pointer of updated list2 91 for (current = this; (current != NULL) && (otherstart != NULL); 92 current = current->next_result) { 93 /* find 'current' in 'other' list */ 98 if (current->location == other->location) 112 /* add 'current' t [all...] |
/osnet-11/usr/src/lib/libpkg/common/ |
H A D | pkgstr.c | 679 char *current; local 717 while ((current = strtok_r((char *)NULL, a_separators, &lasts)) != 719 if (streq(current, a_token)) {
|
/osnet-11/usr/src/lib/libeti/form/common/ |
H A D | chg_data.c | 86 BOOLEAN current = Status(f, POSTED) && c == C(f); local 96 if (current && Status(f, WIN_CHG)) { 143 if (current) { 224 * on the screen at Y(f), X(f). this routine checks to see if the current 417 * if current line can fit on preceding 418 * join current line with preceding line 468 /* _del_line - delete current line */ 572 * in current field at cursor position 577 FIELD * c = C(f); /* current field */
|