HomeSort by: relevance | last modified time | path
    Searched defs:mtemp (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/dev/videomode/
pickmode.c 124 struct videomode *mtemp = NULL; local
150 mtemp = &modes[i];
154 mtemp = &modes[i];
157 aspect = mtemp->hdisplay * 100 / mtemp->vdisplay;
158 refresh = DIVIDE(DIVIDE(mtemp->dot_clock * 1000,
159 mtemp->htotal), mtemp->vtotal);
160 if (mtemp != modes)
161 swap_modes(mtemp, modes)
    [all...]
  /src/external/bsd/ntp/dist/util/
kern.c 127 long ltemp, mtemp; local
130 mtemp = timex.tv_sec - time_reftime;
132 if (mtemp > MAXSEC)
133 mtemp = 0;
137 time_freq -= (-offset * mtemp) >>
140 time_freq += (offset * mtemp) >>
  /src/sys/kern/
kern_ntptime.c 619 long mtemp; local
655 mtemp = time_second - time_reftime;
658 L_MPY(ftemp, mtemp);
661 if (mtemp >= MINSEC && (time_status & STA_FLL || mtemp >
663 L_LINT(ftemp, (time_monitor << 4) / mtemp);
  /src/external/mit/expat/dist/lib/
xmlparse.c 1113 XML_Memory_Handling_Suite *mtemp; local
1116 mtemp = (XML_Memory_Handling_Suite *)&(parser->m_mem);
1117 mtemp->malloc_fcn = memsuite->malloc_fcn;
1118 mtemp->realloc_fcn = memsuite->realloc_fcn;
1119 mtemp->free_fcn = memsuite->free_fcn;
1122 XML_Memory_Handling_Suite *mtemp; local
1125 mtemp = (XML_Memory_Handling_Suite *)&(parser->m_mem);
1126 mtemp->malloc_fcn = malloc;
1127 mtemp->realloc_fcn = realloc;
1128 mtemp->free_fcn = free
    [all...]

Completed in 16 milliseconds