Searched defs:dist (Results 1 - 4 of 4) sorted by relevance

/arch/microblaze/kernel/
H A Dheartbeat.c22 static unsigned int cnt, period, dist; local
25 if (cnt == 0 || cnt == dist)
27 else if (cnt == 7 || cnt == dist + 7)
40 dist = period / 4;
/arch/m68k/kernel/
H A Dtime.c46 static unsigned cnt = 0, period = 0, dist = 0; local
48 if (cnt == 0 || cnt == dist)
50 else if (cnt == 7 || cnt == dist+7)
60 dist = period / 4;
/arch/hexagon/kernel/
H A Dmodule.c115 int dist = (int)(value - (uint32_t)location); local
116 if ((dist < -0x00800000) ||
117 (dist >= 0x00800000)) {
122 dist, value, (uint32_t)location,
129 *location |= 0x00003fff & dist;
130 *location |= 0x01ff0000 & (dist<<2);
/arch/x86/mm/
H A Dnuma_emulation.c419 int dist; local
422 dist = physi == physj ?
425 dist = phys_dist[physi * numa_dist_cnt + physj];
427 numa_set_distance(i, j, dist);

Completed in 139 milliseconds