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

  /external/dng_sdk/source/
dng_point.h 145 return dng_point (SafeInt32Sub(a.v, b.v),
146 SafeInt32Sub(a.h, b.h));
dng_rect.h 61 if (!SafeInt32Sub(r, l, &dummy) ||
62 !SafeInt32Sub(b, t, &dummy))
131 if (!SafeInt32Sub(r, l, &width))
151 if (!SafeInt32Sub(b, t, &height))
dng_safe_arithmetic.cpp 91 bool SafeInt32Sub(std::int32_t arg1, std::int32_t arg2, std::int32_t *result) {
101 std::int32_t SafeInt32Sub(std::int32_t arg1, std::int32_t arg2) {
104 if (!SafeInt32Sub(arg1, arg2, &result)) {
dng_safe_arithmetic.h 63 bool SafeInt32Sub(std::int32_t arg1, std::int32_t arg2, std::int32_t *result);
68 std::int32_t SafeInt32Sub(std::int32_t arg1, std::int32_t arg2);
dng_lens_correction.cpp 1205 xMin = SafeInt32Sub(xMin, pad);
1206 yMin = SafeInt32Sub(yMin, pad);
1315 const int32 hMax = SafeInt32Sub (SafeInt32Sub (srcArea.r, wCount), 1);
1318 const int32 vMax = SafeInt32Sub (SafeInt32Sub (srcArea.b, wCount), 1);
    [all...]
dng_resample.cpp 605 fRowCoords.Pixel (SafeInt32Sub (dstArea.b, 1)),
609 fColCoords.Pixel (SafeInt32Sub (dstArea.r, 1)),
dng_misc_opcodes.cpp 154 if (!SafeInt32Sub (fArea.b, fArea.t, &height) ||
155 !SafeInt32Sub (fArea.r, fArea.l, &width) ||

Completed in 751 milliseconds