/third_party/skia/src/gpu/geometry/ |
H A D | GrAAConvexTessellator.cpp | 955 int maxCount = GrPathUtils::quadraticPointCount(pts, kQuadTolerance); 956 fPointBuffer.setCount(maxCount); 959 kQuadTolerance, &target, maxCount); 976 int maxCount = GrPathUtils::cubicPointCount(pts, kCubicTolerance); 977 fPointBuffer.setCount(maxCount); 980 kCubicTolerance, &target, maxCount);
|
/third_party/skia/src/utils/ |
H A D | SkShadowTessellator.cpp | 778 int maxCount = GrPathUtils::quadraticPointCount(pts, kQuadTolerance); in handleQuad() local 779 fPointBuffer.setCount(maxCount); in handleQuad() 782 kQuadTolerance, &target, maxCount); in handleQuad() 803 int maxCount = GrPathUtils::cubicPointCount(pts, kCubicTolerance); in handleCubic() local 804 fPointBuffer.setCount(maxCount); in handleCubic() 807 kCubicTolerance, &target, maxCount); in handleCubic()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | PluralRules.java | 2468 int maxCount = isLimited(keyword, sampleType) ? Integer.MAX_VALUE : 20; in getDecimalQuantitySamples() 2473 if (!addSample(keyword, new DecimalQuantity_DualStorageBCD(i), maxCount, result)) { in getDecimalQuantitySamples() 2477 addSample(keyword, new DecimalQuantity_DualStorageBCD(1000000), maxCount, result); // hack for Welsh in getDecimalQuantitySamples() 2483 if (!addSample(keyword, nextSample, maxCount, result)) { in getDecimalQuantitySamples() 2487 addSample(keyword, DecimalQuantity_DualStorageBCD.fromExponentString("1000000.0"), maxCount, result); // hack for Welsh in getDecimalQuantitySamples() 2494 private boolean addSample(String keyword, DecimalQuantity sample, int maxCount, Set<DecimalQuantity> result) { in addSample() argument 2498 if (--maxCount < 0) { in addSample()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/ |
H A D | vktBitstreamBufferImpl.hpp | 113 const deUint32* GetStreamMarkersPtr(deUint32 startIndex, deUint32& maxCount) const override;
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_parse_utils.h | 164 uint32 maxCount = 0);
|
H A D | dng_parse_utils.cpp | 2433 uint32 maxCount) in CheckTagCount() 2436 if (maxCount < minCount) in CheckTagCount() 2437 maxCount = minCount; in CheckTagCount() 2440 tagCount > maxCount) in CheckTagCount() 2429 CheckTagCount(uint32 parentCode, uint32 tagCode, uint32 tagCount, uint32 minCount, uint32 maxCount) CheckTagCount() argument
|
H A D | dng_xmp.h | 369 uint32 maxCount,
|
/third_party/lzma/CPP/Windows/ |
H A D | Window.h | 326 int GetText(LPTSTR string, int maxCount) const
in GetText() 327 { return GetWindowText(_window, string, maxCount); }
in GetText() 331 UINT GetText(LPWSTR string, int maxCount) const
332 { return GetWindowTextW(_window, string, maxCount); }
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | capture_gles_2_0_params.cpp | 305 GLsizei maxCount, in CaptureGetAttachedShaders_count() 316 GLsizei maxCount, in CaptureGetAttachedShaders_shadersPacked() 321 paramCapture->readBufferSizeBytes = sizeof(ShaderProgramID) * maxCount; in CaptureGetAttachedShaders_shadersPacked() 302 CaptureGetAttachedShaders_count(const State &glState, bool isCallValid, ShaderProgramID program, GLsizei maxCount, GLsizei *count, ShaderProgramID *shaders, ParamCapture *paramCapture) CaptureGetAttachedShaders_count() argument 313 CaptureGetAttachedShaders_shadersPacked(const State &glState, bool isCallValid, ShaderProgramID program, GLsizei maxCount, GLsizei *count, ShaderProgramID *shaders, ParamCapture *paramCapture) CaptureGetAttachedShaders_shadersPacked() argument
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | BindGroupValidationTests.cpp | 1004 uint32_t maxCount; in TEST_F() member 1035 for (uint32_t i = 0; i < info.maxCount; ++i) { in TEST_F() 1048 entry.binding = info.maxCount; in TEST_F() 1057 entry.binding = info.maxCount; in TEST_F() 1067 entry.binding = info.maxCount; in TEST_F() 1098 uint32_t maxCount; in TEST_F() member 1127 for (uint32_t i = 1; i <= info.maxCount - info.bindingsPerExternalTexture; ++i) { in TEST_F() 1140 entry.binding = info.maxCount; in TEST_F() 1149 entry.binding = info.maxCount; in TEST_F() 1159 entry.binding = info.maxCount; in TEST_F() [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | shaderapi.c | 600 get_attached_shaders(struct gl_context *ctx, GLuint program, GLsizei maxCount, in get_attached_shaders() argument 605 if (maxCount < 0) { in get_attached_shaders() 606 _mesa_error(ctx, GL_INVALID_VALUE, "glGetAttachedShaders(maxCount < 0)"); in get_attached_shaders() 615 for (i = 0; i < (GLuint) maxCount && i < shProg->NumShaders; i++) { in get_attached_shaders() 1768 _mesa_GetAttachedObjectsARB(GLhandleARB container, GLsizei maxCount, in _mesa_GetAttachedObjectsARB() argument 1772 get_attached_shaders(ctx, (GLuint)container, maxCount, count, NULL, obj); in _mesa_GetAttachedObjectsARB() 1777 _mesa_GetAttachedShaders(GLuint program, GLsizei maxCount, in _mesa_GetAttachedShaders() argument 1781 get_attached_shaders(ctx, program, maxCount, count, obj, NULL); in _mesa_GetAttachedShaders()
|
/third_party/glslang/StandAlone/ |
H A D | StandAlone.cpp | 1224 static const int maxCount = 1; member 1226 const char* text[maxCount]; // memory owned/managed externally 1227 std::string fileName[maxCount]; // hold's the memory, but... 1228 const char* fileNameList[maxCount]; // downstream interface wants pointers 1245 assert(count < maxCount); in addString()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | MutableCodePointTrie.java | 702 int maxCount = 0; in findMostUsed() 704 if (refCounts[i] > maxCount) { in findMostUsed() 706 maxCount = refCounts[i]; in findMostUsed()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | MutableCodePointTrie.java | 694 int maxCount = 0; in findMostUsed() 696 if (refCounts[i] > maxCount) { in findMostUsed() 698 maxCount = refCounts[i]; in findMostUsed()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | vk_utils.cpp | 1644 GLuint maxCount = 0; in GetMaxSampleCount() local 1647 maxCount = static_cast<GLuint>(1 << bit); in GetMaxSampleCount() 1649 return maxCount; in GetMaxSampleCount()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/ |
H A D | vktMeshShaderApiTests.cpp | 575 const auto maxCount = ((indirectCountLimit == IndirectCountLimitType::MAX_COUNT) in iterate() local 578 vkd.cmdDrawMeshTasksIndirectCountNV(cmdBuffer, indirectBuffer->get(), indirectArgs.offset, countBuffer->get(), indirectCountOffset, maxCount, indirectArgs.stride); in iterate()
|
H A D | vktMeshShaderApiTestsEXT.cpp | 627 const auto maxCount = ((indirectCountLimit == IndirectCountLimitType::MAX_COUNT) in iterate() local 630 vkd.cmdDrawMeshTasksIndirectCountEXT(rpCmdBuffer, indirectBuffer->get(), indirectArgs.offset, countBuffer->get(), indirectCountOffset, maxCount, indirectArgs.stride); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/ |
H A D | vktMeshShaderApiTests.cpp | 575 const auto maxCount = ((indirectCountLimit == IndirectCountLimitType::MAX_COUNT) in iterate() local 578 vkd.cmdDrawMeshTasksIndirectCountNV(cmdBuffer, indirectBuffer->get(), indirectArgs.offset, countBuffer->get(), indirectCountOffset, maxCount, indirectArgs.stride); in iterate()
|
H A D | vktMeshShaderApiTestsEXT.cpp | 627 const auto maxCount = ((indirectCountLimit == IndirectCountLimitType::MAX_COUNT) in iterate() local 630 vkd.cmdDrawMeshTasksIndirectCountEXT(rpCmdBuffer, indirectBuffer->get(), indirectArgs.offset, countBuffer->get(), indirectCountOffset, maxCount, indirectArgs.stride); in iterate()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Context_gles_2_0_autogen.h | 84 void getAttachedShaders(ShaderProgramID programPacked, GLsizei maxCount, GLsizei *count, \
|
/third_party/skia/third_party/externals/angle2/src/libGL/ |
H A D | entry_points_gl_2_autogen.h | 49 GLsizei maxCount,
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
H A D | Program.h | 184 void getAttachedShaders(GLsizei maxCount, GLsizei *count, GLuint *shaders);
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cbiapts.c | 701 int32_t maxCount = sizeof(breaks); /* fail-safe test limit */ in TestBreakIteratorRules() local 710 } while ((pos != UBRK_DONE || pos2 != UBRK_DONE) && maxCount-- > 0); in TestBreakIteratorRules()
|
/third_party/mesa3d/include/GL/ |
H A D | glxext.h | 256 typedef unsigned int ( *PFNGLXGETGPUIDSAMDPROC) (unsigned int maxCount, unsigned int *ids); 266 unsigned int glXGetGPUIDsAMD (unsigned int maxCount, unsigned int *ids);
|
H A D | wglext.h | 320 typedef UINT (WINAPI * PFNWGLGETGPUIDSAMDPROC) (UINT maxCount, UINT *ids); 330 UINT WINAPI wglGetGPUIDsAMD (UINT maxCount, UINT *ids);
|