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

  /external/dng_sdk/source/
dng_point.h 119 return dng_point (SafeInt32Add(a.v, b.v),
120 SafeInt32Add(a.h, b.h));
dng_resample.cpp 601 srcArea.t = SafeInt32Add (fRowCoords.Pixel (dstArea.t), offsetV);
602 srcArea.l = SafeInt32Add (fColCoords.Pixel (dstArea.l), offsetH);
604 srcArea.b = SafeInt32Add (SafeInt32Add (
608 srcArea.r = SafeInt32Add(SafeInt32Add(
dng_safe_arithmetic.cpp 56 bool SafeInt32Add(std::int32_t arg1, std::int32_t arg2, std::int32_t *result) {
58 *result = SafeInt32Add(arg1, arg2);
65 std::int32_t SafeInt32Add(std::int32_t arg1, std::int32_t arg2) {
dng_safe_arithmetic.h 40 bool SafeInt32Add(std::int32_t arg1, std::int32_t arg2, std::int32_t *result);
45 std::int32_t SafeInt32Add(std::int32_t arg1, std::int32_t arg2);
dng_lens_correction.cpp 1207 xMax = SafeInt32Add(xMax, pad);
1208 yMax = SafeInt32Add(yMax, pad);
1210 xMax = SafeInt32Add(xMax, 1);
1211 yMax = SafeInt32Add(yMax, 1);
    [all...]

Completed in 290 milliseconds