Home
last modified time | relevance | path

Searched refs:UINT64_MAX (Results 1 – 25 of 78) sorted by relevance

1234

/aosp12/system/chre/util/tests/
H A Dtime_test.cc46 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 Dtime_impl.h30 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 Dstdint.h193 #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 Dstdint.h189 #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 Dmalloc_stress_test.cpp40 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 DIFencedExecutionCallback.hal49 * 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 DIExecutionCallback.hal60 * 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 DTestIntrospectionControl.cpp69 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 Dfake_timerfd.cc38 static uint64_t max_clock = UINT64_MAX;
86 max_clock = UINT64_MAX; in fake_timerfd_reset()
/aosp12/system/libvintf/
H A Dutils.h77 uint64_t max = UINT64_MAX) const;
86 uint64_t max = UINT64_MAX) const override;
/aosp12/frameworks/av/media/extractors/mp4/
H A DSampleIterator.cpp323 (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 DSampleTable.cpp686 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 DGeneratedTestHarness.cpp293 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 DValidateRequest.cpp38 return timing.timeOnDevice == UINT64_MAX && timing.timeInDriver == UINT64_MAX; in badTiming()
/aosp12/system/chre/platform/shared/
H A Dchre_api_version.cc27 static_assert(CHRE_PLATFORM_ID <= UINT64_MAX,
/aosp12/frameworks/av/media/libstagefright/webm/
H A DWebmFrameThread.cpp81 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 DIExecutionCallback.hal54 * 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 Dsystem_time.cc33 return Nanoseconds(UINT64_MAX); in getMonotonicTime()
/aosp12/system/libvintf/include/vintf/
H A DPropertyFetcher.h28 uint64_t max = UINT64_MAX) const = 0;
/aosp12/hardware/interfaces/neuralnetworks/1.3/vts/functional/
H A DValidateRequest.cpp42 return timing.timeOnDevice == UINT64_MAX && timing.timeInDriver == UINT64_MAX; in badTiming()
/aosp12/system/unwinding/libunwindstack/
H A DMemoryFileAtOffset.h31 bool Init(const std::string& file, uint64_t offset, uint64_t size = UINT64_MAX);
/aosp12/system/media/camera/include/system/
H A Dcamera_vendor_tags.h25 #define CAMERA_METADATA_INVALID_VENDOR_ID UINT64_MAX
/aosp12/system/chre/core/include/chre/core/
H A Dsensor_request.h31 constexpr uint64_t kMaxIntervalLatencyNs = (UINT64_MAX - 1) / 2;
/aosp12/system/chre/core/
H A Dwifi_scan_request.cc36 Nanoseconds(UINT64_MAX) /* maxScanAge */, in WifiScanRequest()
/aosp12/system/unwinding/libunwindstack/include/unwindstack/
H A DMemory.h42 uint64_t size = UINT64_MAX);

1234