Searched defs:aliased (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython3/Lib/
H A Dplatform.py637 """ Returns (system, release, version) aliased to common
1304 def platform(aliased=0, terse=0):
1313 If "aliased" is true, the function will use aliases for
1323 result = _platform_cache.get((aliased, terse), None)
1332 if aliased:
1390 _platform_cache[(aliased, terse)] = platform
1396 # Default is to print the aliased verbose platform string
1398 aliased = (not 'nonaliased' in sys.argv and not '--nonaliased' in sys.argv) variable
1399 print(platform(aliased, terse))
/external/python/cpython2/Lib/
H A Dplatform.py825 """ Returns (system,release,version) aliased to common
1530 def platform(aliased=0, terse=0):
1539 If "aliased" is true, the function will use aliases for
1549 result = _platform_cache.get((aliased, terse), None)
1558 if aliased:
1607 _platform_cache[(aliased, terse)] = platform
1613 # Default is to print the aliased verbose platform string
1615 aliased = (not 'nonaliased' in sys.argv and not '--nonaliased' in sys.argv) variable
1616 print platform(aliased,terse)
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesBufferTests.cpp94 //! Utility to lay out memory allocations for a sparse buffer, including holes and aliased regions.
887 const bool aliased = (flags & TEST_FLAG_ALIASED) != 0; local
890 const std::string valueExpr = (aliased ? "ivec4(3*(ndx % nonAliasedSize) ^ 127, 0, 0, 0)" : "ivec4(3*ndx ^ 127, 0, 0, 0)");
910 if (aliased)
1044 // If aliased chunk is used, the staging buffer is smaller than the sparse buffer and we don't overwrite the last chunk
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp519 bool aliased = true; local
522 aliased = AA->alias(Loc1, Loc2);
525 result = aliased;
526 return aliased;
3078 // We increment the counter only if the locations are aliased
3103 // dependencies from i0 to i3,i4,.. (even if they are not aliased).

Completed in 816 milliseconds