Home
last modified time | relevance | path

Searched refs:BP2 (Results 1 – 2 of 2) sorted by relevance

/NextBSD/contrib/ntp/ntpd/
HDrefclock_fg.c255 #define BP2(x) ( bpt[x] & 15 ) in fg_receive() macro
258 pp->year = BP1(2) * 10 + BP2(2); in fg_receive()
274 pp->day = 100 * BP2(3) + 10 * BP1(4) + BP2(4); in fg_receive()
284 pp->hour = BP1(6)*10 + BP2(6); in fg_receive()
286 pp->hour = BP1(5)*10 + BP2(5); in fg_receive()
289 pp->minute = BP1(7)*10 + BP2(7); in fg_receive()
290 pp->second = BP1(8)*10 + BP2(8); in fg_receive()
291 pp->nsec = (BP1(9)*10 + BP2(9)) * 1000000; in fg_receive()
294 pp->hour = BP1(5)*10 + BP2(5); in fg_receive()
295 pp->minute = BP1(6)*10 + BP2(6); in fg_receive()
[all …]
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDDeadStoreElimination.cpp387 const Value *BP2 = GetPointerBaseWithConstantOffset(P2, LaterOff, DL); in isOverwrite() local
390 if (BP1 != BP2) in isOverwrite()