HomeSort by relevance Sort by last modified time
    Searched refs:precise (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /external/mesa3d/src/compiler/glsl/
propagate_invariance.cpp 26 * Propagate the "invariant" and "precise" qualifiers to variables used to
27 * compute invariant or precise values.
38 * "precise" qualifier.
77 if (var->data.invariant || var->data.precise) {
106 if (this->dst_var->data.precise) {
107 if (!ir->var->data.precise)
110 ir->var->data.precise = true;
opt_copy_propagation.cpp 371 lhs_var->data.precise == rhs_var->data.precise) {
  /frameworks/av/packages/MediaComponents/src/com/android/media/subtitle/
MediaTimeProvider.java 56 * @param precise Whether getting a precise time is important. This is
64 public long getCurrentTimeUs(boolean precise, boolean monotonic)
  /frameworks/base/media/java/android/media/
MediaTimeProvider.java 56 * @param precise Whether getting a precise time is important. This is
64 public long getCurrentTimeUs(boolean precise, boolean monotonic)
  /frameworks/support/media/src/main/java/androidx/media/subtitle/
MediaTimeProvider.java 64 * @param precise Whether getting a precise time is important. This is
72 long getCurrentTimeUs(boolean precise, boolean monotonic)
  /art/runtime/verifier/
reg_type_cache.h 77 const RegType& From(mirror::ClassLoader* loader, const char* descriptor, bool precise)
80 const RegType* FindClass(mirror::Class* klass, bool precise) const
83 const RegType* InsertClass(const StringPiece& descriptor, mirror::Class* klass, bool precise)
86 const RegType& FromClass(const char* descriptor, mirror::Class* klass, bool precise)
88 const ConstantType& FromCat1Const(int32_t value, bool precise)
90 const ConstantType& FromCat2ConstLo(int32_t value, bool precise)
92 const ConstantType& FromCat2ConstHi(int32_t value, bool precise)
94 const RegType& FromDescriptor(mirror::ClassLoader* loader, const char* descriptor, bool precise)
133 const RegType& JavaLangThrowable(bool precise) REQUIRES_SHARED(Locks::mutator_lock_);
134 const RegType& JavaLangObject(bool precise) REQUIRES_SHARED(Locks::mutator_lock_)
    [all...]
reg_type_cache-inl.h 39 inline const ConstantType& RegTypeCache::FromCat1Const(int32_t value, bool precise) {
40 // We only expect 0 to be a precise constant.
41 DCHECK(value != 0 || precise);
42 if (precise && (value >= kMinSmallConstant) && (value <= kMaxSmallConstant)) {
45 return FromCat1NonSmallConstant(value, precise);
132 // String is final and therefore always precise.
153 inline const RegType& RegTypeCache::JavaLangThrowable(bool precise) {
155 mirror::Throwable::GetJavaLangThrowable(), precise);
156 if (precise) {
165 inline const RegType& RegTypeCache::JavaLangObject(bool precise) {
    [all...]
reg_type_cache.cc 42 ALWAYS_INLINE static inline bool MatchingPrecisionForClass(const RegType* entry, bool precise)
44 if (entry->IsPreciseReference() == precise) {
45 // We were or weren't looking for a precise reference and we found what we need.
48 if (!precise && entry->GetClass()->CannotBeAssignedFromOtherTypes()) {
49 // We weren't looking for a precise reference, as we're looking up based on a descriptor, but
50 // we found a matching entry based on the descriptor. Return the precise entry in that case.
82 bool precise) {
107 return From(loader, descriptor, precise);
138 bool RegTypeCache::MatchDescriptor(size_t idx, const StringPiece& descriptor, bool precise) {
144 return MatchingPrecisionForClass(entry, precise);
    [all...]
  /system/extras/simpleperf/
IOEventLoop_test.cpp 122 void TestPeriodicEvents(int period_in_us, int iterations, bool precise) {
128 if (precise) {
144 double max_time_in_sec = min_time_in_sec + (precise ? 0.1 : 1);
  /external/libevent/
evutil_time.c 269 const int precise = flags & EV_MONOT_PRECISE; local
282 if (! precise && ! fallback) {
404 Our strategy, if precise timers are turned off, is to just use the best
405 GetTickCount equivalent available. If we've been asked for precise timing,
473 const int precise = flags & EV_MONOT_PRECISE; local
485 if (precise && !fallback) {
560 int precise)
  /prebuilts/go/darwin-x86/test/
deferfin.go 22 // Try to enable when we have fully precise GC.
tinyfin.go 18 // Try to enable when we have fully precise GC.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue5493.go 36 // Try to enable when we have fully precise GC.
  /prebuilts/go/linux-x86/test/
deferfin.go 22 // Try to enable when we have fully precise GC.
tinyfin.go 18 // Try to enable when we have fully precise GC.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue5493.go 36 // Try to enable when we have fully precise GC.
  /external/python/cpython2/Include/
pymath.h 160 #pragma float_control(precise, on)
  /external/python/cpython3/Include/
pymath.h 164 #pragma float_control(precise, on)
  /art/tools/veridex/
veridex.cc 74 bool precise = true; member in struct:art::VeridexOptions
111 options->precise = false;
224 api_finder.Dump(std::cout, &stats, !options.precise);
226 if (options.precise) {
234 if (options.precise) {
  /art/runtime/base/
timing_logger.h 150 bool precise,
timing_logger.cc 133 bool precise,
136 : name_(name), precise_(precise), verbose_(verbose), kind_(kind) {
  /external/protobuf/csharp/src/Google.Protobuf/
IMessage.cs 47 /// <remarks>See the user guide for precise merge semantics.</remarks>
83 /// <remarks>See the user guide for precise merge semantics.</remarks>
  /prebuilts/go/darwin-x86/src/runtime/trace/
trace.go 11 // A precise nanosecond-precision timestamp and a stack trace is
  /prebuilts/go/linux-x86/src/runtime/trace/
trace.go 11 // A precise nanosecond-precision timestamp and a stack trace is
  /external/libevent/test/
regress_util.c 1286 const int precise = strstr(data->setup_data, "precise") != NULL; local
1292 if (precise)
1296 if (precise || fallback) {
1309 TT_BLATHER(("Precise = %d", precise));
1343 const int precise = strstr(data->setup_data, "precise") != NULL; local
    [all...]

Completed in 471 milliseconds

1 2 3 4 5 6 7