/aosp12/system/chre/util/tests/ |
H A D | time_test.cc | 46 Seconds t(UINT64_MAX / kOneSecondInNanoseconds + 1); in TEST() 47 EXPECT_EQ(t.toRawNanoseconds(), UINT64_MAX); in TEST() 56 Seconds t(UINT64_MAX / kOneSecondInMilliseconds + 1); in TEST() 57 EXPECT_EQ(t.getMilliseconds(), UINT64_MAX); in TEST() 84 EXPECT_EQ(t.getMicroseconds(), UINT64_MAX); in TEST() 93 Milliseconds t(UINT64_MAX / kOneMillisecondInNanoseconds + 1); in TEST() 94 EXPECT_EQ(t.toRawNanoseconds(), UINT64_MAX); in TEST() 122 EXPECT_EQ(t.toRawNanoseconds(), UINT64_MAX); in TEST() 177 Nanoseconds t = Seconds(5) + Nanoseconds(UINT64_MAX); in TEST() 187 Nanoseconds t = Nanoseconds(6) + Nanoseconds(UINT64_MAX); in TEST() [all …]
|
/aosp12/system/chre/util/include/chre/util/ |
H A D | time_impl.h | 30 return (mSeconds > (UINT64_MAX / kOneSecondInNanoseconds)) in toRawNanoseconds() 31 ? UINT64_MAX in toRawNanoseconds() 39 return (mSeconds > (UINT64_MAX / kOneSecondInMilliseconds)) in getMilliseconds() 40 ? UINT64_MAX in getMilliseconds() 57 return (mMilliseconds > (UINT64_MAX / kOneMillisecondInNanoseconds)) in toRawNanoseconds() 58 ? UINT64_MAX in toRawNanoseconds() 66 return (mMilliseconds > (UINT64_MAX / kOneMillisecondInMicroseconds)) in getMicroseconds() 67 ? UINT64_MAX in getMicroseconds() 90 return (mMicroseconds > (UINT64_MAX / kOneMicrosecondInNanoseconds)) in toRawNanoseconds() 91 ? UINT64_MAX in toRawNanoseconds()
|
/aosp12/bionic/libc/include/ |
H A D | stdint.h | 193 #define UINT64_MAX (UINT64_C(18446744073709551615)) macro 195 #define UINT_LEAST64_MAX UINT64_MAX 196 #define UINT_FAST64_MAX UINT64_MAX 200 #define UINTMAX_MAX UINT64_MAX 216 # define UINTPTR_MAX UINT64_MAX 219 # define SIZE_MAX UINT64_MAX
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/msinttypes/ |
H A D | stdint.h | 189 #define UINT64_MAX _UI64_MAX macro 203 #define UINT_LEAST64_MAX UINT64_MAX 217 #define UINT_FAST64_MAX UINT64_MAX 223 # define UINTPTR_MAX UINT64_MAX 233 #define UINTMAX_MAX UINT64_MAX
|
/aosp12/bionic/tests/ |
H A D | malloc_stress_test.cpp | 40 uint64_t rss_min = UINT64_MAX; in TEST() 42 uint64_t vss_min = UINT64_MAX; in TEST() 46 uint64_t mallinfo_min = UINT64_MAX; in TEST()
|
/aosp12/hardware/interfaces/neuralnetworks/1.3/ |
H A D | IFencedExecutionCallback.hal | 49 * must be reported as UINT64_MAX. A driver may choose to 50 * report any time as UINT64_MAX, indicating that particular 56 * must be reported as UINT64_MAX. A driver may choose to 57 * report any time as UINT64_MAX, indicating that particular
|
H A D | IExecutionCallback.hal | 60 * be reported as UINT64_MAX. A driver may choose to report 61 * any time as UINT64_MAX, indicating that particular measurement is
|
/aosp12/packages/modules/NeuralNetworks/runtime/test/ |
H A D | TestIntrospectionControl.cpp | 69 constexpr V1_2::Timing kBadTiming = {.timeOnDevice = UINT64_MAX, .timeInDriver = UINT64_MAX}; 273 if (timeOnHardware != UINT64_MAX && timeInDriver != UINT64_MAX) { in TEST_F() 401 : UINT64_MAX; in getExpectedTiming() 404 : UINT64_MAX; in getExpectedTiming() 408 : UINT64_MAX; in getExpectedTiming() 1023 EXPECT_EQ(timeOnHardware, UINT64_MAX); in TEST_P() 1024 EXPECT_EQ(timeInDriver, UINT64_MAX); in TEST_P() 1025 EXPECT_EQ(timeOnHardwareFenced, UINT64_MAX); in TEST_P() 1026 EXPECT_EQ(timeInDriverFenced, UINT64_MAX); in TEST_P() 1032 return micros == UINT64_MAX ? UINT64_MAX : kNanosPerMicro * micros; in TEST_P() [all …]
|
/aosp12/system/bt/gd/os/fuzz/ |
H A D | fake_timerfd.cc | 38 static uint64_t max_clock = UINT64_MAX; 86 max_clock = UINT64_MAX; in fake_timerfd_reset()
|
/aosp12/system/libvintf/ |
H A D | utils.h | 77 uint64_t max = UINT64_MAX) const; 86 uint64_t max = UINT64_MAX) const override;
|
/aosp12/frameworks/av/media/extractors/mp4/ |
H A D | SampleIterator.cpp | 323 (mTTSDuration != 0 && mTTSCount > UINT64_MAX / mTTSDuration) || in findSampleTimeAndDuration() 324 mTTSSampleTime > UINT64_MAX - (mTTSCount * mTTSDuration)) { in findSampleTimeAndDuration() 350 (offset > 0 && *time > UINT64_MAX - offset)) { in findSampleTimeAndDuration()
|
H A D | SampleTable.cpp | 686 sampleTime > UINT64_MAX - compTimeDelta)) { in buildSampleEntriesTable() 692 sampleTime = UINT64_MAX; in buildSampleEntriesTable() 703 if (sampleTime > UINT64_MAX - delta) { in buildSampleEntriesTable() 706 sampleTime = UINT64_MAX; in buildSampleEntriesTable()
|
/aosp12/hardware/interfaces/neuralnetworks/1.2/vts/functional/ |
H A D | GeneratedTestHarness.cpp | 293 EXPECT_EQ(UINT64_MAX, timing.timeOnDevice); in EvaluatePreparedModel() 294 EXPECT_EQ(UINT64_MAX, timing.timeInDriver); in EvaluatePreparedModel() 296 if (timing.timeOnDevice != UINT64_MAX && timing.timeInDriver != UINT64_MAX) { in EvaluatePreparedModel()
|
H A D | ValidateRequest.cpp | 38 return timing.timeOnDevice == UINT64_MAX && timing.timeInDriver == UINT64_MAX; in badTiming()
|
/aosp12/system/chre/platform/shared/ |
H A D | chre_api_version.cc | 27 static_assert(CHRE_PLATFORM_ID <= UINT64_MAX,
|
/aosp12/frameworks/av/media/libstagefright/webm/ |
H A D | WebmFrameThread.cpp | 81 mStartOffsetTimecode(UINT64_MAX), in WebmFrameSinkThread() 96 mStartOffsetTimecode(UINT64_MAX), in WebmFrameSinkThread() 218 if (mStartOffsetTimecode == UINT64_MAX) { in run()
|
/aosp12/hardware/interfaces/neuralnetworks/1.2/ |
H A D | IExecutionCallback.hal | 54 * be reported as UINT64_MAX. A driver may choose to report 55 * any time as UINT64_MAX, indicating that particular measurement is
|
/aosp12/system/chre/platform/linux/ |
H A D | system_time.cc | 33 return Nanoseconds(UINT64_MAX); in getMonotonicTime()
|
/aosp12/system/libvintf/include/vintf/ |
H A D | PropertyFetcher.h | 28 uint64_t max = UINT64_MAX) const = 0;
|
/aosp12/hardware/interfaces/neuralnetworks/1.3/vts/functional/ |
H A D | ValidateRequest.cpp | 42 return timing.timeOnDevice == UINT64_MAX && timing.timeInDriver == UINT64_MAX; in badTiming()
|
/aosp12/system/unwinding/libunwindstack/ |
H A D | MemoryFileAtOffset.h | 31 bool Init(const std::string& file, uint64_t offset, uint64_t size = UINT64_MAX);
|
/aosp12/system/media/camera/include/system/ |
H A D | camera_vendor_tags.h | 25 #define CAMERA_METADATA_INVALID_VENDOR_ID UINT64_MAX
|
/aosp12/system/chre/core/include/chre/core/ |
H A D | sensor_request.h | 31 constexpr uint64_t kMaxIntervalLatencyNs = (UINT64_MAX - 1) / 2;
|
/aosp12/system/chre/core/ |
H A D | wifi_scan_request.cc | 36 Nanoseconds(UINT64_MAX) /* maxScanAge */, in WifiScanRequest()
|
/aosp12/system/unwinding/libunwindstack/include/unwindstack/ |
H A D | Memory.h | 42 uint64_t size = UINT64_MAX);
|