Home
last modified time | relevance | path

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

/external/icu/icu4c/source/tools/tzcode/
Dzdump.c908 #define DIVISOR 10 in dumptime() macro
909 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR; in dumptime()
910 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + in dumptime()
911 trail / DIVISOR; in dumptime()
912 trail %= DIVISOR; in dumptime()
914 trail += DIVISOR; in dumptime()
917 trail -= DIVISOR; in dumptime()
994 trail = loc.tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR; in dumptimeICU()
995 lead = loc.tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + trail / DIVISOR; in dumptimeICU()
996 trail %= DIVISOR; in dumptimeICU()
[all …]
/external/llvm/test/Transforms/InstCombine/
Ddiv-shift.ll77 ; CHECK-NEXT: [[DIVISOR:%.*]] = select i1 [[X_IS_ZERO]], i32 1, i32 %x
78 ; CHECK-NEXT: [[Y:%.*]] = udiv i32 %z, [[DIVISOR]]