Home
last modified time | relevance | path

Searched refs:interesting (Results 1 - 25 of 33) sorted by relevance

12

/third_party/skia/experimental/lowp-basic/
H A Dbilerp-study.cpp95 auto interesting = {0, 1, 2, 3, 4, 5, 6, 7, 8, 60, 61, 62, 63, 64, 65, 66, 67, 68, 124, 125, in check_bilerp() local
100 for (int p00 : interesting) in check_bilerp()
101 for (int p01 : interesting) in check_bilerp()
102 for (int p10 : interesting) in check_bilerp()
103 for (int p11 : interesting) { in check_bilerp()
/third_party/skia/third_party/externals/spirv-tools/test/reduce/
H A Dreducer_test.cpp32 // binary is interesting, until some limit is reached after which the binary is
33 // always deemed interesting. This is useful to test that reduction passes
34 // interleave in interesting ways for a while, and then always succeed after
235 bool interesting = false; in InterestingWhileOpcodeExists() local
239 [opcode, &interesting](opt::BasicBlock* block) -> void { in InterestingWhileOpcodeExists()
242 interesting = true; in InterestingWhileOpcodeExists()
247 if (interesting) { in InterestingWhileOpcodeExists()
251 return interesting; in InterestingWhileOpcodeExists()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/reduce/
H A Dreducer_test.cpp32 // binary is interesting, until some limit is reached after which the binary is
33 // always deemed interesting. This is useful to test that reduction passes
34 // interleave in interesting ways for a while, and then always succeed after
235 bool interesting = false; in InterestingWhileOpcodeExists() local
239 [opcode, &interesting](opt::BasicBlock* block) -> void { in InterestingWhileOpcodeExists()
242 interesting = true; in InterestingWhileOpcodeExists()
247 if (interesting) { in InterestingWhileOpcodeExists()
251 return interesting; in InterestingWhileOpcodeExists()
/third_party/spirv-tools/test/reduce/
H A Dreducer_test.cpp32 // binary is interesting, until some limit is reached after which the binary is
33 // always deemed interesting. This is useful to test that reduction passes
34 // interleave in interesting ways for a while, and then always succeed after
235 bool interesting = false; in InterestingWhileOpcodeExists() local
239 [opcode, &interesting](opt::BasicBlock* block) -> void { in InterestingWhileOpcodeExists()
242 interesting = true; in InterestingWhileOpcodeExists()
247 if (interesting) { in InterestingWhileOpcodeExists()
251 return interesting; in InterestingWhileOpcodeExists()
/third_party/skia/third_party/externals/spirv-tools/source/reduce/
H A Dreduction_pass.cpp79 void ReductionPass::NotifyInteresting(bool interesting) { in NotifyInteresting() argument
80 if (!interesting) { in NotifyInteresting()
H A Dreducer.cpp78 // Initial state should be interesting. in Run()
81 "Initial state was not interesting; stopping."); in Run()
200 bool interesting = false; in RunPasses() local
210 // invalid binary from being regarded as interesting. in RunPasses()
222 // interesting, so make it the binary of interest henceforth, and in RunPasses()
226 interesting = true; in RunPasses()
230 pass->NotifyInteresting(interesting); in RunPasses()
H A Dreduction_pass.h48 // NotifyInteresting(...) to indicate whether the new binary is interesting.
60 // TryApplyReduction is interesting, so that the next call to
62 void NotifyInteresting(bool interesting);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/
H A Dreduction_pass.cpp79 void ReductionPass::NotifyInteresting(bool interesting) { in NotifyInteresting() argument
80 if (!interesting) { in NotifyInteresting()
H A Dreducer.cpp78 // Initial state should be interesting. in Run()
81 "Initial state was not interesting; stopping."); in Run()
200 bool interesting = false; in RunPasses() local
210 // invalid binary from being regarded as interesting. in RunPasses()
222 // interesting, so make it the binary of interest henceforth, and in RunPasses()
226 interesting = true; in RunPasses()
230 pass->NotifyInteresting(interesting); in RunPasses()
H A Dreduction_pass.h48 // NotifyInteresting(...) to indicate whether the new binary is interesting.
60 // TryApplyReduction is interesting, so that the next call to
62 void NotifyInteresting(bool interesting);
/third_party/spirv-tools/source/reduce/
H A Dreduction_pass.cpp79 void ReductionPass::NotifyInteresting(bool interesting) { in NotifyInteresting() argument
80 if (!interesting) { in NotifyInteresting()
H A Dreducer.cpp78 // Initial state should be interesting. in Run()
81 "Initial state was not interesting; stopping."); in Run()
200 bool interesting = false; in RunPasses() local
210 // invalid binary from being regarded as interesting. in RunPasses()
222 // interesting, so make it the binary of interest henceforth, and in RunPasses()
226 interesting = true; in RunPasses()
230 pass->NotifyInteresting(interesting); in RunPasses()
H A Dreduction_pass.h48 // NotifyInteresting(...) to indicate whether the new binary is interesting.
60 // TryApplyReduction is interesting, so that the next call to
62 void NotifyInteresting(bool interesting);
/third_party/python/Lib/html/
H A Dparser.py99 self.interesting = interesting_normal
124 self.interesting = re.compile(r'</\s*%s\s*>' % self.cdata_elem, re.I)
127 self.interesting = interesting_normal
153 match = self.interesting.search(rawdata, i) # < or &
242 assert 0, "interesting.search() lied"
/third_party/python/Lib/
H A Denum.py752 interesting = set([
760 interesting.add('__new__')
762 interesting.add('__init_subclass__')
764 return sorted(interesting)
767 return sorted(set(dir(cls._member_type_)) | interesting)
1196 interesting = set(['__class__', '__doc__', '__eq__', '__hash__', '__module__', 'name', 'value'])
1198 interesting = set(object.__dir__(self))
1201 interesting.add(name)
1209 interesting.add(name)
1212 interesting
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderFConvertTests.cpp83 // Get a list of hand-picked interesting samples for tcu::Float class T.
103 // Get some random interesting numbers.
187 auto& interesting = interestingSamples<T>(); in getInputValues() local
191 const size_t numValues = interesting.size() + normals.size() + otherNormals.size(); in getInputValues()
198 values.reserve(interesting.size() + normals.size() + otherNormals.size() + extra.size()); in getInputValues()
200 std::copy(begin(interesting), end(interesting), std::back_inserter(values)); in getInputValues()
205 // Shuffle samples around a bit to make it more interesting. in getInputValues()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H A DvktShaderFConvertTests.cpp83 // Get a list of hand-picked interesting samples for tcu::Float class T.
103 // Get some random interesting numbers.
187 auto& interesting = interestingSamples<T>(); in getInputValues() local
191 const size_t numValues = interesting.size() + normals.size() + otherNormals.size(); in getInputValues()
198 values.reserve(interesting.size() + normals.size() + otherNormals.size() + extra.size()); in getInputValues()
200 std::copy(begin(interesting), end(interesting), std::back_inserter(values)); in getInputValues()
205 // Shuffle samples around a bit to make it more interesting. in getInputValues()
/third_party/python/Lib/distutils/
H A Dmsvc9compiler.py256 interesting = {"include", "lib", "libpath", "path"}
278 if key in interesting:
287 if len(result) != len(interesting):
/third_party/musl/src/math/x32/
H A Dexpl.s11 # interesting case: 0x1p-32 <= |x| < 16384
/third_party/musl/src/math/i386/
H A Dexpl.s11 # interesting case: 0x1p-32 <= |x| < 16384
/third_party/musl/src/math/x86_64/
H A Dexpl.s11 # interesting case: 0x1p-32 <= |x| < 16384
/third_party/icu/tools/colprobe/
H A DcolprobeNew.cpp1047 UChar interesting[256]; in testWin() local
1048 int32_t intLen = u_unescape(intChar, interesting, 256); in testWin()
1054 inter.setTo(interesting[i]); in testWin()
1064 combo.append(interesting[i]); in testWin()
/third_party/gn/src/gn/
H A Dcommand_path.cc296 Prints all "interesting" paths found rather than just the first one.
387 OutputString(base::StringPrintf("%d \"interesting\" %spaths found.", in RunPath()
398 base::StringPrintf("Showing one of %d \"interesting\" %spaths.", in RunPath()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DPatternStringUtils.java251 // it's okay to deal in chars here because the quote mark is the only interesting thing. in escapePaddingString()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DPatternStringUtils.java251 // it's okay to deal in chars here because the quote mark is the only interesting thing. in escapePaddingString()

Completed in 17 milliseconds

12