/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_cross.hpp | 130 size_t range; member 535 // We want to avoid case where we return an out of range pointer in stream() 549 SPIRV_CROSS_THROW("Compiler::stream() out of range."); in stream() 578 // If our IDs are out of range here as part of opcodes, throw instead of
|
H A D | spirv_cross_c.h | 136 size_t range; member 158 * from a wide range of compilers in its C wrapper.
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | decNumberLocal.h | 218 #error DECDPUN must be in the range 1-9
|
/third_party/python/Lib/test/test_sqlite3/ |
H A D | test_userfunctions.py | 378 (bytearray(range(2)), bytes),
|
/third_party/python/Lib/test/ |
H A D | test_textwrap.py | 22 for i in range(len(textin)):
|
H A D | test_launcher.py | 442 if not any(is_installed(f"3.{i}-32") for i in range(5, 11)):
|
H A D | test_int.py | 292 for base in range(2,37): 309 # Check out of range bases. 314 # Check in-range bases.
|
H A D | test_with.py | 645 with nullcontext(range(1, 5)) as (a, *b, c):
|
H A D | test_dataclasses.py | 2068 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 3059 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 3112 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 3120 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 3128 for proto in range(pickle.HIGHEST_PROTOCOL + 1):
|
/third_party/python/Lib/urllib/ |
H A D | parse.py | 88 # == "".join([chr(i) for i in range(0, 0x20 + 1)]) 184 raise ValueError("Port out of range 0-65535") 681 for i in range(1, len(bits), 2): 821 """A mapping from bytes numbers (in range(0,256)) to strings.
|
/third_party/python/Lib/email/ |
H A D | message.py | 580 for i, (k, v) in zip(range(len(self._headers)), self._headers): 930 # charset characters must be in us-ascii range
|
/third_party/python/Lib/ |
H A D | traceback.py | 943 for i in range(n):
|
H A D | pprint.py | 656 for i in range(0, len(object), 4):
|
/third_party/vk-gl-cts/modules/gles31/scripts/ |
H A D | gen-implicit-conversions.py | 630 for ndx in range(out_scalars):
|
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
H A D | sglrContextWrapper.hpp | 119 void glGetShaderPrecisionFormat (deUint32 shadertype, deUint32 precisiontype, int* range, int* precision);
|
/third_party/ffmpeg/libavformat/ |
H A D | matroskadec.c | 188 uint64_t range; member 490 { MATROSKA_ID_VIDEOCOLORRANGE, EBML_UINT, 0, 0, offsetof(MatroskaTrackVideoColor, range), { .u = AVCOL_RANGE_UNSPECIFIED } }, 2182 if (color->range != AVCOL_RANGE_UNSPECIFIED && in mkv_parse_video_color() 2183 color->range <= AVCOL_RANGE_JPEG) in mkv_parse_video_color() 2184 st->codecpar->color_range = color->range; in mkv_parse_video_color() 4331 // if the file has cues at the start, fix up the init range so that in webm_dash_manifest_cues() 4386 // initialization range in webm_dash_manifest_read_header()
|
/third_party/googletest/googletest/src/ |
H A D | gtest.cc | 327 "Random number seed to use when shuffling test orders. Must be in range " 362 "assertion fails. The valid range is 0 through 100, inclusive."); 389 // Generates a random number from [0, range), using a Linear 390 // Congruential Generator (LCG). Crashes if 'range' is 0 or greater 392 uint32_t Random::Generate(uint32_t range) { in Generate() argument 397 GTEST_CHECK_(range > 0) << "Cannot generate a number in the range [0, 0)."; in Generate() 398 GTEST_CHECK_(range <= kMaxRange) in Generate() 399 << "Generation of a number in [0, " << range << ") was requested, " in Generate() 405 return state_ % range; in Generate() [all...] |
/third_party/mesa3d/src/gtest/src/ |
H A D | gtest.cc | 283 "Random number seed to use when shuffling test orders. Must be in range " 305 "assertion fails. The valid range is 0 through 100, inclusive."); 330 // Generates a random number from [0, range), using a Linear 331 // Congruential Generator (LCG). Crashes if 'range' is 0 or greater 333 UInt32 Random::Generate(UInt32 range) { in Generate() argument 338 GTEST_CHECK_(range > 0) in Generate() 339 << "Cannot generate a number in the range [0, 0)."; in Generate() 340 GTEST_CHECK_(range <= kMaxRange) in Generate() 341 << "Generation of a number in [0, " << range << ") was requested, " in Generate() 347 return state_ % range; in Generate() [all...] |
/third_party/node/deps/googletest/src/ |
H A D | gtest.cc | 335 "Random number seed to use when shuffling test orders. Must be in range " 370 "assertion fails. The valid range is 0 through 100, inclusive."); 397 // Generates a random number from [0, range), using a Linear 398 // Congruential Generator (LCG). Crashes if 'range' is 0 or greater 400 uint32_t Random::Generate(uint32_t range) { in Generate() argument 405 GTEST_CHECK_(range > 0) << "Cannot generate a number in the range [0, 0)."; in Generate() 406 GTEST_CHECK_(range <= kMaxRange) in Generate() 407 << "Generation of a number in [0, " << range << ") was requested, " in Generate() 413 return state_ % range; in Generate() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
H A D | vktBindingDescriptorBufferTests.cpp | 3811 addressInfo.range = bufferResource.size; 3815 DE_ASSERT(binding.isResultBuffer || !isRobustBufferAccess || ((addressInfo.range % ConstRobustBufferAlignment) == 0)); 3876 addressInfo.range = bufferResource.size; 3880 DE_ASSERT(!isRobustBufferAccess || ((addressInfo.range % ConstRobustBufferAlignment) == 0)); 4246 pInfo->range = bufferResource.size;
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/ |
H A D | vktMeshShaderMiscTestsEXT.cpp | 2776 for (const auto& range : pcRanges) in iterate() 2777 vkd.cmdPushConstants(cmdBuffer, pipelineLayout.get(), range.stageFlags, range.offset, range.size, reinterpret_cast<const char*>(pcData.data()) + range.offset); in iterate() 4508 // Offsets in framebuffer coordinates (0 to 2, final coordinates in range -1 to 1)
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/ |
H A D | vktBindingDescriptorBufferTests.cpp | 3782 addressInfo.range = bufferResource.size; 3786 DE_ASSERT(binding.isResultBuffer || !isRobustBufferAccess || ((addressInfo.range % ConstRobustBufferAlignment) == 0)); 3847 addressInfo.range = bufferResource.size; 3851 DE_ASSERT(!isRobustBufferAccess || ((addressInfo.range % ConstRobustBufferAlignment) == 0)); 4217 pInfo->range = bufferResource.size;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/ |
H A D | vktMeshShaderMiscTestsEXT.cpp | 2758 for (const auto& range : pcRanges) in iterate() 2759 vkd.cmdPushConstants(cmdBuffer, pipelineLayout.get(), range.stageFlags, range.offset, range.size, reinterpret_cast<const char*>(pcData.data()) + range.offset); in iterate() 4505 // Offsets in framebuffer coordinates (0 to 2, final coordinates in range -1 to 1)
|
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | entry_points_gles_2_0_autogen.cpp | 1871 GLint *range, in GL_GetShaderPrecisionFormat() 1876 "context = %d, shadertype = %s, precisiontype = %s, range = 0x%016" PRIxPTR in GL_GetShaderPrecisionFormat() 1879 GLenumToString(GLenumGroup::PrecisionType, precisiontype), (uintptr_t)range, in GL_GetShaderPrecisionFormat() 1888 precisiontype, range, precision)); in GL_GetShaderPrecisionFormat() 1891 context->getShaderPrecisionFormat(shadertype, precisiontype, range, precision); in GL_GetShaderPrecisionFormat() 1894 range, precision); in GL_GetShaderPrecisionFormat() 1869 GL_GetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision) GL_GetShaderPrecisionFormat() argument
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | vk_cache_utils.cpp | 1432 // Set color attachment range such that it covers the range from index 0 through last active in packColorAttachment() 3829 VkPushConstantRange range; 3830 range.stageFlags = gl_vk::kShaderStageMap[shaderType]; 3831 range.offset = pushConstantDesc.offset; 3832 range.size = pushConstantDesc.size; 3834 pushConstantRanges.push_back(range);
|