/external/skia/src/gpu/ccpr/ |
GrCCCoverageProcessor.cpp | 73 if (Impl::kVertexShader == fImpl) { 107 return Impl::kGeometryShader == fImpl ? this->createGSImpl(std::move(shader))
|
GrCCCoverageProcessor.h | 61 // During a render pass, the "Impl" (GSImpl or VSimpl) generates conservative geometry for 64 // For a Hull, the Impl generates a "conservative raster hull" around the input points. This 67 // null, or +1 all around if the Impl combines this pass with kTriangleEdges. Logically, 74 // For Edges, the Impl generates conservative rasters around every input edge (i.e. convex 81 // NOTE: The Impl may combine this pass with kTriangleHulls, in which case DoesRenderPass() 85 // For Corners, the Impl Generates the conservative rasters of corner points (i.e. 110 , fImpl(rp->caps()->shaderCaps()->geometryShaderSupport() ? Impl::kGeometryShader 111 : Impl::kVertexShader) { 113 if (Impl::kGeometryShader == fImpl) { 125 if (Impl::kGeometryShader == fImpl) [all...] |
/external/skqp/src/gpu/ccpr/ |
GrCCCoverageProcessor.cpp | 70 if (Impl::kGeometryShader == fImpl) { 104 return Impl::kGeometryShader == fImpl ? this->createGSImpl(std::move(shader))
|
GrCCCoverageProcessor.h | 57 // During a render pass, the "Impl" (GSImpl or VSimpl) generates conservative geometry for 60 // For a Hull, the Impl generates a "conservative raster hull" around the input points. This 63 // null, or +1 all around if the Impl combines this pass with kTriangleEdges. Logically, 70 // For Edges, the Impl generates conservative rasters around every input edge (i.e. convex 77 // NOTE: The Impl may combine this pass with kTriangleHulls, in which case DoesRenderPass() 81 // For Corners, the Impl Generates the conservative rasters of corner points (i.e. 99 , fImpl(caps.shaderCaps()->geometryShaderSupport() ? Impl::kGeometryShader 100 : Impl::kVertexShader) { 102 if (Impl::kGeometryShader == fImpl) { 116 if (Impl::kGeometryShader == fImpl) [all...] |
/external/tensorflow/tensorflow/core/platform/default/ |
logging.h | 198 inline string* name##Impl(const T1& v1, const T2& v2, \ 205 inline string* name##Impl(int v1, int v2, const char* exprtext) { \ 206 return name##Impl<int, int>(v1, v2, exprtext); \ 208 inline string* name##Impl(const size_t v1, const int v2, \ 214 return name##Impl<size_t, size_t>(uval, v2, exprtext); \ 216 inline string* name##Impl(const int v1, const size_t v2, \ 222 return name##Impl<size_t, size_t>(v1, uval, exprtext); \ 242 ::tensorflow::internal::name##Impl( \
|
/external/v8/src/base/ |
logging.h | 61 ::v8::base::Check##name##Impl<decltype(lhs), decltype(rhs)>( \ 76 ::v8::base::Cmp##name##Impl<decltype(lhs), decltype(rhs)>(lhs, rhs); \ 91 // Build the error message string. This is separate from the "Impl" 93 // be out of line, while the "Impl" code should be inline. Caller 137 #define DEFINE_SIGNED_MISMATCH_COMP(CHECK, NAME, IMPL) \ 140 Cmp##NAME##Impl(Lhs const& lhs, Rhs const& rhs) { \ 141 return IMPL; \ 164 // The Cmp##NAME##Impl function is only instantiable if one of the two types is 174 Cmp##NAME##Impl(typename PassType<Lhs>::type lhs, \ 179 V8_INLINE std::string* Check##NAME##Impl(typename PassType<Lhs>::type lhs, [all...] |
/hardware/google/av/codec2/vndk/bufferpool/ |
Accessor.h | 177 class Impl; 178 std::unique_ptr<Impl> mImpl;
|
ClientManager.cpp | 91 class ClientManager::Impl { 93 Impl(); 159 ClientManager::Impl::Impl() {} 161 ResultStatus ClientManager::Impl::registerSender( 219 ResultStatus ClientManager::Impl::registerSender( 262 ResultStatus ClientManager::Impl::create( 293 ResultStatus ClientManager::Impl::close(ConnectionId connectionId) { 315 ResultStatus ClientManager::Impl::allocate( 330 ResultStatus ClientManager::Impl::receive [all...] |
/hardware/google/av/codec2/vndk/bufferpool/include/bufferpool/ |
ClientManager.h | 166 class Impl; 167 const std::unique_ptr<Impl> mImpl;
|
/hardware/google/av/codec2/vndk/include/ |
C2BufferPriv.h | 121 class Impl; 122 std::unique_ptr<Impl> mImpl;
|
/external/clang/lib/AST/ |
ParentMap.cpp | 97 ParentMap::ParentMap(Stmt *S) : Impl(nullptr) { 101 Impl = M; 106 delete (MapTy*) Impl; 111 BuildParentMap(*(MapTy*) Impl, S); 118 MapTy *M = reinterpret_cast<MapTy *>(Impl); 123 MapTy* M = (MapTy*) Impl;
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
FileClientSessionCache.java | 62 static class Impl implements SSLClientSessionCache { 83 Impl(File directory) throws IOException { 323 static final Map<File, FileClientSessionCache.Impl> caches = 324 new HashMap<File, FileClientSessionCache.Impl>(); 338 FileClientSessionCache.Impl cache = caches.get(directory); 340 cache = new FileClientSessionCache.Impl(directory);
|
/external/guava/guava-tests/benchmark/com/google/common/math/ |
ApacheBenchmark.java | 40 private enum Impl { 130 Impl impl; field in class:ApacheBenchmark 144 } while (!Impl.GUAVA.noAddOverflow(intsToAdd[i][0], intsToAdd[i][1])); 149 } while (!Impl.GUAVA.noAddOverflow(longsToAdd[i][0], longsToAdd[i][1])); 154 } while (!Impl.GUAVA.noMulOverflow(intsToMul[i][0], intsToMul[i][1])); 159 } while (!Impl.GUAVA.noMulOverflow(longsToMul[i][0], longsToMul[i][1])); 170 tmp += Double.doubleToRawLongBits(impl.factorialDouble(factorials[j])); 179 tmp += impl.gcdInt(nonnegInt[j][0], nonnegInt[j][1]); 188 tmp += impl.gcdLong(nonnegLong[j][0], nonnegLong[j][1]) [all...] |
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
FuturesCombineBenchmark.java | 37 enum Impl { 76 @Param Impl impl; 85 Impl impl = this.impl; 89 sum += impl.combine(callable, INLINE_EXECUTOR, futures).get(); 100 Impl impl = this.impl; [all...] |
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/ |
SettingsStorageService.java | 51 final Intent intent = new Intent(context, Impl.class); 58 final Intent intent = new Intent(context, Impl.class); 65 final Intent intent = new Intent(context, Impl.class); 71 public static class Impl extends IntentService { 73 public Impl() { 74 super(Impl.class.getName());
|
/hardware/google/av/codec2/vndk/include/util/ |
C2InterfaceUtils.h | 624 // TRICKY: needed for std::unique_ptr<Impl> declaration 635 struct Impl; 636 std::unique_ptr<Impl> _mImpl; 799 struct Impl; 800 std::unique_ptr<Impl> _mImpl; [all...] |
/external/llvm/lib/Support/ |
CrashRecoveryContext.cpp | 97 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; 189 // there may not actually be an Impl available, or even a current 318 assert(!Impl && "Crash recovery context already initialized!"); 320 Impl = CRCI; 332 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; 375 if (CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *)Impl)
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
CrashRecoveryContext.cpp | 79 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; 172 // there may not actually be an Impl available, or even a current 304 assert(!Impl && "Crash recovery context already initialized!"); 306 Impl = CRCI; 318 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; 324 CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *) Impl;
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
AbstractDownloadProviderFunctionalTest.java | 196 try (Cursor cursor = mResolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, 203 try (Cursor cursor = mResolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, null, 217 String[] columns = new String[] {Downloads.Impl._DATA}; 218 Cursor cursor = mResolver.query(Downloads.Impl.CONTENT_URI, columns, null, null, null); 229 mResolver.delete(Downloads.Impl.CONTENT_URI, null, null);
|
/external/clang/include/clang/Analysis/ |
CFG.h | 356 ImplTy Impl; 358 ElementList(BumpVectorContext &C) : Impl(C, 4) {} 366 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } 369 return Impl.insert(I, Cnt, E, C); 372 const_reference front() const { return Impl.back(); } 373 const_reference back() const { return Impl.front(); } 375 iterator begin() { return Impl.rbegin(); } 376 iterator end() { return Impl.rend(); } 377 const_iterator begin() const { return Impl.rbegin(); } 378 const_iterator end() const { return Impl.rend(); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/ |
CFG.h | 357 ImplTy Impl; 359 ElementList(BumpVectorContext &C) : Impl(C, 4) {} 367 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } 370 return Impl.insert(I, Cnt, E, C); 373 const_reference front() const { return Impl.back(); } 374 const_reference back() const { return Impl.front(); } 376 iterator begin() { return Impl.rbegin(); } 377 iterator end() { return Impl.rend(); } 378 const_iterator begin() const { return Impl.rbegin(); } 379 const_iterator end() const { return Impl.rend(); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/ |
CFG.h | 357 ImplTy Impl; 359 ElementList(BumpVectorContext &C) : Impl(C, 4) {} 367 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } 370 return Impl.insert(I, Cnt, E, C); 373 const_reference front() const { return Impl.back(); } 374 const_reference back() const { return Impl.front(); } 376 iterator begin() { return Impl.rbegin(); } 377 iterator end() { return Impl.rend(); } 378 const_iterator begin() const { return Impl.rbegin(); } 379 const_iterator end() const { return Impl.rend(); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/ |
CFG.h | 357 ImplTy Impl; 359 ElementList(BumpVectorContext &C) : Impl(C, 4) {} 367 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } 370 return Impl.insert(I, Cnt, E, C); 373 const_reference front() const { return Impl.back(); } 374 const_reference back() const { return Impl.front(); } 376 iterator begin() { return Impl.rbegin(); } 377 iterator end() { return Impl.rend(); } 378 const_iterator begin() const { return Impl.rbegin(); } 379 const_iterator end() const { return Impl.rend(); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/ |
CFG.h | 404 ImplTy Impl; 406 ElementList(BumpVectorContext &C) : Impl(C, 4) {} 414 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } 417 return Impl.insert(I, Cnt, E, C); 420 const_reference front() const { return Impl.back(); } 421 const_reference back() const { return Impl.front(); } 423 iterator begin() { return Impl.rbegin(); } 424 iterator end() { return Impl.rend(); } 425 const_iterator begin() const { return Impl.rbegin(); } 426 const_iterator end() const { return Impl.rend(); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Analysis/ |
CFG.h | 404 ImplTy Impl; 406 ElementList(BumpVectorContext &C) : Impl(C, 4) {} 414 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } 417 return Impl.insert(I, Cnt, E, C); 420 const_reference front() const { return Impl.back(); } 421 const_reference back() const { return Impl.front(); } 423 iterator begin() { return Impl.rbegin(); } 424 iterator end() { return Impl.rend(); } 425 const_iterator begin() const { return Impl.rbegin(); } 426 const_iterator end() const { return Impl.rend(); [all...] |