HomeSort by relevance Sort by last modified time
    Searched defs:ppm (Results 1 - 7 of 7) sorted by null

  /external/linux-kselftest/tools/testing/selftests/timers/
change_skew.c 47 int change_skew_test(int ppm)
53 tx.freq = ppm << 16;
74 int ppm[5] = {0, 250, 500, -250, -500}; local
90 printf("Using %i ppm adjustment\n", ppm[i]);
91 ret = change_skew_test(ppm[i]);
skew_consistency.c 56 int ret, ppm; local
66 ppm = 500;
70 ppm = -ppm;
72 tx.freq = ppm << 16;
adjtick.c 128 long long eppm, ppm; local
145 ppm = ((long long)tickval * MILLION)/systick - MILLION;
146 printf("Estimating tick (act: %ld usec, %lld ppm): ", tickval, ppm);
149 printf("%lld usec, %lld ppm", systick + (systick * eppm / MILLION), eppm);
161 * Here we use 100ppm difference as an error bound.
165 * with the adjustment, resulting in > 10ppm error during
166 * a 10% adjustment. 100ppm also gives us more breathing
169 if (llabs(eppm - ppm) > 100) {
raw_skew.c 107 long long delta1, delta2, interval, eppm, ppm; local
137 /* calculate measured ppm between MONOTONIC and MONOTONIC_RAW */
143 ppm = (tx1.freq + tx2.freq) * 1000 / 2;
144 ppm = (long long)tx1.freq * 1000;
145 ppm = shift_right(ppm, 16);
146 printf(" %lld.%i(act)", ppm/1000, abs((int)(ppm%1000)));
148 if (llabs(eppm - ppm) > 1000) {
  /external/v8/src/compiler/
instruction.cc 508 PrintableParallelMove ppm = {printable.register_configuration_, local
510 os << ppm; local
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
j2k.h 86 #define J2K_MS_PPM 0xff60 /**< PPM marker value */
374 /** number of ppm markers (reserved size) */
376 /** ppm markers data (table indexed by Zppm) */
390 /** pointer remaining on the first byte of the first header if ppm is used */
394 /** use in case of multiple marker PPM (number of info already store) */
396 /** use in case of multiple marker PPM (case on non-finished previous info) */
455 /** if ppm == 1 --> there was a PPM marker*/
456 OPJ_UINT32 ppm : 1; member in struct:opj_cp
  /external/blktrace/
blkparse.c 87 struct process_pid_map *ppm; member in struct:per_process_info
248 struct process_pid_map *ppm; member in struct:io_track
542 struct process_pid_map *ppm; local
544 ppm = ppm_hash_table[hash_idx];
545 while (ppm) {
546 if (ppm->pid == pid)
547 return ppm;
549 ppm = ppm->hash_next;
558 struct process_pid_map *ppm; local
625 struct process_pid_map *ppm = find_ppm(pid); local
645 struct process_pid_map *ppm = ppi->ppm; local
675 struct process_pid_map *ppm = ppi->ppm; local
693 struct process_pid_map *ppm = ppi->ppm; local
1751 struct process_pid_map *ppm = ppi->ppm; local
    [all...]

Completed in 1199 milliseconds