Home
last modified time | relevance | path

Searched refs:range (Results 2051 - 2075 of 2444) sorted by relevance

1...<<81828384858687888990>>...98

/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross.hpp130 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 Dspirv_cross_c.h136 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 DdecNumberLocal.h218 #error DECDPUN must be in the range 1-9
/third_party/python/Lib/test/test_sqlite3/
H A Dtest_userfunctions.py378 (bytearray(range(2)), bytes),
/third_party/python/Lib/test/
H A Dtest_textwrap.py22 for i in range(len(textin)):
H A Dtest_launcher.py442 if not any(is_installed(f"3.{i}-32") for i in range(5, 11)):
H A Dtest_int.py292 for base in range(2,37):
309 # Check out of range bases.
314 # Check in-range bases.
H A Dtest_with.py645 with nullcontext(range(1, 5)) as (a, *b, c):
H A Dtest_dataclasses.py2068 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 Dparse.py88 # == "".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 Dmessage.py580 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 Dtraceback.py943 for i in range(n):
H A Dpprint.py656 for i in range(0, len(object), 4):
/third_party/vk-gl-cts/modules/gles31/scripts/
H A Dgen-implicit-conversions.py630 for ndx in range(out_scalars):
/third_party/vk-gl-cts/framework/opengl/simplereference/
H A DsglrContextWrapper.hpp119 void glGetShaderPrecisionFormat (deUint32 shadertype, deUint32 precisiontype, int* range, int* precision);
/third_party/ffmpeg/libavformat/
H A Dmatroskadec.c188 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 Dgtest.cc327 "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 Dgtest.cc283 "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 Dgtest.cc335 "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 DvktBindingDescriptorBufferTests.cpp3811 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 DvktMeshShaderMiscTestsEXT.cpp2776 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 DvktBindingDescriptorBufferTests.cpp3782 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 DvktMeshShaderMiscTestsEXT.cpp2758 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 Dentry_points_gles_2_0_autogen.cpp1871 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 Dvk_cache_utils.cpp1432 // 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);

Completed in 86 milliseconds

1...<<81828384858687888990>>...98