Merge from Widevine repo of http://go/wvgerrit/121950 Remove term "Master" from "Widevine Master License Agreement". Bug: 168562298 Change-Id: I655babf1bc447f4872f6a0f849107262be42df7a
47 lines
830 B
C
47 lines
830 B
C
// Copyright 2019 Google LLC. All rights reserved. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine
|
|
// License Agreement.
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
int odk_sub_overflow_u64(uint64_t a, uint64_t b, uint64_t* c) {
|
|
if (a >= b) {
|
|
if (c) {
|
|
*c = a - b;
|
|
}
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
int odk_add_overflow_u64(uint64_t a, uint64_t b, uint64_t* c) {
|
|
if (UINT64_MAX - a >= b) {
|
|
if (c) {
|
|
*c = a + b;
|
|
}
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
int odk_add_overflow_ux(size_t a, size_t b, size_t* c) {
|
|
if (SIZE_MAX - a >= b) {
|
|
if (c) {
|
|
*c = a + b;
|
|
}
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
int odk_mul_overflow_ux(size_t a, size_t b, size_t* c) {
|
|
if (b > 0 && a > SIZE_MAX / b) {
|
|
return 1;
|
|
}
|
|
if (c) {
|
|
*c = a * b;
|
|
}
|
|
return 0;
|
|
}
|