| /trueos/contrib/ntp/sntp/ |
| HD | timing.c | 61 struct timeval old, new, adjust, previous; in adjust_time() local 97 previous.tv_sec = 0; in adjust_time() 98 previous.tv_usec = 0; in adjust_time() 100 if (adjtime(&adjust,&previous)) in adjust_time() 102 if (previous.tv_sec != 0 || previous.tv_usec != 0) { in adjust_time() 104 (long)previous.tv_sec,(long)previous.tv_usec); in adjust_time() 105 if (previous.tv_sec+1.0e-6*previous.tv_usec > ignore) in adjust_time()
|
| HD | main.c | 904 data_record *record, double *previous, double *when, double *correction) { in handle_saving() argument 913 double previous, when, correction; in handle_saving() member 935 buffer.previous,buffer.when,buffer.correction); in handle_saving() 970 buffer.waiting > delay || buffer.previous > buffer.when || in handle_saving() 971 buffer.previous < buffer.when-count*delay || in handle_saving() 1017 *previous = buffer.previous; in handle_saving() 1030 argv0,*previous,*when,*correction); in handle_saving() 1046 buffer.previous = *previous; in handle_saving() 1062 *previous,*when,*correction); in handle_saving() 1090 double previous, when, correction = 0.0, offset = 0.0, error = -1.0, in query_savefile() local [all …]
|
| /trueos/contrib/ofed/management/opensm/opensm/ |
| HD | osm_perfmgr_db.c | 251 perfmgr_db_err_reading_t *previous = NULL; in perfmgr_db_add_err_reading() local 261 previous = &(node->ports[port].err_previous); in perfmgr_db_add_err_reading() 265 epi_pe_data.time_diff_s = (reading->time - previous->time); in perfmgr_db_add_err_reading() 271 (reading->symbol_err_cnt - previous->symbol_err_cnt); in perfmgr_db_add_err_reading() 274 (reading->link_err_recover - previous->link_err_recover); in perfmgr_db_add_err_reading() 277 (reading->link_downed - previous->link_downed); in perfmgr_db_add_err_reading() 279 epi_pe_data.rcv_err = (reading->rcv_err - previous->rcv_err); in perfmgr_db_add_err_reading() 282 (reading->rcv_rem_phys_err - previous->rcv_rem_phys_err); in perfmgr_db_add_err_reading() 285 (reading->rcv_switch_relay_err - previous->rcv_switch_relay_err); in perfmgr_db_add_err_reading() 289 (reading->xmit_discards - previous->xmit_discards); in perfmgr_db_add_err_reading() [all …]
|
| /trueos/contrib/libarchive/libarchive/ |
| HD | archive_entry_link_resolver.c | 72 struct links_entry *previous; member 297 if (le->previous != NULL) in find_entry() 298 le->previous->next = le->next; in find_entry() 300 le->next->previous = le->previous; in find_entry() 337 le->next->previous = le->previous; in next_entry() 338 if (le->previous != NULL) in next_entry() 339 le->previous->next = le->next; in next_entry() 373 res->buckets[bucket]->previous = le; in insert_entry() 376 le->previous = NULL; in insert_entry() 409 new_buckets[bucket]->previous = le; in grow_hash() [all …]
|
| /trueos/sys/kern/ |
| HD | subr_acl_nfs4.c | 370 struct acl_entry *entry, *copy, *previous, in acl_nfs4_sync_acl_from_mode_draft() local 468 previous = &(aclp->acl_entry[i - 1]); in acl_nfs4_sync_acl_from_mode_draft() 473 if (previous->ae_entry_type != ACL_ENTRY_TYPE_DENY) in acl_nfs4_sync_acl_from_mode_draft() 484 if (previous->ae_id != entry->ae_id || in acl_nfs4_sync_acl_from_mode_draft() 485 previous->ae_tag != entry->ae_tag) in acl_nfs4_sync_acl_from_mode_draft() 488 if (previous->ae_flags) in acl_nfs4_sync_acl_from_mode_draft() 497 if (previous->ae_perm & ~(entry->ae_perm)) in acl_nfs4_sync_acl_from_mode_draft() 500 if (previous->ae_perm & ~(ACL_READ_DATA | in acl_nfs4_sync_acl_from_mode_draft() 512 previous = entry; in acl_nfs4_sync_acl_from_mode_draft() 518 previous->ae_tag = entry->ae_tag; in acl_nfs4_sync_acl_from_mode_draft() [all …]
|
| /trueos/contrib/nvi/docs/internals/ |
| HD | context | 3 In historic vi, the previous context mark was always set: 16 In historic vi, the previous context mark was set if the 22 In historic vi, the previous context mark was set if the 30 In historic vi, the previous context mark was set in non-visual
|
| HD | cscope.NOTES | 30 :tagprev move to the previous T 88 Return to the previous tag resulting from a query. 92 Return to the previous tag group (no change). 102 " ^P: move to the previous tag
|
| /trueos/usr.bin/du/ |
| HD | du.c | 348 struct links_entry *previous; in linkchk() member 408 new_buckets[hash]->previous = in linkchk() 411 le->previous = NULL; in linkchk() 430 if (le->previous != NULL) in linkchk() 431 le->previous->next = le->next; in linkchk() 433 le->next->previous = le->previous; in linkchk() 470 le->previous = NULL; in linkchk() 472 buckets[hash]->previous = le; in linkchk()
|
| /trueos/usr.bin/csup/ |
| HD | status.c | 80 struct statusrec *previous; member 243 if (st->previous != NULL && in status_rdraw() 244 statusrec_cmp(st->previous, &sr) >= 0) { in status_rdraw() 250 if (st->previous == NULL) { in status_rdraw() 251 st->previous = &st->buf; in status_rdraw() 253 statusrec_fini(st->previous); in status_rdraw() 254 statusrec_init(st->previous); in status_rdraw() 256 st->previous->sr_type = sr.sr_type; in status_rdraw() 257 st->previous->sr_file = sr.sr_file; in status_rdraw() 259 return (st->previous); in status_rdraw() [all …]
|
| /trueos/contrib/subversion/subversion/libsvn_subr/ |
| HD | cache-membuffer.c | 351 apr_uint32_t previous; member 656 if (entry->previous == NO_INDEX) in drop_entry() 664 entry_t *previous = get_entry(cache, entry->previous); in drop_entry() local 665 cache->current_data = ALIGN_VALUE( previous->offset in drop_entry() 666 + previous->size); in drop_entry() 672 if (entry->previous == NO_INDEX) in drop_entry() 675 get_entry(cache, entry->previous)->next = entry->next; in drop_entry() 678 cache->last = entry->previous; in drop_entry() 680 get_entry(cache, entry->next)->previous = entry->previous; in drop_entry() 697 if (entry->previous == NO_INDEX) in drop_entry() [all …]
|
| /trueos/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | DiagnosticCommonKinds.td | 22 def note_previous_definition : Note<"previous definition is here">; 23 def note_previous_declaration : Note<"previous declaration is here">; 25 "previous implicit declaration is here">; 26 def note_previous_use : Note<"previous use is here">; 27 def note_duplicate_case_prev : Note<"previous case defined here">; 31 /// note_matching - this is used as a continuation of a previous diagnostic,
|
| HD | DiagnosticCommentKinds.td | 55 "previous command '%select{\\|@}0%1' here">; 58 "previous command '%select{\\|@}0%1' (an alias of '\\%2') here">; 100 "previous documentation">; 121 "previous documentation">;
|
| /trueos/libexec/bootpd/ |
| HD | hash.c | 262 hash_member *previous = NULL; local 289 previous = memberptr; 295 previous->next = memberptr = memberptr->next; 303 previous = memberptr;
|
| /trueos/contrib/byacc/test/btyacc/ |
| HD | err_inherit2.error | 1 …e 64 of "./err_inherit2.y", number of arguments of namelist doesn't agree with previous declaration 2 YACC: w - line 64 of "./err_inherit2.y", type of argument 1 to namelist doesn't agree with previous…
|
| /trueos/lib/csu/powerpc64/ |
| HD | crti.S | 36 .previous 52 .previous
|
| /trueos/contrib/gcc/config/rs6000/ |
| HD | ppc-asm.h | 107 .previous; \ 133 .previous; \ 163 .previous
|
| /trueos/cddl/contrib/dtracetoolkit/Examples/ |
| HD | sh_flowtime_example.txt | 29 -> previous line to the start of this function 30 <- previous line to the end of this function 31 > previous line to the end of this builtin 32 | previous line to the end of this command
|
| /trueos/contrib/amd/doc/ |
| HD | am-utils.texi | 469 @comment node-name, next, previous, up 486 @comment node-name, next, previous, up 507 @comment node-name, next, previous, up 538 @comment node-name, next, previous, up 566 @comment node-name, next, previous, up 594 @comment node-name, next, previous, up 643 @comment node-name, next, previous, up 666 @comment node-name, next, previous, up 729 @comment node-name, next, previous, up 754 @comment node-name, next, previous, up [all …]
|
| /trueos/contrib/gcc/ |
| HD | ggc-page.c | 1662 page_entry *p, *previous; in sweep_pages() local 1669 previous = NULL; in sweep_pages() 1696 if (! previous) in sweep_pages() 1699 previous->next = next; in sweep_pages() 1703 next->prev = previous; in sweep_pages() 1707 G.page_tails[order] = previous; in sweep_pages() 1709 p = previous; in sweep_pages() 1727 if (! previous) in sweep_pages() 1730 previous->next = next; in sweep_pages() 1734 next->prev = previous; in sweep_pages() [all …]
|
| /trueos/usr.sbin/bsdconfig/include/ |
| HD | usage.hlp | 14 UP ARROW Move to previous item (or up, in a text display box). 18 SHIFT-TAB Move to previous item or group. 19 LEFT ARROW Move to previous item or group (same as SHIFT-TAB). 34 the previous menu. Use TAB to move the cursor around and select the
|
| /trueos/contrib/tcsh/nls/ukrainian/ |
| HD | set3 | 42 39 Insert last item of previous command 82 79 Move to previous history line 92 89 Vi move to previous character (backspace) 112 109 Vi move to the previous word 122 119 (WIN32 only) Convert each '/' in previous word to '\\\\'
|
| /trueos/contrib/tcsh/nls/C/ |
| HD | set3 | 42 39 Insert last item of previous command 82 79 Move to previous history line 92 89 Vi move to previous character (backspace) 112 109 Vi move to the previous word 122 119 (WIN32 only) Convert each '/' in previous word to '\\\\'
|
| /trueos/sys/boot/ficl/softwords/ |
| HD | softcore.fr | 113 \ FICL-SET-CURRENT sets the compile wordlist and pushes the previous value 129 : previous ( -- ) search> drop ; 137 \ previous ( pop HIDDEN off the search order ) 203 previous \ lose hidden words from search order
|
| /trueos/contrib/less/ |
| HD | less.hlp | 37 n * Repeat previous search (for _N-th occurrence). 38 N * Repeat previous search in reverse direction. 39 ESC-n * Repeat previous search, spanning files. 40 ESC-N * Repeat previous search, reverse dir. & spanning files. 58 T * Go to the (_N-th) previous tag. 71 '' Go to the previous position. 85 :p * Examine the (_N-th) previous file from the command line. 224 UpArrow ESC-k Retrieve previous command line.
|
| /trueos/contrib/nvi/docs/ |
| HD | help | 49 ^^ switch to previous file 171 [Pp]revious: edit the previous file in the file argument list 188 tagpop: return to the previous group of tags 189 tagprev: move to the previous tag 206 ~: replace previous RE with previous replacement string,
|