/third_party/node/deps/v8/tools/ |
H A D | windbg.js | 69 print(" prints address/map pointers of objects found inside the range"); 474 print(`objects in range ${hex(start)} - ${hex(end)}`); 487 print(`found ${count} objects in range ${hex(start)} - ${hex(end)}`)
|
/third_party/node/deps/v8/src/torque/ |
H A D | instructions.cc | 74 stack->DeleteRange(range); in TypeInstruction() 79 locations->DeleteRange(range); in RecomputeDefinitionLocations()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_private.h | 508 uint64_t offset, uint64_t range) 513 return vk_buffer_range(&buffer->vk, offset, range);
|
/third_party/mesa3d/src/virtio/venus-protocol/ |
H A D | vn_protocol_driver_descriptor_set.h | 215 size += vn_sizeof_VkDeviceSize(&val->range); in vn_sizeof_VkDescriptorBufferInfo() 224 vn_encode_VkDeviceSize(enc, &val->range); in vn_encode_VkDescriptorBufferInfo()
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | opt.c | 502 opt_printf_stderr("%s: Value \"%s\" outside integer range\n", in opt_int() 509 /* Parse and return an integer, assuming range has been checked before. */ 671 * We pass opt as an int but cast it to "enum range" so that all the 675 enum range { OPT_V_ENUM }; enum 689 switch ((enum range)opt) { in opt_verify() 749 opt_printf_stderr("%s: epoch time out of range %s\n", in opt_verify()
|
/third_party/python/Lib/ |
H A D | aifc.py | 430 raise Error('position not in range') 532 for i in range(nmarkers): 724 for i in range(len(self._markers)):
|
H A D | plistlib.py | 125 for i in range(0, len(s), maxbinsize): 510 for i in range(0, size * n, size))
|
H A D | threading.py | 491 for i in range(n): 540 for i in range(n):
|
/third_party/python/Lib/http/ |
H A D | server.py | 176 for compatibility with the widest range of clients recommends 572 {c: fr'\x{c:02x}' for c in itertools.chain(range(0x20), range(0x7f,0xa0))})
|
/third_party/openssl/apps/lib/ |
H A D | opt.c | 502 opt_printf_stderr("%s: Value \"%s\" outside integer range\n", in opt_int() 509 /* Parse and return an integer, assuming range has been checked before. */ 671 * We pass opt as an int but cast it to "enum range" so that all the 675 enum range { OPT_V_ENUM }; enum 689 switch ((enum range)opt) { in opt_verify() 744 opt_printf_stderr("%s: epoch time out of range %s\n", in opt_verify()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/ |
H A D | vktDynamicStateLineWidthTests.cpp | 151 auto range = makeStdBeginEnd<ElementType>(pBuffer->getAllocation().getHostPtr(), *vertexCount); in buildVertices() local 152 std::copy(vertices.begin(), vertices.end(), range.first); in buildVertices()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassSampleReadTests.cpp | 191 const VkImageSubresourceRange range = in createImageView() local 200 return createImageView(vkd, device, 0u, image, VK_IMAGE_VIEW_TYPE_2D, format, makeComponentMappingRGBA(), range); in createImageView()
|
H A D | vktRenderPassSparseRenderTargetTests.cpp | 159 const VkImageSubresourceRange range = in createImageView() local 168 return createImageView(vkd, device, 0u, image, VK_IMAGE_VIEW_TYPE_2D, format, makeComponentMappingRGBA(), range); in createImageView()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | capture_gles_2_0_params.cpp | 457 GLint *range, in CaptureGetShaderPrecisionFormat_range() 461 // range specifies a pointer to two-element array containing log2 of min and max in CaptureGetShaderPrecisionFormat_range() 469 GLint *range, in CaptureGetShaderPrecisionFormat_precision() 453 CaptureGetShaderPrecisionFormat_range(const State &glState, bool isCallValid, GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, ParamCapture *paramCapture) CaptureGetShaderPrecisionFormat_range() argument 465 CaptureGetShaderPrecisionFormat_precision(const State &glState, bool isCallValid, GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, ParamCapture *paramCapture) CaptureGetShaderPrecisionFormat_precision() argument
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Context_gl_1_autogen.h | 56 void deleteLists(GLuint list, GLsizei range); \ 82 GLuint genLists(GLsizei range); \
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkDescriptorSetLayout.cpp | 515 bufferDescriptor[i].sizeInBytes = static_cast<int>((update->range == VK_WHOLE_SIZE) ? buffer->getSize() - update->offset : update->range); 518 // range bound to the vertex buffer binding", while the code below uses the full size of the buffer.
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_sidebar.py | 107 expected = '\n'.join(chain(map(str, range(1, n_lines + 1)), [''])) 285 for i in range(steps):
|
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_message.cc | 760 io::Printer* printer, const Descriptor::ExtensionRange* range) { in GenerateSerializeOneExtensionRange() 762 StrCat(range->end)); in GenerateSerializeOneExtensionRange() 759 GenerateSerializeOneExtensionRange( io::Printer* printer, const Descriptor::ExtensionRange* range) GenerateSerializeOneExtensionRange() argument
|
/third_party/python/Lib/tomllib/ |
H A D | _parser.py | 22 ASCII_CTRL = frozenset(chr(i) for i in range(32)) | frozenset(chr(127)) 330 relative_path_cont_keys = (header + key[:i] for i in range(1, len(key)))
|
/third_party/python/Objects/ |
H A D | bytearrayobject.c | 35 PyErr_SetString(PyExc_ValueError, "byte must be in range(0, 256)"); in _getbytevalue() 365 PyErr_SetString(PyExc_IndexError, "bytearray index out of range"); in bytearray_getitem() 384 PyErr_SetString(PyExc_IndexError, "bytearray index out of range"); in bytearray_subscript() 579 PyErr_SetString(PyExc_IndexError, "bytearray index out of range"); in bytearray_setitem() 619 PyErr_SetString(PyExc_IndexError, "bytearray index out of range"); in bytearray_ass_subscript() 659 "of ints in range(0, 256)"); in bytearray_ass_subscript() 1815 PyErr_SetString(PyExc_IndexError, "pop index out of range"); in bytearray_pop_impl() 2282 - an iterable yielding integers in range(256)\n\
|
/third_party/python/Lib/lib2to3/ |
H A D | refactor.py | 701 for i in range(num_processes)] 709 for i in range(num_processes):
|
/third_party/rust/crates/proc-macro2/src/ |
H A D | lib.rs | 1235 /// the source bytes in range `range`. Returns `None` if the would-be 1243 pub fn subspan<R: RangeBounds<usize>>(&self, range: R) -> Option<Span> { in subspan() 1244 self.inner.subspan(range).map(Span::_new) in subspan()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassSampleReadTests.cpp | 191 const VkImageSubresourceRange range = in createImageView() local 200 return createImageView(vkd, device, 0u, image, VK_IMAGE_VIEW_TYPE_2D, format, makeComponentMappingRGBA(), range); in createImageView()
|
H A D | vktRenderPassSparseRenderTargetTests.cpp | 159 const VkImageSubresourceRange range = in createImageView() local 168 return createImageView(vkd, device, 0u, image, VK_IMAGE_VIEW_TYPE_2D, format, makeComponentMappingRGBA(), range); in createImageView()
|
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | extent-tree.c | 1248 /* Adjust the range to be aligned to 512B sectors if necessary. */ in btrfs_issue_discard() 1275 * Superblock spans beginning of range. Adjust start and in btrfs_issue_discard() 6039 * If find_first_clear_extent_bit find a range that spans the in btrfs_trim_free_extents() 6087 int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range) in btrfs_trim_fs() argument 6103 if (range->start == U64_MAX) in btrfs_trim_fs() 6107 * Check range overflow if range->len is set. in btrfs_trim_fs() 6108 * The default range->len is U64_MAX. in btrfs_trim_fs() 6110 if (range->len != U64_MAX && in btrfs_trim_fs() 6111 check_add_overflow(range in btrfs_trim_fs() [all...] |