Home
last modified time | relevance | path

Searched refs:range (Results 2101 - 2125 of 2398) sorted by relevance

1...<<81828384858687888990>>...96

/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_nir.cpp84 /* Check if there are any ranges that start within this range and extend in nir_setup_outputs()
4799 const struct brw_ubo_range *range = &prog_data->ubo_ranges[i];
4800 if (range->block == ubo_block &&
4801 offset_256b >= range->start &&
4802 offset_256b < range->start + range->length) {
4805 push_reg.offset = load_offset - 32 * range->start;
6345 * {-8,7} range, nir_lower_tex() will have already lowered the
/third_party/node/deps/undici/
H A Dundici.js849 function parseRangeHeader(range) {
850 if (range == null || range === "")
852 const m = range ? range.match(/^bytes (\d+)-(\d+)\/(\d+)?$/) : null;
5901 throw new RangeError('init["status"] must be in the range of 200 to 599, inclusive.');
10659 if (response.type === "opaque" && internalResponse.status === 206 && internalResponse.rangeRequested && !request.headers.contains("range")) {
10949 if (httpRequest.cache === "default" && (httpRequest.headersList.contains("if-modified-since") || httpRequest.headersList.contains("if-none-match") || httpRequest.headersList.contains("if-unmodified-since") || httpRequest.headersList.contains("if-match") || httpRequest.headersList.contains("if-range"))) {
10963 if (httpRequest.headersList.contains("range")) {
10999 if (httpRequest.headersList.contains("range")) {
[all...]
/third_party/skia/third_party/externals/angle2/src/libGL/
H A DlibGL_autogen.cpp278 void GL_APIENTRY glDeleteLists(GLuint list, GLsizei range) in glDeleteLists() argument
280 return GL_DeleteLists(list, range); in glDeleteLists()
449 GLuint GL_APIENTRY glGenLists(GLsizei range) in glGenLists() argument
451 return GL_GenLists(range); in glGenLists()
4387 GLint *range, in glGetShaderPrecisionFormat()
4390 return GL_GetShaderPrecisionFormat(shadertype, precisiontype, range, precision); in glGetShaderPrecisionFormat()
4385 glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision) glGetShaderPrecisionFormat() argument
/third_party/vk-gl-cts/framework/common/
H A DtcuTexture.cpp541 const deUint32 range = (1u << (bits-1)) - 1; in channelToSnormFloat() local
544 return de::max(-1.0f, (float)signExtend(src, bits) / (float)range); in channelToSnormFloat()
557 const deInt32 range = (deInt32)((1u << (bits-1)) - 1u); in snormFloatToChannel() local
559 const deInt32 intVal = convertSatRte<deInt32>(src * (float)range); in snormFloatToChannel()
561 return (deUint32)de::clamp(intVal, -range, range) & mask; in snormFloatToChannel()
2097 // Border color for out-of-range coordinates if using CLAMP_TO_BORDER, otherwise execute lookups. in sampleLinear1D()
2166 // Border color for out-of-range coordinates if using CLAMP_TO_BORDER, otherwise execute lookups. in sampleLinear2D()
2245 // Border color for out-of-range coordinates if using CLAMP_TO_BORDER, otherwise execute lookups. in sampleLinear1DCompare()
2280 // Border color for out-of-range coordinate in sampleLinear2DCompare()
[all...]
/third_party/backends/backend/
H A Dcanon-sane.c533 if (!s->val[option].w) /* use complete range */ in sane_control_option()
537 s->opt[OPT_X_RESOLUTION].constraint.range = in sane_control_option()
541 s->opt[OPT_Y_RESOLUTION].constraint.range = in sane_control_option()
/third_party/mesa3d/src/compiler/nir/tests/
H A Dload_store_vectorizer_tests.cpp239 uint32_t range = byte_size * components; in create_indirect_load() local
244 nir_intrinsic_set_range(load, range); in create_indirect_load()
246 /* Unknown range */ in create_indirect_load()
433 /* Test for a bug in range handling */
/third_party/mesa3d/src/nouveau/codegen/lib/
H A Dgk104.asm606 // range [1, 2) by setting exponent field to 0x3ff (the exponent of 1)
661 // (exponent-1) < 0x7fe (unsigned) means the result is in norm range
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderBuiltinVarTests.cpp534 const VkMappedMemoryRange range = in iterate() local
543 VK_CHECK(vk.flushMappedMemoryRanges(device, 1u, &range)); in iterate()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cVertexAttrib64BitTest.cpp243 /** Return "random" double value from range <min:max>
253 const GLdouble range = max - min; in RandomDouble() local
257 return min + fraction * range; in RandomDouble()
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cLayoutBindingTests.cpp526 float range = (float)((maxElement - 1) - minElement); in makeSparseRange() local
532 e = (e * range) / max; in makeSparseRange()
1699 // total distance from current binding point to end of binding range in binding_array_multiple()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A Dentry_points.cpp515 GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision) in glGetShaderPrecisionFormat() argument
517 return gl::GetShaderPrecisionFormat(shadertype, precisiontype, range, precision); in glGetShaderPrecisionFormat()
/third_party/python/Lib/test/test_email/
H A Dtest__header_value_parser.py49 rfc_printable_ascii = bytes(range(33, 127)).decode('ascii')
668 for i in range(4, 0, -1):
/third_party/python/Lib/
H A Dzipfile.py572 for j in range(8):
594 _crctable = list(map(_gen_crc, range(256)))
/third_party/selinux/libsepol/src/
H A Dlink.c237 ERR(state->handle, "Found conflicting default range definitions"); in class_copy_default_new_object()
1205 if (mls_range_convert(&user->range, &new_user->range, mod, state)) in user_fix_callback()
H A Dwrite.c382 * Read a semantic MLS range structure to a policydb binary
420 * Write a MLS range structure to a policydb binary
909 if (mls_write_range_helper(&c->range, fp)) in context_write()
1336 if (mls_write_semantic_range_helper(&usrdatum->range, fp)) in user_write()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderBuiltinVarTests.cpp534 const VkMappedMemoryRange range = in iterate() local
543 VK_CHECK(vk.flushMappedMemoryRanges(device, 1u, &range)); in iterate()
/third_party/curl/lib/
H A Durldata.h1395 char *range; /* range, if used. See README for detailed specification on member
1497 BIT(rangestringalloc); /* the range string is malloc()'ed */
1565 STRING_SET_RANGE, /* range, if used */
/third_party/glslang/glslang/MachineIndependent/
H A Dlocalintermediate.h111 // A generic 1-D range.
122 // An IO range is a 3-D rectangle; the set of (location, component, index) triples all lying
123 // within the same location range, component range, and index value. Locations don't alias unless
124 // all other dimensions of their range overlap.
138 // An offset range is a 2-D rectangle; the set of (binding, offset) pairs all lying
139 // within the same binding and offset range.
1040 int checkLocationRange(int set, const TIoRange& range, const TType&, bool& typeCollision);
/third_party/gn/src/gn/
H A Dfunctions.cc50 err->AppendRange(function->function().range()); in VerifyNoBlockForFunctionCall()
/third_party/ffmpeg/libswscale/x86/
H A Doutput.asm603 ; Clip a signed integer to an unsigned power of two range.
/third_party/ffmpeg/tools/python/
H A Dconvert_from_tensorflow.py500 for i in range(len(node.input)):
/third_party/EGL/api/
H A Dreg.py488 for i in range(0,n):
988 """Generate interfaces for the specified API type and range of versions"""
/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h877 // Generates a random number from [0, range). Crashes if 'range' is
879 uint32_t Generate(uint32_t range);
1043 // Finds the first element in the iterator range [begin, end) that
/third_party/googletest/googletest/scripts/
H A Dupload.py269 for i in range(3):
/third_party/libunwind/libunwind/doc/
H A Dlibunwind.tex289 associated with a specific address range in the target process (or the

Completed in 102 milliseconds

1...<<81828384858687888990>>...96