Searched refs:tmptr (Results 1 - 7 of 7) sorted by relevance
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | nl_cxtime.c | 46 nl_ascxtime(tmptr, fmt) 47 struct tm *tmptr; 50 return (strftime (_tbuf, TBUFSIZE, fmt ? fmt : "%H:%M:%S", tmptr) ? 51 _tbuf : asctime(tmptr));
|
/illumos-gate/usr/src/cmd/oamuser/lib/ |
H A D | dates.c | 45 struct tm *tmptr, *getdate(); local 53 if( !(tmptr = getdate( string )) ) 55 if ( (rtime = mktime( tmptr )) < 0)
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | localtime.c | 681 mktime1(struct tm *tmptr, int usetz) argument 695 t = tmptr->tm_sec + SECSPERMIN * tmptr->tm_min + 696 SECSPERHOUR * tmptr->tm_hour + 697 SECSPERDAY * (tmptr->tm_mday - 1); 699 if (tmptr->tm_mon >= 12) { 700 tmptr->tm_year += tmptr->tm_mon / 12; 701 tmptr->tm_mon %= 12; 702 } else if (tmptr 834 mktime(struct tm *tmptr) argument 840 timegm(struct tm *tmptr) argument 1188 offtime_u(time_t t, long offset, struct tm *tmptr) argument [all...] |
/illumos-gate/usr/src/cmd/expr/ |
H A D | expr.c | 404 char *tmptr; local 438 tmptr = tmptr1; 440 tmptr = tempbuf; 442 memcpy(tmptr, s, nmatch); 443 *(tmptr + nmatch) = '\0'; 444 if ((nmbchars = mbstowcs(NULL, tmptr, NULL)) == -1) {
|
/illumos-gate/usr/src/cmd/mdb/sun4u/modules/opl/oplhwd/ |
H A D | oplhwd.c | 36 static uintptr_t tmptr; variable 323 tmptr + (bd * sizeof (opl_board_cfg_t))) == -1) { 325 (tmptr + (bd * sizeof (opl_board_cfg_t)))); 604 tmptr = (uintptr_t)tmsym.st_value; 605 mdb_printf("Board %d:\tboardcfg \t%8llx\n", 0, tmptr);
|
/illumos-gate/usr/src/lib/cfgadm_plugins/shp/common/ |
H A D | shp.c | 1042 char *tmptr = (char *)(intp+1); local 1048 DBG(2, ("curr slot-name: %s \n", tmptr)); 1054 /* assign tmptr */ 1055 DBG(2, ("slot-name: %s \n", tmptr)); 1058 tmptr); 1059 /* wind tmptr to next \0 */ 1060 while (*tmptr != '\0') { 1061 tmptr++; 1063 tmptr++;
|
/illumos-gate/usr/src/lib/cfgadm_plugins/pci/common/ |
H A D | cfga.c | 1178 char *tmptr = (char *)(intp+1); local 1184 DBG(2, ("curr slot-name: %s \n", tmptr)); 1190 /* assign tmptr */ 1191 DBG(2, ("slot-name: %s \n", tmptr)); 1194 tmptr); 1195 /* wind tmptr to next \0 */ 1196 while (*tmptr != '\0') { 1197 tmptr++; 1199 tmptr++;
|
Completed in 83 milliseconds